-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.py
76 lines (65 loc) · 2.03 KB
/
model.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
import flask.json
import boto3
from decimal import Decimal
import html
import os
import time
import uuid
TABLE_NAME = 'messages'
class DecimalJSONEncoder(flask.json.JSONEncoder):
def default(self, obj):
if isinstance(obj, Decimal):
# Convert decimal instances to strings.
return float(obj)
return super(DecimalJSONEncoder, self).default(obj)
class Model:
def __init__(self):
if os.environ.get('LOCAL_DYNAMO', '0') == '1':
self.dynamodb = boto3.resource('dynamodb', endpoint_url='http://localhost:8000/')
else:
self.dynamodb = boto3.resource('dynamodb')
try:
table = self.dynamodb.create_table(
TableName=TABLE_NAME,
KeySchema=[
{
'AttributeName': 'id',
'KeyType': 'HASH'
},
],
AttributeDefinitions=[
{
'AttributeName': 'id',
'AttributeType': 'S'
},
],
ProvisionedThroughput={
'ReadCapacityUnits': 5,
'WriteCapacityUnits': 5
}
)
table.meta.client.get_waiter('table_exists').wait(TableName=TABLE_NAME)
except:
print('table already exists')
def get(self):
table = self.dynamodb.Table(TABLE_NAME)
results = table.scan()
return results.get('Items')
def put(self, message):
table = self.dynamodb.Table(TABLE_NAME)
message_id = str(uuid.uuid4())
table.put_item(
Item={
'id': message_id,
'timestamp': Decimal(time.time()),
'text': html.escape(message, quote=False),
}
)
return message_id
def delete(self, id):
table = self.dynamodb.Table(TABLE_NAME)
table.delete_item(
Key={
'id': id
}
)