This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.py
1568 lines (1443 loc) · 55.7 KB
/
server.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python3
"""
Author: Maneesh Divana <maneeshd77@gmail.com>
Date: 11-01-2019
Python Interperter: 3.6.8
Server code for Restaurants Menu WebApp with OAuth2
"""
from __future__ import print_function
from os import urandom, getenv
from json import load as load_json_file
from json import dumps as dump_json_string
from base64 import urlsafe_b64encode as encode_uid
from base64 import urlsafe_b64decode as decode_uid
from flask import Flask, redirect, render_template, flash, jsonify
from flask import request, Response, Markup, session as user_session
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker as db_session_maker
from sqlalchemy.orm.exc import NoResultFound
from bleach import clean as clean_markup
from google.oauth2 import id_token as gauth_id_token
from google.auth.transport.requests import Request as GAuthRequest
from db_models import BASE, Restaurant, MenuItem, User
from requests import get, post, delete
# Flask App Setup
APP = Flask(__name__)
APP.config["SECRET_KEY"] = str(urandom(32))
# DB Setup
if getenv("DATABASE_URL"):
DB_ENGINE = create_engine(getenv("DATABASE_URL"))
else:
DB_ENGINE = create_engine("sqlite:///restaurant_menu_with_users.db")
BASE.metadata.bind = DB_ENGINE
DB_SESSION = db_session_maker(bind=DB_ENGINE)
# Google OAuth2 Data
try:
with open("./oauth_data/gAuth.json") as fd:
GOAUTH_DATA = load_json_file(fd)
GOAUTH_CLIENT_ID = GOAUTH_DATA["web"]["client_id"]
GOAUTH_URI = GOAUTH_DATA["web"]["auth_uri"]
GOAUTH_TOKEN_URI = GOAUTH_DATA["web"]["token_uri"]
GOAUTH_CLIENT_SECRET = GOAUTH_DATA["web"]["client_secret"]
except Exception as goauth_err:
print("\n[GoogleOAuthError]", goauth_err)
print("Please make sure Google OAuth2 Client ID JSON file: gAuth.json "
"is present in the same directory level as server.py.")
print(
"You can download the Google OAuth2 Client ID JSON file from your "
"projects' "
"'Creentials' section in Google API Console.\n")
exit(1)
# Facebook OAuth2 Data
try:
with open("./oauth_data/fbAuth.json") as fd:
FB_OAUTH_DATA = load_json_file(fd)
FB_OAUTH_API_VER = FB_OAUTH_DATA["web"]["api_version"]
FB_OAUTH_APP_ID = FB_OAUTH_DATA["web"]["app_id"]
FB_OAUTH_APP_SECRET = FB_OAUTH_DATA["web"]["app_secret"]
except Exception as fboauth_err:
print("\n[FacebookOAuthError]", fboauth_err)
print("Please make sure Facebook OAuth2 App ID JSON file: fbAuth.json "
"is present in the same directory level as server.py.")
exit(1)
# DB Helper Methods
def create_user(name, email, picture=""):
"""
Create a User in database.
:param name: Full name of the user
:param email: E-mail id of the user
:param picture: Link to the profile picture
:return: Created Users' ID in database
"""
db_session = None
picture = picture if picture else None
try:
db_session = DB_SESSION()
user = User(name=name, email=email, picture=picture)
db_session.add(user)
db_session.commit()
print("New user created:", str(user))
user = db_session.query(User).filter_by(email=email).first()
if user:
return user.id
return None
except Exception as exp:
print("[CreateUserError]", exp)
return None
finally:
if db_session:
db_session.close()
def get_user_info(user_id):
"""
Get name, email and profile picture link for a given user id.
:param user_id: User ID in database.
:return: A dictionary containing the above user info.
"""
db_session = None
try:
db_session = DB_SESSION()
user = db_session.query(User).filter_by(id=user_id).one()
if user:
return user.serialize
return dict()
except Exception as exp:
print("[GetUserInfoError]", exp)
return dict()
finally:
if db_session:
db_session.close()
def get_user_id(email):
"""
Given the email id of the user get the user id in database.
:param email: Email id of the user.
:return: Users' ID in database
"""
db_session = None
try:
db_session = DB_SESSION()
user = db_session.query(User).filter_by(email=email).one()
if user:
return user.id
return None
except Exception as exp:
print("[GetUserIdError]", exp)
return None
finally:
if db_session:
db_session.close()
def update_user(user_id, name, picture):
"""
Updates the user info (full name & profile picture link) in database.
*Note: Email id cannot be changed.
:param user_id: Users' ID in database
:param name: Full name of the user
:param picture: Profile picture link
:return: None
"""
db_session = None
try:
db_session = DB_SESSION()
user = db_session.query(User).filter_by(id=user_id).one()
if user:
user.name = name
user.picture = picture
db_session.add(user)
db_session.commit()
except Exception as exp:
print("[UpdateUserIdError]", exp)
finally:
if db_session:
db_session.close()
@APP.route("/gconnect", methods=["POST"])
def g_connect():
"""
Flask Route to handle Google OAuth2 Sign-in.
Verifies the 'id_token' sent by frontend and gets the user info from
Google and authorizes Users of the app.
Accepts only POST requests.
:return: A Response Object
"""
try:
# Get the POSTed JSON data
request_data = request.get_json(force=True)
# Verify CSRF Token
csrf_token = request_data.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) != user_session["secret"]:
print("\n! CSRF_TOKEN ERROR !")
print("SERVER_CSRF_TOKEN:", user_session["uid"])
print("CLIENT_CSRF_TOKEN:", csrf_token, "\n")
clear_session_data()
return Response(
response=dump_json_string(
"Cross Site Request Forgery Detected"),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Get id_token and access_token
id_token = request_data.get("id_token")
access_token = request_data.get("access_token")
if not id_token or not access_token:
# If id_token or access_token is not present clear curent session
clear_session_data()
return Response(
response=dump_json_string(
"Invlaid Request. Please provide id_token and "
"access_token."),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Verify the id_token with Google
gauth_data = gauth_id_token.verify_oauth2_token(
id_token,
GAuthRequest(),
GOAUTH_CLIENT_ID
)
iss = gauth_data["iss"]
aud = gauth_data["aud"]
azp = gauth_data["azp"]
# Check if the Google Auth response has the corect Client ID of the app
if iss != "accounts.google.com" or (azp != aud != GOAUTH_CLIENT_ID):
raise ValueError
gauth_id = gauth_data["sub"]
name = gauth_data["name"]
email = gauth_data["email"]
picture = gauth_data["picture"]
# Verify the access_token
url = "https://www.googleapis.com/oauth2/v3/tokeninfo?access_token=" \
"{0}".format(access_token)
get_req = get(url)
resp = get_req.json()
# If there was an error in the access token info, abort.
if get_req.status_code != 200:
print(
"[AccessTokenError] {0}".format(resp.get("error_description"))
)
clear_session_data()
return Response(
response=dump_json_string(resp.get("error_description")),
status=500,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Verify that the access token is used for the intended user
if resp.get("sub", "NA") != gauth_id:
print("[AccessTokenError] User IDs don't match. id_token['sub']={0}"
" & access_token['sub']={1}".format(gauth_id,
resp.get("sub", "NA")))
clear_session_data()
return Response(
response=dump_json_string(
"Tokens' user id doesn't match with apps' user id."
),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Verify that the access token is valid for this app.
if (resp.get("azp", "NA") != GOAUTH_CLIENT_ID or
resp.get("aud", "NA") != GOAUTH_CLIENT_ID):
print("[AccessTokenError] azp, aud and client id don't match.")
print("aud:", resp.get("aud", "NA"))
print("azp:", resp.get("azp", "NA"))
print("client_id:", GOAUTH_CLIENT_ID)
clear_session_data()
return Response(
response=dump_json_string(
"Tokens' client id doesn't match with apps' client id."),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Everything good so far. Check if user is already logged in.
user_session["auth_provider"] = "google"
stored_access_token = user_session.get("access_token")
stored_gauth_id = user_session.get("gauth_id")
if stored_access_token and stored_gauth_id == gauth_id:
return Response(
response=dump_json_string("OK"),
status=200,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Create or Get Local User connected to the Google User.
user_id = get_user_id(email)
if not user_id:
user_id = create_user(name, email, picture)
else:
update_user(user_id, name, picture)
user_session["user_id"] = user_id
# Store the Google User ID, access_token, user info in session
user_session["access_token"] = access_token
user_session["gauth_id"] = gauth_id
user_session["user"] = dict(
name=name,
email=email,
picture=picture,
)
# Google OAuth2 Sign-in Successful
user_session["logged_in"] = True
flash("Successfully logged in as {0} using Google.".format(name),
"success")
return jsonify(status="OK")
except ValueError as exp:
print("Invlaid ID Token")
print(exp)
clear_session_data()
return Response(
response=dump_json_string("Invlaid Authentication Token"),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
except Exception as unexp:
print("[GConnect] Unexpected Error!")
print(unexp)
clear_session_data()
return Response(
response=dump_json_string("Unexpected Server Error"),
status=500,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
@APP.route("/fbconnect", methods=["POST"])
def fb_connect():
"""
Flask Route to handle Facebook OAuth2 Sign-in.
Verifies the 'access_token' sent by frontend and gets the user info from
Facebook and authorizes Users of the app.
Accepts only POST requests.
:return: A Response Object
"""
try:
# Get the POSTed JSON data
request_data = request.get_json(force=True)
# Verify CSRF Token
csrf_token = request_data.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) != user_session["secret"]:
print("\n! CSRF_TOKEN ERROR !")
print("SERVER_CSRF_TOKEN:", user_session["uid"])
print("CLIENT_CSRF_TOKEN:", csrf_token, "\n")
clear_session_data()
return Response(
response=dump_json_string(
"Cross Site Request Forgery Detected"),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Verify the access_token with Facebook and get user info
access_token = request_data.get("access_token")
profile_url = "https://graph.facebook.com/{0}/me?access_token={1}&" \
"fields=name,email,id,picture".format(FB_OAUTH_API_VER,
access_token)
get_req = get(profile_url)
if get_req.status_code == 200:
# Request success
profile_data = get_req.json()
name = profile_data.get("name")
email = profile_data.get("email")
fb_auth_id = profile_data.get("id")
picture = profile_data.get("picture", {}).get("data", {}).get("url",
"")
if not name or not email or not fb_auth_id:
# If user info not in facebook response, send error response.
clear_session_data()
return Response(
response=dump_json_string(
"Failed to get authentication response from Facebook"),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Everything's good so far. Verify if user is already logged in.
user_session["auth_provider"] = "facebook"
stored_access_token = user_session.get("access_token")
stored_fb_auth_id = user_session.get("fb_auth_id")
if stored_access_token and stored_fb_auth_id == fb_auth_id:
return Response(
response=dump_json_string("OK"),
status=200,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
# Create or Get Local User connected to the Facebook User
user_id = get_user_id(email)
if not user_id:
user_id = create_user(name, email, picture)
else:
update_user(user_id, name, picture)
# Store the user info, access_token etc in session.
user_session["user_id"] = user_id
user_session["access_token"] = access_token
user_session["fb_auth_id"] = fb_auth_id
user_session["user"] = dict(
name=name,
email=email,
picture=picture,
)
# Facebook OAuth2 Sign-in Successful
user_session["logged_in"] = True
flash("Successfully logged in as {0} using Facebook.".format(name),
"success")
return jsonify(status="OK")
else:
clear_session_data()
return Response(
response=dump_json_string("Invlaid Authentication Token"),
status=401,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
except Exception as unexp:
print("[FbConnect] Unexpected Error!")
print(unexp)
clear_session_data()
return Response(
response=dump_json_string("Unexpected Server Error"),
status=500,
mimetype="application/json",
content_type="application/json; charset=utf-8"
)
def clear_session_data():
"""
Clear the current user session variables.
:return: None
"""
user_session["logged_in"] = False
if user_session.get("uid"):
del user_session["uid"]
if user_session.get("secret"):
del user_session["secret"]
if user_session.get("access_token"):
del user_session["access_token"]
if user_session.get("user"):
del user_session["user"]
if user_session.get("user_id"):
del user_session["user_id"]
if user_session.get("gauth_id"):
del user_session["gauth_id"]
if user_session.get("auth_provider"):
del user_session["auth_provider"]
if user_session.get("fb_auth_id"):
del user_session["fb_auth_id"]
def g_disconnect(token):
"""
Revoke permissions granted to the app from Google and
invalidate the access_token.
:param token: access_token from Google
:return: True if successful else False
"""
uri = "https://accounts.google.com/o/oauth2/revoke?token={0}".format(token)
try:
resp = post(url=uri,
headers={
'content-type': 'application/x-www-form-urlencoded'
})
if resp.status_code == 200:
print(
"[GDisconnect] Successfully revoked Google OAuth2 "
"access_token.")
return True
print("[GDisconnect] Failed to revoke access_token.\n", resp)
return False
except Exception as exp:
print("[GDisconnectError]", exp)
def fb_disconnect(user_id, access_token):
"""
Revoke permissions granted to the app from Facebook and
invalidate the access_token.
:param user_id: Facebook user id
:param access_token: Facebook access_token
:return: True if successful else False
"""
try:
url = "https://graph.facebook.com/{0}/permissions?" \
"access_token={1}".format(user_id, access_token)
resp = delete(url)
if resp.status_code == 200:
print("[FbDisconnect] Successfully Revoked Facebook access_token.")
return True
print("[FbDisconnect] Failed to revoke Facebook access_token.\n", resp)
return False
except Exception as exp:
print("[FbDisconnectError]", exp)
@APP.route("/login/")
@APP.route("/login")
def login():
"""
Flask route to handle user logins.
:return: Rendered Jinja2 HTML Template
"""
# Create a secure CSRF Token for the user session.
user_session["secret"] = urandom(32)
session_id = encode_uid(user_session["secret"]).decode()
user_session["uid"] = session_id
return render_template(
"login.html",
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session["uid"],
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
@APP.route("/logout/", methods=["POST"])
@APP.route("/logout", methods=["POST"])
def logout():
"""
Flask route to handle user logouts based on the auth provider.
:return: JSON response
"""
try:
if user_session.get("uid"):
request_data = request.get_json(force=True)
if request_data:
# Verify CSRF Token
csrf_token = request_data.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) == user_session["secret"]:
if user_session["auth_provider"] == "google":
g_disconnect(user_session.get("access_token"))
else:
fb_disconnect(user_session["fb_auth_id"],
user_session["access_token"])
return jsonify(status="OK")
else:
print(decode_uid(csrf_token))
print(user_session["secret"])
return jsonify(status="CSRF Token Mismatch!")
else:
return jsonify(status="Invalid Request Data!")
else:
return jsonify(status="OK")
except Exception as exp:
print("[LogoutError]", exp)
return jsonify(status="Unexpected Error")
finally:
clear_session_data()
@APP.route("/restaurants/")
@APP.route("/restaurants")
@APP.route("/")
def home():
"""
Flask route to display the home page/all restaurants list page.
:return: Rendered Jinja2 HTML Template
"""
# Validate that user is logged in
if not user_session.get("logged_in") or not user_session.get("uid"):
flash("Please login", "info")
return redirect("/login")
restaurants = list()
db_session = None
try:
db_session = DB_SESSION()
result = db_session.query(Restaurant).all()
restaurants = [row.serialize for row in result]
except NoResultFound:
print("[WARNING] No restaurants found in database!")
flash("No restaurants found.", "danger")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server", "danger")
finally:
if db_session:
db_session.close()
return render_template(
"restaurants.html",
restaurants=restaurants,
user=user_session.get("user", None),
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session.get("uid", ""),
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
@APP.route("/restaurants/add/", methods=["GET", "POST"])
@APP.route("/restaurants/add", methods=["GET", "POST"])
def add_restaurant():
"""
Flask route to handle adding of a new restaurant.
:return: Rendered Jinja2 HTML Template
"""
# Validate that the user is logged in
if not user_session.get("logged_in") or not user_session.get("uid"):
flash("Please login", "info")
return redirect("/login")
db_session = None
if request.method == "POST":
name = request.form.get("restaurant_name")
# Verify CSRF Token
csrf_token = request.form.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) != user_session.get("secret", "?????"):
flash("Invalid CSRF Token", "danger")
return redirect("/login")
if name:
name = str(clean_markup(name)).strip()
restaurant = Restaurant(name=name, user_id=user_session["user_id"])
try:
db_session = DB_SESSION()
db_session.add(restaurant)
db_session.commit()
print("[INFO] Added new restaurant: {0}".format(restaurant))
message = Markup(
"New restaurant added: <b>{0}</b>".format(name))
print(message)
flash(message, "success")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server",
"danger")
finally:
if db_session:
db_session.close()
else:
flash("Invalid restaurant name. Did not add new restaurant.",
"danger")
return redirect("/")
else:
return render_template(
"add_restaurant.html",
user=user_session.get("user", None),
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session.get("uid", ""),
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
@APP.route("/restaurants/<int:rid>/edit/", methods=["GET", "POST"])
@APP.route("/restaurants/<int:rid>/edit", methods=["GET", "POST"])
def edit_restaurant(rid):
"""
Flask route to handle editing a restaurants name.
:param rid: Restaurants ID
:return: Rendered Jinja2 HTML Template
"""
# Validate that the user is logged in
if not user_session.get("logged_in") or not user_session.get("uid"):
flash("Please login", "info")
return redirect("/login")
# If POST request update info in db and redirect, else render edit page.
db_session = None
if request.method == "POST":
name = request.form.get("restaurant_name")
# Validate the CSRF Token
csrf_token = request.form.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) != user_session.get("secret", "?????"):
flash("Invalid CSRF Token", "danger")
return redirect("/login")
if name:
name = str(clean_markup(name)).strip()
try:
db_session = DB_SESSION()
restaurant = db_session.query(Restaurant)\
.filter_by(rid=rid)\
.one()
if not restaurant:
raise NoResultFound
# Verify that user is the owner to edit
if restaurant.user_id != user_session["user_id"]:
flash(
"Unauthorized Access. You are not thr owner of "
"the restaurant!",
"danger")
return redirect("/restaurants/{0}/menu".format(rid))
old_name = restaurant.name
if old_name == name:
pass
else:
old_restaurant = str(restaurant)
restaurant.name = name
db_session.add(restaurant)
db_session.commit()
print("[INFO] Changed restaurant from {0} to {1}".format(
old_restaurant, restaurant))
message = Markup(
"Restaurants' name changed from <b>{0}</b> to "
"<b>{1}</b>".format(old_name, name)
)
flash(message, "primary")
except NoResultFound:
print(
"[WARNING] Restaurant(rid={0}) not found in "
"database!".format(
rid))
flash("Unable find the restaurant in database", "warning")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server",
"danger")
finally:
if db_session:
db_session.close()
else:
flash("Invalid restaurant name. Did not change restaurants' name.")
return redirect("/restaurants/{0}/menu".format(rid))
else:
try:
db_session = DB_SESSION()
result = db_session.query(Restaurant).filter_by(rid=rid).first()
if not result:
raise NoResultFound
restaurant = result.serialize
if restaurant["user_id"] != user_session["user_id"]:
flash(
"Unauthorized Access. You are not the owner of the "
"restaurant!",
"danger")
return redirect("/restaurants/{0}/menu".format(rid))
return render_template(
"edit_restaurant.html",
restaurant=restaurant,
user=user_session.get("user", None),
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session.get("uid", ""),
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
except NoResultFound:
print("[WARNING] Restaurant(rid={0}) not found in database!".format(
rid))
flash("Unable find the restaurant in database", "danger")
return redirect("/")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server", "danger")
return redirect("/")
finally:
if db_session:
db_session.close()
@APP.route("/restaurants/<int:rid>/delete/", methods=["GET", "POST"])
@APP.route("/restaurants/<int:rid>/delete", methods=["GET", "POST"])
def delete_restaurant(rid):
"""
Flask route to handle the deletion of a restaurant.
:param rid: Restaurants ID
:return: Rendered Jinja2 HTML Template
"""
# Validate that the user is logged in
if not user_session.get("logged_in") or not user_session.get("uid"):
flash("Please login", "info")
return redirect("/login")
# If POST request delete and redirect, if GET request render delete page.
db_session = None
if request.method == "POST":
# Verify CSRF Token
csrf_token = request.form.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) != user_session.get("secret", "?????"):
flash("Invalid CSRF Token", "danger")
return redirect("/login")
try:
db_session = DB_SESSION()
restaurant = db_session.query(Restaurant).filter_by(rid=rid).one()
if not restaurant:
raise NoResultFound
# Verify user is the owner to delete
if restaurant.user_id != user_session["user_id"]:
flash(
"Unauthorized Access. You are not thr owner of the "
"restaurant!",
"danger")
return redirect("/restaurants/{0}/menu".format(rid))
db_session.delete(restaurant)
db_session.commit()
print("[INFO] Deleted restaurant: {0}".format(restaurant))
message = Markup(
"Restaurant deleted: <b>{0}</b>".format(restaurant.name))
flash(message, "warning")
except NoResultFound:
print("[WARNING] Restaurant(rid={0}) not found in database!".format(
rid))
flash("Unable find the restaurant in database", "danger")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server", "danger")
finally:
if db_session:
db_session.close()
return redirect("/")
else:
try:
db_session = DB_SESSION()
result = db_session.query(Restaurant).filter_by(rid=rid).one()
if not result:
raise NoResultFound
restaurant = result.serialize
# Verify that user is the owner to delete
if restaurant["user_id"] != user_session["user_id"]:
flash(
"Unauthorized Access. You are not thr owner of the "
"restaurant!",
"danger")
return redirect("/restaurants/{0}/menu".format(rid))
return render_template(
"delete_restaurant.html",
restaurant=restaurant,
user=user_session.get("user", None),
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session.get("uid", ""),
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
except NoResultFound:
print("[WARNING] Restaurant(rid={0}) not found in database!".format(
rid))
flash("Unable find the restaurant in database", "danger")
return redirect("/")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server", "danger")
return redirect("/")
finally:
if db_session:
db_session.close()
@APP.route("/restaurants/<int:rid>/menu/")
@APP.route("/restaurants/<int:rid>/menu")
def restaurant_menu(rid):
"""
Flask route to handle the viewing of menu of a restaurant.
:param rid: Restaurants ID
:return: Rendered Jinja2 HTML Template
"""
# Verify that the user is logged in
if not user_session.get("logged_in") or not user_session.get("uid"):
flash("Please login", "info")
return redirect("/login")
db_session = None
try:
db_session = DB_SESSION()
result = db_session.query(Restaurant).filter_by(rid=rid).first()
if not result:
raise NoResultFound
restaurant = result.serialize
owner = get_user_info(restaurant["user_id"])
restricted_view = True if owner["id"] != user_session["user_id"] \
else False
result = db_session.query(MenuItem).filter_by(rid=rid).all()
if result:
menu_items = [row.serialize for row in result]
courses = ["appetizer", "entree", "dessert", "beverage"]
appetizers = [item for item in menu_items if
item["course"].lower() == courses[0]]
entrees = [item for item in menu_items if
item["course"].lower() == courses[1]]
desserts = [item for item in menu_items if
item["course"].lower() == courses[2]]
beverages = [item for item in menu_items if
item["course"].lower() == courses[3]]
others = [item for item in menu_items if
item["course"].lower() not in courses]
return render_template(
"menu_items.html",
restaurant=restaurant,
appetizers=appetizers,
entrees=entrees,
desserts=desserts,
beverages=beverages,
others=others,
user=user_session.get("user", None),
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session.get("uid", ""),
restricted_view=restricted_view,
owner=owner,
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
# No menu items added for the restaurant
message = Markup(
"Menu is empty for restaurant <b>{0}</b>".format(
restaurant["name"]))
flash(message, "warning")
return render_template(
"menu_items.html",
restaurant=restaurant,
appetizers=[],
entrees=[],
desserts=[],
beverages=[],
others=[],
user=user_session.get("user", None),
gauth_client_id=GOAUTH_CLIENT_ID,
csrf_token=user_session.get("uid", ""),
restricted_view=restricted_view,
owner=owner,
fb_api_ver=FB_OAUTH_API_VER,
fb_app_id=FB_OAUTH_APP_ID
)
except NoResultFound:
print(
"[WARNING] Restaurant(rid={0}) not found in database!".format(rid))
flash("Unable find the restaurant in database", "danger")
return redirect("/")
except Exception as exp:
print("[ERROR]", exp)
flash("An unexpected error has occurred in the server", "danger")
return redirect("/")
finally:
if db_session:
db_session.close()
@APP.route("/restaurants/<int:rid>/menu/add/", methods=["GET", "POST"])
@APP.route("/restaurants/<int:rid>/menu/add", methods=["GET", "POST"])
def add_menu_item(rid):
"""
Flask route to handle the adding of menu item to a restaurant.
:param rid: Restaurants ID
:return: Rendered Jinja2 HTML Template
"""
# Validate that the user is logged in
if not user_session.get("logged_in") or not user_session.get("uid"):
flash("Please login", "info")
return redirect("/login")
db_session = None
if request.method == "POST":
try:
name = request.form.get("name")
desc = request.form.get("desc", "")
course = request.form.get("course")
price = request.form.get("price")
# Verify CSRF Token
csrf_token = request.form.get("csrf_token", "NA").encode()
if decode_uid(csrf_token) != user_session.get("secret", "?????"):
flash("Invalid CSRF Token", "danger")
return redirect("/login")
# Validation
courses = ["Appetizer", "Entree", "Desert", "Beverage"]
invalid = False
if (not name or not course or not price or
len(price) > 4 or course not in courses):
print("[EditMenuItem] Invalid user input.")
invalid = True
try:
int(price.replace("$", ""))
except Exception as exp:
del exp
try:
float(price.replace("$", ""))