-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderRoutes.py
296 lines (198 loc) · 7.11 KB
/
orderRoutes.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
from fastapi import APIRouter,Depends,status
from fastapi.exceptions import HTTPException
from fastapi_jwt_auth import AuthJWT
from models import User,Order
from schemas import OrderModel,OrderStatusModel
from database import Session , engine
from fastapi.encoders import jsonable_encoder
order_router=APIRouter(
prefix="/orders",
tags=['orders']
)
session=Session(bind=engine)
@order_router.get('/')
async def hello(Authorize:AuthJWT=Depends()):
"""
## A sample hello world route
This returns Hello world
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid Token"
)
return {"message":"Hello World"}
@order_router.post('/order',status_code=status.HTTP_201_CREATED)
async def place_an_order(order:OrderModel,Authorize:AuthJWT=Depends()):
"""
## Placing an Order
This requires the following
- quantity : integer
- pizza_size: str
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid Token"
)
current_user=Authorize.get_jwt_subject()
user=session.query(User).filter(User.username==current_user).first()
new_order=Order(
pizza_size=order.pizza_size,
quantity=order.quantity
)
new_order.user=user
session.add(new_order)
session.commit()
response={
"pizza_size":new_order.pizza_size,
"quantity":new_order.quantity,
"id":new_order.id,
"order_status":new_order.order_status
}
return jsonable_encoder(response)
@order_router.get('/orders')
async def list_all_orders(Authorize:AuthJWT=Depends()):
"""
## List all orders
This lists all orders made. It can be accessed by superusers
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid Token"
)
current_user=Authorize.get_jwt_subject()
user=session.query(User).filter(User.username==current_user).first()
if user.is_staff:
orders=session.query(Order).all()
return jsonable_encoder(orders)
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,
detail="You are not a superuser"
)
@order_router.get('/orders/{id}')
async def get_order_by_id(id:int,Authorize:AuthJWT=Depends()):
"""
## Get an order by its ID
This gets an order by its ID and is only accessed by a superuser
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid Token"
)
user=Authorize.get_jwt_subject()
current_user=session.query(User).filter(User.username==user).first()
if current_user.is_staff:
order=session.query(Order).filter(Order.id==id).first()
return jsonable_encoder(order)
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="User not alowed to carry out request"
)
@order_router.get('/user/orders')
async def get_user_orders(Authorize:AuthJWT=Depends()):
"""
## Get a current user's orders
This lists the orders made by the currently logged in users
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid Token"
)
user=Authorize.get_jwt_subject()
current_user=session.query(User).filter(User.username==user).first()
return jsonable_encoder(current_user.orders)
@order_router.get('/user/order/{id}/')
async def get_specific_order(id:int,Authorize:AuthJWT=Depends()):
"""
## Get a specific order by the currently logged in user
This returns an order by ID for the currently logged in user
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid Token"
)
subject=Authorize.get_jwt_subject()
current_user=session.query(User).filter(User.username==subject).first()
orders=current_user.orders
for o in orders:
if o.id == id:
return jsonable_encoder(o)
raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST,
detail="No order with such id"
)
@order_router.put('/order/update/{id}/')
async def update_order(id:int,order:OrderModel,Authorize:AuthJWT=Depends()):
"""
## Updating an order
This udates an order and requires the following fields
- quantity : integer
- pizza_size: str
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,detail="Invalid Token")
order_to_update=session.query(Order).filter(Order.id==id).first()
order_to_update.quantity=order.quantity
order_to_update.pizza_size=order.pizza_size
session.commit()
response={
"id":order_to_update.id,
"quantity":order_to_update.quantity,
"pizza_size":order_to_update.pizza_size,
"order_status":order_to_update.order_status,
}
return jsonable_encoder(order_to_update)
@order_router.patch('/order/update/{id}/')
async def update_order_status(id:int,
order:OrderStatusModel,
Authorize:AuthJWT=Depends()):
"""
## Update an order's status
This is for updating an order's status and requires ` order_status ` in str format
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,detail="Invalid Token")
username=Authorize.get_jwt_subject()
current_user=session.query(User).filter(User.username==username).first()
if current_user.is_staff:
order_to_update=session.query(Order).filter(Order.id==id).first()
order_to_update.order_status=order.order_status
session.commit()
response={
"id":order_to_update.id,
"quantity":order_to_update.quantity,
"pizza_size":order_to_update.pizza_size,
"order_status":order_to_update.order_status,
}
return jsonable_encoder(response)
@order_router.delete('/order/delete/{id}/',status_code=status.HTTP_204_NO_CONTENT)
async def delete_an_order(id:int,Authorize:AuthJWT=Depends()):
"""
## Delete an Order
This deletes an order by its ID
"""
try:
Authorize.jwt_required()
except Exception as e:
raise HTTPException(status_code=status.HTTP_401_UNAUTHORIZED,detail="Invalid Token")
order_to_delete=session.query(Order).filter(Order.id==id).first()
session.delete(order_to_delete)
session.commit()
return order_to_delete