-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMicroservice.py
More file actions
77 lines (65 loc) · 2.31 KB
/
Copy pathMicroservice.py
File metadata and controls
77 lines (65 loc) · 2.31 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
import boto3
import json
print('Loading function')
dynamo = boto3.client('dynamodb')
def dy2json(data):
if isinstance(data, str):
return data
if isinstance(data, list):
temp = []
for item in data:
a = dy2json(item)
temp.append(a)
return temp
if isinstance(data, dict):
if len(data) == 1:
for k, v in data.items():
if k == 'S':
return v
if k == 'L':
return dy2json(v)
if k == 'M':
return dy2json(v)
if k == 'N':
return eval(v)
else:
res = {}
for k, v in data.items():
res[k] = dy2json(v)
return res
def respond(err, res=None):
body = json.dumps(res.get('Items', {}))
items = []
for item in json.loads(body):
items.append(dy2json(item))
return {
'statusCode': '400' if err else '200',
'body': err.message if err else json.dumps(items),
'headers': {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*',
'access-control-allow-credentials': True,
},
}
def lambda_handler(event, context):
'''Demonstrates a simple HTTP endpoint using API Gateway. You have full
access to the request and response payload, including headers and
status code.
To scan a DynamoDB table, make a GET request with the TableName as a
query string parameter. To put, update, or delete an item, make a POST,
PUT, or DELETE request respectively, passing in the payload to the
DynamoDB API as a JSON body.
'''
# print("Received event: " + json.dumps(event, indent=2))
operations = {
'DELETE': lambda dynamo, x: dynamo.delete_item(**x),
'GET': lambda dynamo, x: dynamo.scan(**x),
'POST': lambda dynamo, x: dynamo.put_item(**x),
'PUT': lambda dynamo, x: dynamo.update_item(**x),
}
operation = event['httpMethod']
if operation in operations:
payload = event['queryStringParameters'] if operation == 'GET' else json.loads(event['body'])
return respond(None, operations[operation](dynamo, payload))
else:
return respond(ValueError('Unsupported method "{}"'.format(operation)))