-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathlambda.py
115 lines (86 loc) · 3.13 KB
/
lambda.py
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
import json
def get_named_parameter(event, name):
return next(item for item in event["parameters"] if item["name"] == name)["value"]
def get_named_property(event, name):
return next(
item
for item in event["requestBody"]["content"]["application/json"]["properties"]
if item["name"] == name
)["value"]
def create_success_response(event, payload):
response_code = 200
action_group = event["actionGroup"]
api_path = event["apiPath"]
response_body = {"application/json": {"body": json.dumps(payload)}}
action_response = {
"messageVersion": "1.0",
"response": {
"actionGroup": action_group,
"apiPath": api_path,
"httpMethod": event["httpMethod"],
"httpStatusCode": response_code,
"responseBody": response_body,
},
}
return action_response
def create_success_function_response(event, payload):
action_group = event["actionGroup"]
function = event["function"]
response_body = {"TEXT": {"body": json.dumps(payload)}}
function_response = {
"messageVersion": "1.0",
"response": {
"actionGroup": action_group,
"function": function,
"functionResponse": {
"responseState": "REPROMPT",
"responseBody": response_body,
},
},
}
return function_response
def create_error_response(event, errorString, code=500):
response_code = code
action_group = event["actionGroup"]
api_path = event["apiPath"]
payload = {"error": errorString}
response_body = {"application/json": {"body": json.dumps(payload)}}
action_response = {
"messageVersion": "1.0",
"response": {
"actionGroup": action_group,
"apiPath": api_path,
"httpMethod": event["httpMethod"],
"httpStatusCode": response_code,
"responseBody": response_body,
},
}
return action_response
def get_employee_time_off_balance():
resp = {
"remaining_balance": 10.25,
}
return resp
def create_employee_time_off_request(event):
ndays = get_named_parameter(event, "number_of_days")
sdate = get_named_parameter(event, "start_date")
print(f"Got ndays: {ndays}, sdate: {sdate}")
resp = {"start_date": sdate, "number_of_days": ndays, "id": 456}
return resp
def lambda_handler(event, context):
promptAttributes = None
if "promptAttributes" in event:
print(f"Got prompt details: {promptAttributes}")
promptAttributes = event["promptAttributes"]
actionGroup = event["actionGroup"]
if actionGroup == "RequestTimeOff":
print("Got action group: RequestTimeOff")
return create_success_function_response(
event, create_employee_time_off_request(event)
)
elif actionGroup == "GetTimeOff":
print("Got action group: GetTimeOffBalance")
return create_success_function_response(event, get_employee_time_off_balance())
else:
print(f"Unknown action group: {actionGroup}")
return create_error_response(event, "Unknown action group", 400)