forked from marcy-terui/spec2019-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallet_transfer.py
94 lines (88 loc) · 2.74 KB
/
wallet_transfer.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
import json
import os
from datetime import datetime
import boto3
import requests
def wallet_transfer(event, context):
wallet_table = boto3.resource('dynamodb').Table(os.environ['WALLET_TABLE'])
history_table = boto3.resource('dynamodb').Table(os.environ['PAYMENT_HISTORY_TABLE'])
body = json.loads(event['body'])
from_res = wallet_table.get_item(
ConsistentRead=True,
Key={
'id': body['fromUserId']
}
)
from_wallet = from_res['Item']
to_res = wallet_table.get_item(
ConsistentRead=True,
Key={
'id': body['toUserId']
}
)
to_wallet = to_res['Item']
from_total_amount = from_wallet['amount'] - body['transferAmount']
to_total_amount = from_wallet['amount'] + body['transferAmount']
if from_total_amount < 0:
return {
'statusCode': 400,
'body': json.dumps({'errorMessage': 'There was not enough money.'})
}
wallet_table.update_item(
Key={
'id': from_wallet['id']
},
AttributeUpdates={
'amount': {
'Value': from_total_amount,
'Action': 'PUT'
}
}
)
wallet_table.update_item(
Key={
'id': to_wallet['id']
},
AttributeUpdates={
'amount': {
'Value': to_total_amount,
'Action': 'PUT'
}
}
)
history_table.put_item(
Item={
'walletId': from_wallet['id'],
'transactionId': body['transactionId'],
'useAmount': body['transferAmount'],
'locationId': body['locationId'],
'timestamp': datetime.now().strftime("%Y-%m-%d %H:%M:%S")
}
)
history_table.put_item(
Item={
'walletId': from_wallet['id'],
'transactionId': body['transactionId'],
'chargeAmount': body['transferAmount'],
'locationId': body['locationId'],
'timestamp': datetime.now().strftime("%Y-%m-%d %H:%M:%S")
}
)
requests.post(os.environ['NOTIFICATION_ENDPOINT'], json={
'transactionId': body['transactionId'],
'userId': body['fromUserId'],
'useAmount': body['transferAmount'],
'totalAmount': int(from_total_amount),
'transferTo': body['toUserId']
})
requests.post(os.environ['NOTIFICATION_ENDPOINT'], json={
'transactionId': body['transactionId'],
'userId': body['toUserId'],
'chargeAmount': body['transferAmount'],
'totalAmount': int(to_total_amount),
'transferFrom': body['fromUserId']
})
return {
'statusCode': 202,
'body': json.dumps({'result': 'Assepted. Please wait for the notification.'})
}