-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
845 lines (794 loc) · 32.2 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
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
import os, firebase_admin, uuid, time
from flask import Flask, render_template, redirect, url_for, session, request
from jinja2 import Environment
from firebase_admin import credentials, db, storage, initialize_app
from scripts.user import (
create_user,
check_user_exists,
check_pending_user_exists,
delete_user,
)
from scripts.security import (
check_valid,
passwords,
check_valid_password,
check_rutgers_email,
)
from scripts.mail import mail
from flask_socketio import SocketIO, join_room, leave_room, send
from blueprints.chat.chat import chat_bp, rooms_tracker_chat, room_tracker_KEYS
from datetime import timedelta
from flask_cors import CORS
from blueprints.profile.profile import profile_bp
from blueprints.store.store import store_bp, HOLDER
from blueprints.contact_us.contact_us import contact_us_bp
from blueprints.subscribe.subscribe import subscribe_bp
from blueprints.item.item import item_bp
from blueprints.basket.basket import basket_bp
from blueprints.faq.faq import faq_bp
from blueprints.questionaire.questionaire import questionaire_bp
from dotenv import load_dotenv
"""
DO NOT TOUCH : START
"""
load_dotenv()
def create_app():
new_app = Flask(__name__, template_folder="html")
new_app.register_blueprint(profile_bp)
new_app.register_blueprint(chat_bp)
new_app.register_blueprint(store_bp)
new_app.register_blueprint(contact_us_bp)
new_app.register_blueprint(subscribe_bp)
new_app.register_blueprint(item_bp)
new_app.register_blueprint(faq_bp)
new_app.register_blueprint(basket_bp)
new_app.register_blueprint(questionaire_bp)
return new_app
app = create_app()
app.jinja_env.globals.update(len=len, str=str)
CORS(app)
app.config["DEBUG"] = os.environ.get("FLASK_DEBUG")
app.config["CATEGORIES"] = [
"Tech",
"Clothing",
"Books",
"Home_Decor",
"Lighting",
"Furniture",
"Appliances",
"Other",
]
app.config["PERMANENT_SESSION_LIFETIME"] = timedelta(minutes=15)
app.config["SECRET_KEY"] = os.environ.get("SECRET_KEY")
app.config["DB_URL"] = os.environ.get("DB_URL")
app.config["FIREBASE_KEY_PATH"] = os.environ.get("FIREBASE_KEY_PATH")
app.config["TO_ALL"] = os.environ.get("TO_ALL")
app.config["TO_TECH"] = os.environ.get("TO_TECH")
app.config["TO_CLOTHING"] = os.environ.get("TO_CLOTHING")
app.config["TO_BOOKS"] = os.environ.get("TO_BOOKS")
app.config["TO_HOME_DECOR"] = os.environ.get("TO_HOME_DECOR")
app.config["TO_LIGHTING"] = os.environ.get("TO_LIGHTING")
app.config["TO_FURNITURE"] = os.environ.get("TO_FURNITURE")
app.config["TO_APPLIANCES"] = os.environ.get("TO_APPLIANCES")
app.config["TO_OTHER"] = os.environ.get("TO_OTHER")
app.config["TO_FAQ"] = os.environ.get("TO_FAQ")
app.config["TO_ABOUT"] = os.environ.get("TO_ABOUT")
app.config["TO_CONTACT"] = os.environ.get("TO_CONTACT")
app.config["TO_HOUSING"] = os.environ.get("TO_HOUSING")
app.config["TO_PARKING"] = os.environ.get("TO_PARKING")
app.config["TO_SURVEY"] = os.environ.get("TO_SURVEY")
app.config["TO_CHAT"] = os.environ.get("TO_CHAT")
app.config["TO_MYITEMS"] = os.environ.get("TO_MYITEMS")
app.config["TO_CART"] = os.environ.get("TO_CART")
app.config["TO_PROFILE"] = os.environ.get("TO_PROFILE")
app.config["TO_REC"] = os.environ.get("TO_REC")
app.config["VALID_ROUTES"] = {
app.config["TO_ALL"],
app.config["TO_TECH"],
app.config["TO_CLOTHING"],
app.config["TO_BOOKS"],
app.config["TO_HOME_DECOR"],
app.config["TO_LIGHTING"],
app.config["TO_FURNITURE"],
app.config["TO_APPLIANCES"],
app.config["TO_OTHER"],
app.config["TO_FAQ"],
app.config["TO_CONTACT"],
app.config["TO_ABOUT"],
app.config["TO_HOUSING"],
app.config["TO_PARKING"],
app.config["TO_SURVEY"],
app.config["TO_CHAT"],
app.config["TO_MYITEMS"],
app.config["TO_CART"],
app.config["TO_PROFILE"],
app.config["TO_REC"]
}
cred = credentials.Certificate(app.config["FIREBASE_KEY_PATH"])
firebase_admin.initialize_app(
cred,
{
"databaseURL": app.config["DB_URL"],
"storageBucket": os.environ.get("FIREBASE_STORAGE_BUCKET"),
},
)
app.config["DB_CONNECTION"] = db.reference("")
socketio = SocketIO(app)
"""
DO NOT TOUCH : END
"""
@app.route("/verify/<uid>/<routing_key>", methods=["POST", "DELETE"])
def api_verification_new_user_routing(uid, routing_key):
try:
verification_code = int(request.form.get("code"))
if verification_code is None:
return render_template("verify_route.html", uid=uid, routing_key=routing_key, error_message="please enter a verification code")
code_ref = db.reference(f"codes/{uid}")
code = str(code_ref.child("code").get())
timestamp = code_ref.child("timestamp").get()
if timestamp is None:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify_route.html", uid=uid, error_message="Code Expired", routing_key=routing_key
)
timestamp2 = time.time()
time_diff = timestamp2 - float(timestamp)
if time_diff > 180:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify_route.html", uid=uid, error_message="Code Expired", routing_key=routing_key
)
if code is None:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify_route.html", uid=uid, error_message="Invalid Code", routing_key=routing_key
)
if str(verification_code) != code:
return render_template(
"./verify_route.html", uid=uid, error_message="Invalid Code", routing_key=routing_key
)
data_ref = db.reference(f"codes/{uid}/meta")
data = data_ref.get()
if data is None:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify_route.html", uid=uid, error_message="Invalid Code", routing_key=routing_key
)
cu = create_user.CreateUser(db.reference(""), data, uid)
if cu.response == 200:
name_ref = db.reference(f"codes/{uid}/meta")
first_name = name_ref.child("first_name").get()
last_name = name_ref.child("last_name").get()
email = name_ref.child("email").get()
session["first_name"] = first_name
session["last_name"] = last_name
session["email"] = email
db.reference(f"codes/{uid}").delete()
db.reference(f"pending/{uid}").delete()
session["uid"] = uid
if HOLDER.get(session['uid'], None) is not None:
del HOLDER[session['uid']]
if routing_key in app.config["VALID_ROUTES"]:
session["allow_routing"] = True
return redirect(url_for("route", routing_key=routing_key))
else:
return redirect(
url_for("home")
) # redirect to home logged in (invalid routing key)
return cu.response # error message
except Exception as e:
return str(e)
@app.route("/verify/<uid>", methods=["POST", "DELETE"])
def api_verification_new_user(uid):
try:
verification_code = int(request.form.get("code"))
if verification_code is None:
return render_template("verify.html", uid=uid, error_message="please enter a verification code")
code_ref = db.reference(f"codes/{uid}")
code = str(code_ref.child("code").get())
timestamp = code_ref.child("timestamp").get()
if timestamp is None:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify.html", uid=uid, error_message="Code Expired"
)
timestamp2 = time.time()
time_diff = timestamp2 - float(timestamp)
if time_diff > 180:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify.html", uid=uid, error_message="Code Expired"
)
if code is None:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify.html", uid=uid, error_message="Invalid Code"
)
if str(verification_code) != code:
return render_template(
"./verify.html", uid=uid, error_message="Invalid Code"
)
data_ref = db.reference(f"codes/{uid}/meta")
data = data_ref.get()
if data is None:
db.reference(f"codes/{uid}").delete()
return render_template(
"./verify.html", uid=uid, error_message="Invalid Code"
)
cu = create_user.CreateUser(db.reference(""), data, uid)
if cu.response == 200:
name_ref = db.reference(f"codes/{uid}/meta")
first_name = name_ref.child("first_name").get()
last_name = name_ref.child("last_name").get()
email = name_ref.child("email").get()
session["first_name"] = first_name
session["last_name"] = last_name
session["email"] = email
db.reference(f"codes/{uid}").delete()
db.reference(f"pending/{uid}").delete()
session["uid"] = uid
return redirect(url_for("home"))
return cu.response # error message
except Exception as e:
return str(e)
@app.route("/verify/<uid>")
def verify(uid):
return render_template("./verify.html", uid=uid)
@app.route("/verify/<uid>/<routing_key>")
def verify_route(uid, routing_key):
return render_template("./verify_route.html", uid=uid, routing_key=routing_key)
@app.route("/signup/<routing_key>", methods=["POST"])
def api_create_user_routing(routing_key):
connection = app.config["DB_CONNECTION"]
first_name = request.form.get("first_name")
last_name = request.form.get("last_name")
email = request.form.get("email")
terms = request.form.get("terms")
password1 = request.form.get("password1")
password2 = request.form.get("password2")
if str(terms) == "None":
return render_template(
"./signup_route.html",
error_message="please accept our Terms of Service and Privacy Policy",
EMAIL=email,
FIRST_NAME=first_name,
LAST_NAME=last_name,
PASSWORD1=password1,
PASSWORD2=password2,
routing_key = routing_key
)
cv = check_valid.CheckValid(password1, password2)
if cv.error_message is not None:
return render_template(
"./signup_route.html",
error_message=cv.error_message,
FIRST_NAME=first_name,
LAST_NAME=last_name,
EMAIL=email,
routing_key=routing_key
)
cru = check_rutgers_email.CheckRutgersEmail(email)
if cru.error_message is not None:
return render_template('./signup_route.html', error_message=cru.error_message,
FIRST_NAME=first_name, LAST_NAME=last_name, PASSWORD1=password1, PASSWORD2=password2, routing_key=routing_key)
cue = check_user_exists.CheckUserExists(connection, email)
password = passwords.encrypt_password(password1)
uid = str(uuid.uuid4())
if cue.response == 302:
cpue = check_pending_user_exists.CheckPendingUserExists(connection, email)
if cpue.uid is not None:
uid = cpue.uid
SM = mail.Mailer(app)
res = SM.send_verification_code(
[email],
{
"first_name": first_name,
"last_name": last_name,
"password": password,
"uid": uid,
"email": email,
},
uid,
)
if res == 200:
return redirect(url_for("verify_route", uid=uid, routing_key=routing_key)) #TO VERIFICATION CODE
return res
elif cue.response == 301:
return render_template(
"./signup_route.html",
error_message="Email is already associated with another account",
EMAIL=email,
FIRST_NAME=first_name,
LAST_NAME=last_name,
PASSWORD1=password1,
PASSWORD2=password2,
routing_key=routing_key
)
else:
return str(cue.response)
@app.route("/signup", methods=["POST"])
def api_create_user():
connection = app.config["DB_CONNECTION"]
first_name = request.form.get("first_name")
last_name = request.form.get("last_name")
email = request.form.get("email")
terms = request.form.get("terms")
password1 = request.form.get("password1")
password2 = request.form.get("password2")
if str(terms) == "None":
return render_template(
"./signup.html",
error_message="please accept our Terms of Service and Privacy Policy",
EMAIL=email,
FIRST_NAME=first_name,
LAST_NAME=last_name,
PASSWORD1=password1,
PASSWORD2=password2,
)
cv = check_valid.CheckValid(password1, password2)
if cv.error_message is not None:
return render_template(
"./signup.html",
error_message=cv.error_message,
FIRST_NAME=first_name,
LAST_NAME=last_name,
EMAIL=email,
)
cru = check_rutgers_email.CheckRutgersEmail(email)
if cru.error_message is not None:
return render_template('./signup.html', error_message=cru.error_message,
FIRST_NAME=first_name, LAST_NAME=last_name, PASSWORD1=password1, PASSWORD2=password2)
cue = check_user_exists.CheckUserExists(connection, email)
password = passwords.encrypt_password(password1)
uid = str(uuid.uuid4())
if cue.response == 302:
cpue = check_pending_user_exists.CheckPendingUserExists(connection, email)
if cpue.uid is not None:
uid = cpue.uid
SM = mail.Mailer(app)
res = SM.send_verification_code(
[email],
{
"first_name": first_name,
"last_name": last_name,
"password": password,
"uid": uid,
"email": email,
},
uid,
)
if res == 200:
return redirect(url_for("verify", uid=uid)) #TO VERIFICATION CODE
return res
elif cue.response == 301:
return render_template(
"./signup.html",
error_message="Email is already associated with another account",
EMAIL=email,
FIRST_NAME=first_name,
LAST_NAME=last_name,
PASSWORD1=password1,
PASSWORD2=password2,
)
else:
return str(cue.response)
@app.route("/signup")
def signup():
session.clear()
return render_template("./signup.html")
@app.route("/signup/<routing_key>")
def signup_route(routing_key):
session.clear()
return render_template("./signup_route.html", routing_key=routing_key)
@app.route("/logout")
def logout():
if session.get('uid', None) is None:
return render_template('logout.html')
if HOLDER.get(session['uid'], None) is not None:
del HOLDER[session['uid']]
session.clear()
return render_template('logout.html')
@app.route("/login/<routing_key>", methods=["POST"])
def api_login_routing(routing_key):
step = request.form.get("step", None)
if step is not None:
if step == "enter_email":
return render_template(
"login_route.html", step=step, routing_key=routing_key
)
elif step == "got_email":
email = request.form.get("email")
converted_email = check_user_exists.convert_email(email)
uid = db.reference(f"active/{converted_email}").get()
if uid is None:
return render_template(
"login_route.html",
step="enter_email",
error_message="email is not associated with any account",
routing_key=routing_key,
)
else:
session["password_reset_uid"] = uid
SM = mail.Mailer(app)
SM.send_verification_code_password(
"[email protected]", [email]
)
return render_template(
"login_route.html", step="enter_code", routing_key=routing_key
)
elif step == "got_code":
code = request.form.get("code")
if (
session.get("password_verification_attempts", None) is None
or session.get("password_verification_code", None) is None
):
session.pop("password_verification_attempts", None)
session.pop("password_verification_code", None)
return render_template(
"login_route.html",
step="enter_code",
error_message="Code Invalid",
routing_key=routing_key,
)
if session.get("password_verification_attempts") > 0:
if session.get("password_verification_code") == code:
session.pop("password_verification_code", None)
session.pop("password_verification_attempts", None)
return render_template(
"login_route.html",
step="enter_new_password",
routing_key=routing_key,
)
else:
session["password_verification_attempts"] -= 1
return render_template(
"login_route.html",
step="enter_code",
error_message="Incorrect code",
routing_key=routing_key,
)
else:
return render_template(
"login_route.html",
step="enter_code",
error_message="Too many attempts, code is invalid",
routing_key=routing_key,
)
elif step == "got_new_password":
if session.get("password_reset_uid", None) is None:
return render_template(
"login_route.html",
step="",
error_message="Session expired, please try again",
routing_key=routing_key,
)
p1 = request.form.get("password1")
p2 = request.form.get("password2")
cv = check_valid.CheckValid(p1, p2)
if cv.error_message is None:
encrypted_p = passwords.encrypt_password(p1)
db.reference(f'users/{session["password_reset_uid"]}/password').set(
str(encrypted_p)
)
return render_template(
"login_route.html",
step="",
success_message="Password reset sucessfully!",
routing_key=routing_key,
)
else:
return render_template(
"login_route.html",
step="enter_new_password",
error_message=cv.error_message,
routing_key=routing_key,
)
email = request.form.get("email")
password = request.form.get("password")
cvp = check_valid_password.CheckValidPassword(db, email, password)
if cvp.response == 200:
session["uid"] = cvp.uid
if HOLDER.get(session['uid'], None) is not None:
del HOLDER[session['uid']]
session["first_name"] = cvp.first_name
session["last_name"] = cvp.last_name
session["email"] = cvp.email
profile_img = db.reference(f'users/{session["uid"]}/profile_picture').get()
if profile_img is None:
session["profile_picture"] = "/static/img/default_profile_picture.png"
else:
session["profile_picture"] = profile_img
if routing_key in app.config["VALID_ROUTES"]:
session["allow_routing"] = True
return redirect(url_for("route", routing_key=routing_key))
else:
return redirect(
url_for("home")
) # redirect to home logged in (invalid routing key)
elif cvp.response == 401:
return render_template(
"./login_route.html",
error_message=cvp.error_message,
EMAIL=email,
step="",
routing_key=routing_key,
)
else:
return render_template(
"./login_route.html",
error_message=cvp.error_message,
step="",
routing_key=routing_key,
)
@app.route("/login/<routing_key>")
def login_routing(routing_key):
session.clear()
return render_template("login_route.html", step="", routing_key=routing_key)
@app.route("/route/<routing_key>")
def route(routing_key):
if session.get("allow_routing", False):
session["allow_routing"] = False
return render_template(
"route.html",
routing_key=routing_key,
to_all=app.config["TO_ALL"],
to_tech=app.config["TO_TECH"],
to_clothing=app.config["TO_CLOTHING"],
to_books=app.config["TO_BOOKS"],
to_home_decor=app.config["TO_HOME_DECOR"],
to_lighting=app.config["TO_LIGHTING"],
to_furniture=app.config["TO_FURNITURE"],
to_appliances=app.config["TO_APPLIANCES"],
to_other=app.config["TO_OTHER"],
to_faq=app.config["TO_FAQ"],
to_about=app.config["TO_ABOUT"],
to_contact=app.config["TO_CONTACT"],
to_housing=app.config["TO_HOUSING"],
to_parking=app.config["TO_PARKING"],
to_survey=app.config["TO_SURVEY"],
to_chat=app.config["TO_CHAT"],
to_myitems=app.config["TO_MYITEMS"],
to_cart=app.config["TO_CART"],
to_profile=app.config["TO_PROFILE"],
to_rec = app.config["TO_REC"]
)
return redirect(url_for("landing_page"))
@app.route("/login", methods=["POST"])
def api_login():
step = request.form.get("step", None)
if step is not None:
if step == "enter_email":
return render_template("login.html", step=step)
elif step == "got_email":
email = request.form.get("email")
converted_email = check_user_exists.convert_email(email)
uid = db.reference(f"active/{converted_email}").get()
if uid is None:
return render_template(
"login.html",
step="enter_email",
error_message="email is not associated with any account",
)
else:
session["password_reset_uid"] = uid
SM = mail.Mailer(app)
SM.send_verification_code_password(
"[email protected]", [email]
)
return render_template("login.html", step="enter_code")
elif step == "got_code":
code = request.form.get("code")
if (
session.get("password_verification_attempts", None) is None
or session.get("password_verification_code", None) is None
):
session.pop("password_verification_attempts", None)
session.pop("password_verification_code", None)
return render_template(
"login.html", step="enter_code", error_message="Code Invalid"
)
if session.get("password_verification_attempts") > 0:
if session.get("password_verification_code") == code:
session.pop("password_verification_code", None)
session.pop("password_verification_attempts", None)
return render_template("login.html", step="enter_new_password")
else:
session["password_verification_attempts"] -= 1
return render_template(
"login.html", step="enter_code", error_message="Incorrect code"
)
else:
return render_template(
"login.html",
step="enter_code",
error_message="Too many attempts, code is invalid",
)
elif step == "got_new_password":
if session.get("password_reset_uid", None) is None:
return render_template(
"login.html",
step="",
error_message="Session expired, please try again",
)
p1 = request.form.get("password1")
p2 = request.form.get("password2")
cv = check_valid.CheckValid(p1, p2)
if cv.error_message is None:
encrypted_p = passwords.encrypt_password(p1)
db.reference(f'users/{session["password_reset_uid"]}/password').set(
str(encrypted_p)
)
return render_template(
"login.html", step="", success_message="Password reset sucessfully!"
)
else:
return render_template(
"login.html",
step="enter_new_password",
error_message=cv.error_message,
)
email = request.form.get("email")
password = request.form.get("password")
cvp = check_valid_password.CheckValidPassword(db, email, password)
if cvp.response == 200:
session["uid"] = cvp.uid
if HOLDER.get(session['uid'], None) is not None:
del HOLDER[session['uid']]
session["first_name"] = cvp.first_name
session["last_name"] = cvp.last_name
session["email"] = cvp.email
profile_img = db.reference(f'users/{session["uid"]}/profile_picture').get()
if profile_img is None:
session["profile_picture"] = "/static/img/default_profile_picture.png"
else:
session["profile_picture"] = profile_img
return redirect(url_for("home")) # redirect to home logged in
elif cvp.response == 401:
return render_template(
"./login.html", error_message=cvp.error_message, EMAIL=email, step=""
)
else:
return render_template("./login.html", error_message=cvp.error_message, step="")
@app.route("/login")
def login():
session.clear()
return render_template("./login.html", step="")
@app.route("/delete/account", methods=["POST"])
def delete_account():
uid = session["uid"]
du = delete_user.DeleteUser(db, uid)
if du.response == 200:
session.clear()
return redirect(url_for("landing_page"))
else:
return du.error_message
@app.route("/home")
def home():
try:
return render_template("./home.html", uid=session["uid"])
except KeyError:
return redirect(url_for("landing_page"))
@app.route("/")
def landing_page():
try:
uid = session["uid"]
return redirect(url_for("home"))
except KeyError:
session.clear()
return render_template("./index.html")
@app.route("/contact", methods=["POST"])
def contact_form_response():
email = request.form.get("email")
name = request.form.get("name")
message = request.form.get("message")
SM = mail.Mailer(app)
output = SM.send_contact_form(email, name, message)
if output == 200:
session["from_contact"] = True
return redirect(url_for("contact_us.contact"))
else:
return redirect(url_for("contact_us.contact"))
@app.route("/about")
def about():
logged = session.get("uid", None) is not None
return render_template("./about.html", logged_in=logged)
@socketio.on("connect")
def connect(auth):
try:
for chat_id in session["chat_ids"]:
if chat_id not in rooms_tracker_chat:
leave_room(chat_id)
return
join_room(chat_id)
rooms_tracker_chat[chat_id]["count"] += 1
except KeyError:
return
@socketio.on("disconnect")
def disconnect():
try:
to_remove = []
for chat_id in session["chat_ids"]:
leave_room(chat_id)
if chat_id in rooms_tracker_chat:
rooms_tracker_chat[chat_id]["count"] -= 1
if rooms_tracker_chat[chat_id]["count"] <= 0:
"""
update db with messages
"""
ref = db.reference(f"chats/{chat_id}/messages")
for MESSAGE in rooms_tracker_chat[chat_id]["new_messages"]:
ref.push(MESSAGE)
if (
rooms_tracker_chat[chat_id]["rts"] is not None
and rooms_tracker_chat[chat_id]["rm"] is not None
):
user1 = db.reference(f"chats/{chat_id}/user1").get()
db.reference(f"users/{user1}/chats/{chat_id}").update(
{
"timestamp": rooms_tracker_chat[chat_id]["rts"],
"message": rooms_tracker_chat[chat_id]["rm"],
"read": rooms_tracker_chat[chat_id][user1],
}
)
user2 = db.reference(f"chats/{chat_id}/user2").get()
db.reference(f"users/{user2}/chats/{chat_id}").update(
{
"timestamp": rooms_tracker_chat[chat_id]["rts"],
"message": rooms_tracker_chat[chat_id]["rm"],
"read": rooms_tracker_chat[chat_id][user2],
}
)
if not rooms_tracker_chat[chat_id][user2] and len(rooms_tracker_chat[chat_id]["new_messages"]) > 0:
MASTER_MAILER = mail.Mailer(app)
user1_info = db.reference(f"users/{user1}").get()
user2_info = db.reference(f"users/{user2}").get()
receiver_name = user2_info['first_name']
sender_name = user1_info['first_name']+" "+user1_info['last_name'][0].upper()+"."
receiver_email = user2_info['email']
rec_message = rooms_tracker_chat[chat_id]["rm"]
MASTER_MAILER.send_email_notification(sender_name, receiver_name, receiver_email, rec_message)
elif not rooms_tracker_chat[chat_id][user1] and len(rooms_tracker_chat[chat_id]["new_messages"]) > 0:
MASTER_MAILER = mail.Mailer(app)
user1_info = db.reference(f"users/{user1}").get()
user2_info = db.reference(f"users/{user2}").get()
receiver_name = user1_info['first_name']
sender_name = user2_info['first_name']+" "+user2_info['last_name'][0].upper()+"."
receiver_email = user1_info['email']
rec_message = rooms_tracker_chat[chat_id]["rm"]
MASTER_MAILER.send_email_notification(sender_name, receiver_name, receiver_email, rec_message)
del rooms_tracker_chat[chat_id]
to_remove.append(chat_id)
for chat_id in to_remove:
session["chat_ids"].remove(chat_id)
if len(session["chat_ids"]) == 0:
del session["chat_ids"]
except KeyError:
return
@socketio.on("message")
def message(data):
current = data["chat_id"]
sender_id = data["sender_id"]
if current not in rooms_tracker_chat:
return
content = {
"uid": session["uid"],
"message": data["data"],
"timestamp": time.time(),
"chat_id": current,
}
send(content, to=current)
room = rooms_tracker_chat[current]
room["new_messages"].append(content)
room["rts"] = content["timestamp"]
room["rm"] = content["message"]
room[sender_id] = True
if room["count"] == 1:
other_id = None
for key in room:
if key not in room_tracker_KEYS and key != session["uid"]:
other_id = key
room[other_id] = False
if __name__ == "__main__":
socketio.run(app, allow_unsafe_werkzeug=True)