-
Notifications
You must be signed in to change notification settings - Fork 422
/
Copy pathapp.py
85 lines (79 loc) · 2.7 KB
/
app.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
import os
import logging
import flask
from flask import request, jsonify
from flask import json
from flask_cors import CORS
from dapr.clients import DaprClient
logging.basicConfig(level=logging.INFO)
app = flask.Flask(__name__)
CORS(app)
@app.route('/order', methods=['GET'])
def getOrder():
app.logger.info('order service called')
with DaprClient() as d:
d.wait(5)
try:
id = request.args.get('id')
if id:
# Get the order status from Cosmos DB via Dapr
state = d.get_state(store_name='orders', key=id)
if state.data:
resp = jsonify(json.loads(state.data))
else:
resp = jsonify('no order with that id found')
resp.status_code = 200
return resp
else:
resp = jsonify('Order "id" not found in query string')
resp.status_code = 500
return resp
except Exception as e:
app.logger.info(e)
return str(e)
finally:
app.logger.info('completed order call')
@app.route('/order', methods=['POST'])
def createOrder():
app.logger.info('create order called')
with DaprClient() as d:
d.wait(5)
try:
# Get ID from the request body
id = request.json['id']
if id:
# Save the order to Cosmos DB via Dapr
d.save_state(store_name='orders', key=id, value=json.dumps(request.json))
resp = jsonify(request.json)
resp.status_code = 200
return resp
else:
resp = jsonify('Order "id" not found in query string')
resp.status_code = 500
return resp
except Exception as e:
app.logger.info(e)
return str(e)
finally:
app.logger.info('created order')
@app.route('/order', methods=['DELETE'])
def deleteOrder():
app.logger.info('delete called in the order service')
with DaprClient() as d:
d.wait(5)
id = request.args.get('id')
if id:
# Delete the order status from Cosmos DB via Dapr
try:
d.delete_state(store_name='orders', key=id)
return f'Item {id} successfully deleted', 200
except Exception as e:
app.logger.info(e)
return abort(500)
finally:
app.logger.info('completed order delete')
else:
resp = jsonify('Order "id" not found in query string')
resp.status_code = 400
return resp
app.run(host='0.0.0.0', port=os.getenv('PORT', '5000'))