forked from sammachin/EchoRTC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda_function.py
More file actions
143 lines (133 loc) · 4.05 KB
/
Copy pathlambda_function.py
File metadata and controls
143 lines (133 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import json
from botocore.vendored import requests
local_server_host = "https://exampl.ngrok.io"
def lambda_handler(event, context):
print(event)
print(context)
if event['directive']['header']['namespace'] == 'Alexa.Discovery':
return handleDiscovery(context, event)
elif event['directive']['header']['namespace'] == 'Alexa.Authorization':
return handleGrant(context, event)
elif event['directive']['header']['namespace'] == 'Alexa.RTCSessionController':
if event['directive']['header']['name'] == 'InitiateSessionWithOffer':
return handleOffer(context, event)
elif event['directive']['header']['name'] == 'SessionConnected':
return handleConnected(context, event)
elif event['directive']['header']['name'] == 'SessionDisconnected':
return handleDisconnected(context, event)
else:
print(event['header']['name'])
return {}
def handleDiscovery(context, event):
requests.post(local_server_host+'/event', json=event)
message_id = event['directive']['header']['messageId']
resp = {
"event": {
"header": {
"namespace":"Alexa.Discovery",
"name":"AddOrUpdateReport",
"payloadVersion":"3",
"messageId": message_id
},
"payload":{
"endpoints":[
{
"endpointId" : "browser-001",
"manufacturerName": "The Internet",
"modelName": "WebRTCClient",
"friendlyName": "RTC Camera",
"description": "A web browser with WebRTC",
"displayCategories": [ "CAMERA", "DOORBELL" ],
"capabilities":
[
{
"type": "AlexaInterface",
"interface": "Alexa.RTCSessionController",
"version": "3",
"configuration": {
"isFullDuplexAudioSupported": True
}
},
{
"type": "AlexaInterface",
"interface": "Alexa.DoorbellEventSource",
"version": "3",
"proactivelyReported" : True
}
]
}
]
}
}
}
return resp
def handleOffer(context, event):
header = event['directive']['header']
offer = event['directive']['payload']['offer']
r = requests.post(local_server_host+'/skill', json=offer)
answer = r.json()
header['name'] = 'AnswerGeneratedForSession'
resp = {
"event": {
"header": header,
"endpoint": {
"endpointId" : "browser-001",
},
"payload": {
"answer": {
"format" : "SDP",
"value" : answer['sdp']
}
}
}
}
return resp
def handleConnected(context, event):
header = event['directive']['header']
sessionid = event['directive']['payload']['sessionId']
requests.post(local_server_host+'/event', json=event)
resp = {
"event": {
"header": header,
"endpoint": {
"endpointId" : "browser-001",
},
"payload": {
"sessionId" : sessionid
}
}
}
return resp
def handleDisconnected(context, event):
header = event['directive']['header']
sessionid = event['directive']['payload']['sessionId']
requests.post(local_server_host+'/event', json=event)
resp = {
"event": {
"header": header,
"endpoint": {
"endpointId" : "browser-001",
},
"payload": {
"sessionId" : sessionid
}
}
}
return resp
def handleGrant(context, event):
header = event['directive']['header']
message_id = event['directive']['header']['messageId']
requests.post(local_server_host+'/event', json=event)
resp = {
"event": {
"header": {
"messageId": message_id,
"namespace": "Alexa.Authorization",
"name": "AcceptGrant.Response",
"payloadVersion": "3"
},
"payload": {
}
}
}
return resp