-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder_routes.py
254 lines (192 loc) · 6.85 KB
/
order_routes.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
from fastapi import APIRouter,Depends,status
from fastapi.exceptions import HTTPException
from fastapi_jwt_auth import AuthJWT
from sqlalchemy import select
from models import OrderStatus, OrderSize, User, Order, Toppings
from schemas import OrderModel, OrderStatusModel, OrderPlacementModel
from database import Session, engine
from fastapi.encoders import jsonable_encoder
from sqlalchemy.orm import Session
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(quantity:int,t:Toppings,size:OrderSize, Authorize:AuthJWT=Depends()):
"""
## Place an Order
This requires the following:
- the quantity: integer
- the pizza size: str
- the toppings: 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=size,
quantity=quantity,
toppings=t
)
new_order.user=user
session.add(new_order)
session.commit()
response={
"pizza_size":new_order.pizza_size,
"toppings":new_order.toppings,
"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()):
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()
# orders=db.query(Order).all()
# print("**************", orders )
# return orders
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 super user"
)
@order_router.get('/orders/{id}')
async def get_order_by_id(id:int,Authorize:AuthJWT=Depends()):
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 allowed to carry out the request"
)
@order_router.get('/user/orders')
async def get_current_user_orders(Authorize:AuthJWT=Depends()):
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_of_user(id:int, Authorize:AuthJWT=Depends()):
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,quantity:int,t:Toppings,order:OrderSize,Authorize:AuthJWT=Depends()):
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=quantity
order_to_update.pizza_size=order
order_to_update.toppings=t
session.commit()
response={
"quantity":order_to_update.quantity,
"pizza_size":order_to_update.pizza_size,
"toppings":order_to_update.toppings,
"order_status":order_to_update.order_status
}
return jsonable_encoder(response)
@order_router.patch('/order/update/{id}/')
async def update_order_status(id:int,
order_status:OrderStatus,
Authorize:AuthJWT=Depends()):
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_status
session.commit()
response={
"quantity":order_to_update.quantity,
"pizza_size":order_to_update.pizza_size,
"toppings":order_to_update.toppings,
"order_status":order_to_update.order_status
}
return jsonable_encoder(response)
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="User not allowed to carry out the request"
)
@order_router.delete('/order/delete/{id}/',
status_code=status.HTTP_204_NO_CONTENT)
async def delete_an_order(id:int,Authorize:AuthJWT=Depends()):
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