forked from utsavll0/calorieApp_server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
application.py
1142 lines (1005 loc) · 43.2 KB
/
application.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
from datetime import datetime, timedelta
import credentials as c
import bcrypt
import smtplib
import re
# from apps import App
from flask import json
# from utilities import Utilities
from flask import render_template, session, url_for, flash, redirect, request, Flask, jsonify
from flask_mail import Mail
from flask_pymongo import PyMongo
from tabulate import tabulate
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from forms import HistoryForm, RegistrationForm, LoginForm, CalorieForm, UserProfileForm, EnrollForm, WorkoutForm
import openai
import os
import utilities as u
import time
# Set the OpenAI API key
openai.api_key = c.openAI_api_key
# Define the name of the bot
name = 'BOT'
# Define the role of the bot
role = 'fitness-advisor, dietician and nutritionist'
# Define the impersonated role with instructions
impersonated_role = f"""
From now on, you are going to act as {name}. Your role is {role}.
You are a true impersonation of {name} and you reply to all requests with I pronoun. You never give unknown information.
Forward them to the website for more information.
YOU ARE NOT AN AI MODEL!
"""
# Initialize variables for chat history
explicit_input = ""
chatgpt_output = 'Chat log: /n'
cwd = os.getcwd() + '/chat_history/'
i = 1
# Find an available chat history file
while os.path.exists(os.path.join(cwd, f'chat_history{i}.txt')):
i += 1
history_file = os.path.join(cwd, f'chat_history{i}.txt')
# Create a new chat history file
with open(history_file, 'w') as f:
f.write('\n')
# Initialize chat history
chat_history = ''
app = Flask(__name__)
app.secret_key = 'secret'
app.config['MONGO_URI'] = 'mongodb://127.0.0.1:27017/test'
app.config['MONGO_CONNECT'] = False
mongo = PyMongo(app)
app.config['MAIL_SERVER'] = 'smtp.gmail.com'
app.config['MAIL_PORT'] = 465
app.config['MAIL_USE_SSL'] = True
app.config['MAIL_USERNAME'] = "bogusdummy123@gmail.com"
app.config['MAIL_PASSWORD'] = "helloworld123!"
mail = Mail(app)
@app.route("/")
@app.route("/home")
def home():
"""
home() function displays the homepage of our website.
route "/home" will redirect to home() function.
input: The function takes session as the input
Output: Out function will redirect to the login page
"""
if session.get('email'):
return redirect(url_for('dashboard'))
else:
return redirect(url_for('login'))
@app.route("/login", methods=['GET', 'POST'])
def login():
""""
login() function displays the Login form (login.html) template
route "/login" will redirect to login() function.
LoginForm() called and if the form is submitted then various values are fetched and verified from the database entries
Input: Email, Password, Login Type
Output: Account Authentication and redirecting to Dashboard
"""
if not session.get('email'):
form = LoginForm()
if form.validate_on_submit():
temp = mongo.db.user.find_one({'email': form.email.data},
{'email', 'pwd'})
if temp is not None and temp['email'] == form.email.data and (
bcrypt.checkpw(form.password.data.encode("utf-8"),
temp['pwd'])
or temp['pwd'] == form.password.data):
flash('You have been logged in!', 'success')
session['email'] = temp['email']
#session['login_type'] = form.type.data
return redirect(url_for('dashboard'))
else:
flash('Login Unsuccessful. Please check username and password',
'danger')
else:
return redirect(url_for('home'))
return render_template('login.html', title='Login', form=form)
@app.route("/logout", methods=['GET', 'POST'])
def logout():
"""
logout() function just clears out the session and returns success
route "/logout" will redirect to logout() function.
Output: session clear
"""
session.clear()
return "success"
@app.route("/register", methods=['GET', 'POST'])
def register():
"""
register() function displays the Registration portal (register.html) template
route "/register" will redirect to register() function.
RegistrationForm() called and if the form is submitted then various values are fetched and updated into database
Input: Username, Email, Password, Confirm Password, cuurent height, current weight, target weight, target date
Output: Value update in database and redirected to dashboard
"""
if not session.get('email'):
form = RegistrationForm()
if form.validate_on_submit():
if request.method == 'POST':
username = request.form.get('username')
email = request.form.get('email')
password = request.form.get('password')
weight = request.form.get('weight')
height = request.form.get('height')
target_weight = request.form.get('target_weight')
target_date = request.form.get('target_date')
now = datetime.now()
now = now.strftime('%Y-%m-%d')
mongo.db.user.insert_one({
'name':
username,
'email':
email,
'pwd':
bcrypt.hashpw(password.encode("utf-8"), bcrypt.gensalt()),
'weight':
weight,
'height':
height,
'target_weight':
target_weight,
'start_date':
now,
'target_date':
target_date
})
flash(f'Account created for {form.username.data}!', 'success')
session['email'] = email
return redirect(url_for('dashboard'))
else:
return redirect(url_for('home'))
return render_template('register.html', title='Register', form=form)
@app.route("/user_profile", methods=['GET', 'POST'])
def user_profile():
"""
user_profile() function displays the UserProfileForm (user_profile.html) template
route "/user_profile" will redirect to user_profile() function.
user_profile() called and if the form is submitted then various values are fetched and updated into the database entries
Input: Email, height, weight, goal, Target weight
Output: Value update in database and redirected to home login page
"""
if session.get('email'):
curr_profile = list(mongo.db.user.find({'email':
session.get('email')}))
# print(curr_profile)
form = UserProfileForm()
if form.validate_on_submit():
if request.method == 'POST':
email = session.get('email')
new_weight = request.form.get('weight')
new_height = request.form.get('height')
new_goal = request.form.get('goal')
new_target_weight = request.form.get('target_weight')
mongo.db.user.update_one({'email': email}, {
'$set': {
'weight': new_weight,
'height': new_height,
'goal': new_goal,
'target_weight': new_target_weight
}
})
flash(f'User Profile Updated', 'success')
return render_template('display_profile.html',
status=True,
form=form)
else:
return redirect(url_for('login'))
return render_template('user_profile.html',
status=True,
form=form,
curr_profile=curr_profile)
@app.route("/calories", methods=['GET', 'POST'])
def calories():
"""
calorie() function displays the Calorieform (calories.html) template
route "/calories" will redirect to calories() function.
CalorieForm() called and if the form is submitted then various values are fetched and updated into the database entries
Input: Email, date, food, burnout
Output: Value update in database and redirected to the home page
"""
get_session = session.get('email')
# print(get_session)
if get_session is not None:
form = CalorieForm()
if form.validate_on_submit():
email = session.get('email')
date = form.date.data.strftime(
'%Y-%m-%d') # Get the selected date from the form
food = form.food.data
match = re.search(r'\((\d+)\)', food)
if match:
cals = int(match.group(1))
else:
cals = 0
mongo.db.calories.insert_one({
'date': date,
'email': email,
'calories': cals
})
flash('Successfully updated the data', 'success')
return redirect(url_for('calories'))
else:
return redirect(url_for('home'))
return render_template('calories.html',
form=form,
time=datetime.now().strftime('%Y-%m-%d'))
@app.route("/workout", methods=['GET', 'POST'])
def workout():
now = datetime.now()
now = now.strftime('%Y-%m-%d')
get_session = session.get('email')
if get_session is not None:
form = WorkoutForm()
if form.validate_on_submit():
email = session.get('email')
burnout = form.burnout.data
# print(burnout)
mongo.db.workout.insert_one({
'date':
form.date.data.strftime(
'%Y-%m-%d'), # Get the selected date from the form
'email':
email,
'burnout':
burnout
})
flash('Successfully updated the data', 'success')
return redirect(url_for('workout'))
else:
return redirect(url_for('home'))
return render_template('workout.html', form=form, time=now)
@app.route("/history", methods=['GET'])
def history():
# ############################
# history() function displays the Historyform (history.html) template
# route "/history" will redirect to history() function.
# HistoryForm() called and if the form is submitted then various values are fetched and update into the database entries
# Input: Email, date
# Output: Value fetched and displayed
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = HistoryForm()
# Find out the last 7 day's calories burnt by the user
calorie_day_map = {}
entries_cal, entries_workout = u.get_entries_for_email(
mongo.db, email,
(datetime.today() - timedelta(days=7)).strftime('%Y-%m-%d'),
datetime.today().strftime('%Y-%m-%d'))
# print(entries)
for entry in entries_cal:
if entry['_id'] == 'Other':
continue
net_calories = int(entry['calories'])
curr_date = entry['date']
if (curr_date not in calorie_day_map):
calorie_day_map[curr_date] = net_calories
else:
calorie_day_map[curr_date] += net_calories
for entry in entries_workout:
if entry['_id'] == 'Other':
continue
net_calories = -int(entry['burnout'])
curr_date = entry['date']
if (curr_date not in calorie_day_map):
calorie_day_map[curr_date] = net_calories
else:
calorie_day_map[curr_date] += net_calories
calorie_day_map = dict(sorted(calorie_day_map.items()))
labels = list(calorie_day_map.keys())
values = list(calorie_day_map.values())
for i in range(len(values)):
values[i] = str(values[i])
# The first day when the user registered or started using the app
user_start_date = mongo.db.user.find({'email': email})[0]['start_date']
user_target_date = mongo.db.user.find({'email': email})[0]['target_date']
target_weight = mongo.db.user.find({'email': email})[0]['target_weight']
current_weight = mongo.db.user.find({'email': email})[0]['weight']
# print(current_weight, target_weight, type(user_start_date), datetime.today().strftime('%Y-%m-%d'))
# Find out the actual calories which user needed to burn/gain to achieve goal from the start day
target_calories_to_burn = u.total_calories_to_burn(
target_weight=int(target_weight), current_weight=int(current_weight))
# print(f'########## {target_calories_to_burn}')
# Find out how many calories user has gained or burnt uptill now
query = {
'email': email,
'date': {
'$gte': user_start_date,
'$lte': datetime.today().strftime('%Y-%m-%d')
}
}
entries_till_today_cal = mongo.db.calories.find(query)
entries_till_today_workout = mongo.db.workout.find(query)
current_calories = 0
for entry in entries_till_today_cal:
if entry['_id'] == 'Other':
continue
net_calories = int(entry['calories'])
current_calories += net_calories
for entry in entries_till_today_workout:
if entry['_id'] == 'Other':
continue
net_calories = -int(entry['burnout'])
current_calories += net_calories
# Find out no of calories user has to burn/gain in future per day
calories_to_burn = u.calories_to_burn(
target_calories_to_burn,
current_calories,
target_date=datetime.strptime(user_target_date, '%Y-%m-%d'),
start_date=datetime.strptime(user_start_date, '%Y-%m-%d'))
return render_template('history.html',
form=form,
labels=labels,
values=values,
burn_rate=calories_to_burn,
target_date=user_target_date)
@app.route("/ajaxhistory", methods=['POST'])
def ajaxhistory():
# ############################
# ajaxhistory() is a POST function displays the fetches the various information from database
# route "/ajaxhistory" will redirect to ajaxhistory() function.
# Details corresponding to given email address are fetched from the database entries
# Input: Email, date
# Output: date, email, calories, burnout
# ##########################
email = get_session = session.get('email')
# print(email)
if get_session is not None:
if request.method == "POST":
date = request.form.get('date')
res = mongo.db.calories.find_one({
'email': email,
'date': date
}, {'date', 'email', 'calories', 'burnout'})
if res:
return json.dumps({
'date': res['date'],
'email': res['email'],
'burnout': res['burnout'],
'calories': res['calories']
}), 200, {
'ContentType': 'application/json'
}
else:
return json.dumps({
'date': "",
'email': "",
'burnout': "",
'calories': ""
}), 200, {
'ContentType': 'application/json'
}
@app.route("/friends", methods=['GET'])
def friends():
# ############################
# friends() function displays the list of friends corrsponding to given email
# route "/friends" will redirect to friends() function which redirects to friends.html page.
# friends() function will show a list of "My friends", "Add Friends" functionality, "send Request" and Pending Approvals" functionality
# Details corresponding to given email address are fetched from the database entries
# Input: Email
# Output: My friends, Pending Approvals, Sent Requests and Add new friends
# ##########################
email = session.get('email')
myFriends = list(
mongo.db.friends.find({
'sender': email,
'accept': True
}, {'sender', 'receiver', 'accept'}))
myFriendsList = list()
for f in myFriends:
myFriendsList.append(f['receiver'])
# print(myFriends)
allUsers = list(mongo.db.user.find({}, {'name', 'email'}))
pendingRequests = list(
mongo.db.friends.find({
'sender': email,
'accept': False
}, {'sender', 'receiver', 'accept'}))
pendingReceivers = list()
for p in pendingRequests:
pendingReceivers.append(p['receiver'])
pendingApproves = list()
pendingApprovals = list(
mongo.db.friends.find({
'receiver': email,
'accept': False
}, {'sender', 'receiver', 'accept'}))
for p in pendingApprovals:
pendingApproves.append(p['sender'])
# print(pendingApproves)
# print(pendingRequests)
return render_template('friends.html',
allUsers=allUsers,
pendingRequests=pendingRequests,
active=email,
pendingReceivers=pendingReceivers,
pendingApproves=pendingApproves,
myFriends=myFriends,
myFriendsList=myFriendsList)
@app.route('/bmi_calc', methods=['GET', 'POST'])
def bmi_calci():
bmi = ''
bmi_category = ''
if request.method == 'POST' and 'weight' in request.form:
weight = float(request.form.get('weight'))
height = float(request.form.get('height'))
bmi = u.calc_bmi(weight, height)
bmi_category = u.get_bmi_category(bmi)
return render_template("bmi_cal.html", bmi=bmi, bmi_category=bmi_category)
@app.route('/plans', methods=['GET', 'POST'])
def plans():
if (session.get('email')):
email = get_session = session.get('email')
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
# The first day when the user registered or started using the app
user_start_date = mongo.db.user.find({'email': email})[0]['start_date']
target_weight = mongo.db.user.find({'email':
email})[0]['target_weight']
current_weight = mongo.db.user.find({'email': email})[0]['weight']
# Find out the actual calories which user needed to burn/gain to achieve goal from the start day
target_calories_to_burn = u.total_calories_to_burn(
target_weight=int(target_weight),
current_weight=int(current_weight))
# print(f'########## {target_calories_to_burn}')
# Find out how many calories user has gained or burnt uptill now
query = {
'email': email,
'date': {
'$gte': user_start_date,
'$lte': datetime.today().strftime('%Y-%m-%d')
}
}
entries_till_today_cal = mongo.db.calories.find(query)
entries_till_today_workout = mongo.db.workout.find(query)
current_calories = 0
for entry in entries_till_today_cal:
if entry['_id'] == 'Other':
continue
net_calories = int(entry['calories'])
current_calories += net_calories
for entry in entries_till_today_workout:
if entry['_id'] == 'Other':
continue
net_calories = -int(entry['burnout'])
current_calories += net_calories
progress_percentage = int(
abs((current_calories / (target_calories_to_burn + 10000)) * 1000))
print(progress_percentage)
return render_template("plans.html",
enrolled_plans=enrolled_plans,
progress_percentage=progress_percentage)
@app.route('/chatbot', methods=['GET', 'POST'])
def chatbot():
return render_template("chatbot.html")
@app.route("/get", methods=['GET', 'POST'])
# Function for the bot response
def get_bot_response():
userText = request.args.get('msg')
return str(
u.get_response(chat_history, name, chatgpt_output, userText,
history_file, impersonated_role, explicit_input))
@app.route('/refresh', methods=['GET', 'POST'])
def refresh():
time.sleep(600) # Wait for 10 minutes
return redirect('/refresh')
@app.route("/send_email", methods=['GET', 'POST'])
def send_email():
'''
send_email() function shares Calorie History with friend's email
route "/send_email" will redirect to send_email() function which redirects to friends.html page.
Input: Email
Output: Latest Week Calorie History received on specified email
''' # ##########################'''
email = session.get('email')
data = list(
mongo.db.calories.find({'email': email},
{'date', 'email', 'calories'}))
workout_data = list(
mongo.db.workout.find({'email': email}, {'date', 'email', 'burnout'}))
print(data, workout_data)
one_week_ago = datetime.now() - timedelta(days=7)
filtered_data = [
a for a in data
if datetime.strptime(a['date'], '%Y-%m-%d') >= one_week_ago
]
filtered_workout_data = [
a for a in workout_data
if datetime.strptime(a['date'], '%Y-%m-%d') >= one_week_ago
]
table = [['Date', 'Email ID', 'Calories']]
for a in filtered_data:
tmp = [a['date'], a['email'], a['calories']]
table.append(tmp)
for a in filtered_workout_data:
tmp = [a['date'], a['email'], int(a['burnout']) * (-1)]
table.append(tmp)
friend_email = str(request.form.get('share')).strip()
friend_email = str(friend_email).split(',')
server = smtplib.SMTP_SSL("smtp.gmail.com", 465)
#Storing sender's email address and password
sender_email = "calorieapp508@gmail.com"
sender_password = c.email_password
sharing_email = table[1][1]
positive_calories = [row for row in table[1:] if int(row[2]) > 0]
negative_calories = [row for row in table[1:] if int(row[2]) < 0]
net_calories = sum(int(row[2]) for row in table[1:])
html_table = """
<html>
<head></head>
<body>
<p>Your friend with email {} wants to share their past week's calorie history with you!</p>
<!-- Positive Calories Table -->
<h3>Calories Gained</h3>
<table style="font-family: Arial, sans-serif; border-collapse: collapse; width: 100%; max-width: 600px;">
<tr style="background-color: #f2f2f2;">
<th style="border: 1px solid #dddddd; text-align: left; padding: 8px;">Date</th>
<th style="border: 1px solid #dddddd; text-align: left; padding: 8px;">Calories</th>
</tr>
{}
</table>
<!-- Negative Calories Table -->
<h3>Calories Lost</h3>
<table style="font-family: Arial, sans-serif; border-collapse: collapse; width: 100%; max-width: 600px;">
<tr style="background-color: #f2f2f2;">
<th style="border: 1px solid #dddddd; text-align: left; padding: 8px;">Date</th>
<th style="border: 1px solid #dddddd; text-align: left; padding: 8px;">Calories</th>
</tr>
{}
</table>
<!-- Net Calories -->
<h3>Net Calories: {}</h3>
</body>
</html>
"""
positive_rows = ""
for row in positive_calories:
positive_rows += "<tr>"
for item in [row[0]] + [row[2]]:
positive_rows += "<td style='border: 1px solid #dddddd; text-align: left; padding: 8px;'>{}</td>".format(
item)
positive_rows += "</tr>"
negative_rows = ""
for row in negative_calories:
negative_rows += "<tr>"
for item in [row[0]] + [row[2]]:
negative_rows += "<td style='border: 1px solid #dddddd; text-align: left; padding: 8px;'>{}</td>".format(
item)
negative_rows += "</tr>"
formatted_html = html_table.format(sharing_email, positive_rows,
negative_rows, net_calories)
#Logging in with sender details
server.login(sender_email, sender_password)
message = MIMEMultipart()
message["Subject"] = "Calorie History"
message["From"] = sender_email
html_content = MIMEText(formatted_html, "html")
message.attach(html_content)
for e in friend_email:
print(e)
server.sendmail(sender_email, e, message.as_string())
server.quit()
myFriends = list(
mongo.db.friends.find({
'sender': email,
'accept': True
}, {'sender', 'receiver', 'accept'}))
myFriendsList = list()
for f in myFriends:
myFriendsList.append(f['receiver'])
allUsers = list(mongo.db.user.find({}, {'name', 'email'}))
pendingRequests = list(
mongo.db.friends.find({
'sender': email,
'accept': False
}, {'sender', 'receiver', 'accept'}))
pendingReceivers = list()
for p in pendingRequests:
pendingReceivers.append(p['receiver'])
pendingApproves = list()
pendingApprovals = list(
mongo.db.friends.find({
'receiver': email,
'accept': False
}, {'sender', 'receiver', 'accept'}))
for p in pendingApprovals:
pendingApproves.append(p['sender'])
return render_template('friends.html',
allUsers=allUsers,
pendingRequests=pendingRequests,
active=email,
pendingReceivers=pendingReceivers,
pendingApproves=pendingApproves,
myFriends=myFriends,
myFriendsList=myFriendsList)
@app.route("/ajaxsendrequest", methods=['POST'])
def ajaxsendrequest():
# ############################
# ajaxsendrequest() is a function that updates friend request information into database
# route "/ajaxsendrequest" will redirect to ajaxsendrequest() function.
# Details corresponding to given email address are fetched from the database entries and send request details updated
# Input: Email, receiver
# Output: DB entry of receiver info into database and return TRUE if success and FALSE otherwise
# ##########################
email = get_session = session.get('email')
if get_session is not None:
receiver = request.form.get('receiver')
res = mongo.db.friends.insert_one({
'sender': email,
'receiver': receiver,
'accept': False
})
if res:
return json.dumps({'status': True}), 200, {
'ContentType': 'application/json'
}
return json.dumps({'status': False}), 500, {
'ContentType:': 'application/json'
}
@app.route("/ajaxcancelrequest", methods=['POST'])
def ajaxcancelrequest():
# ############################
# ajaxcancelrequest() is a function that updates friend request information into database
# route "/ajaxcancelrequest" will redirect to ajaxcancelrequest() function.
# Details corresponding to given email address are fetched from the database entries and cancel request details updated
# Input: Email, receiver
# Output: DB deletion of receiver info into database and return TRUE if success and FALSE otherwise
# ##########################
email = get_session = session.get('email')
if get_session is not None:
receiver = request.form.get('receiver')
res = mongo.db.friends.delete_one({
'sender': email,
'receiver': receiver
})
if res:
return json.dumps({'status': True}), 200, {
'ContentType': 'application/json'
}
return json.dumps({'status': False}), 500, {
'ContentType:': 'application/json'
}
@app.route("/ajaxapproverequest", methods=['POST'])
def ajaxapproverequest():
# ############################
# ajaxapproverequest() is a function that updates friend request information into database
# route "/ajaxapproverequest" will redirect to ajaxapproverequest() function.
# Details corresponding to given email address are fetched from the database entries and approve request details updated
# Input: Email, receiver
# Output: DB updation of accept as TRUE info into database and return TRUE if success and FALSE otherwise
# ##########################
email = get_session = session.get('email')
if get_session is not None:
receiver = request.form.get('receiver')
print(email, receiver)
res = mongo.db.friends.update_one(
{
'sender': receiver,
'receiver': email
},
{"$set": {
'sender': receiver,
'receiver': email,
'accept': True
}})
mongo.db.friends.insert_one({
'sender': email,
'receiver': receiver,
'accept': True
})
if res:
return json.dumps({'status': True}), 200, {
'ContentType': 'application/json'
}
return json.dumps({'status': False}), 500, {
'ContentType:': 'application/json'
}
@app.route("/dashboard", methods=['GET', 'POST'])
def dashboard():
# ############################
# dashboard() function displays the dashboard.html template
# route "/dashboard" will redirect to dashboard() function.
# dashboard() called and displays the list of activities
# Output: redirected to dashboard.html
# ##########################
return render_template('dashboard.html', title='Dashboard')
@app.route("/yoga", methods=['GET', 'POST'])
def yoga():
# ############################
# yoga() function displays the yoga.html template
# route "/yoga" will redirect to yoga() function.
# A page showing details about yoga is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "yoga"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')
return render_template('new_dashboard.html',
form=form,
enrolled_plans=enrolled_plans)
# return redirect(url_for('dashboard'))
else:
return redirect(url_for('dashboard'))
return render_template('yoga.html', title='Yoga', form=form)
@app.route("/swim", methods=['GET', 'POST'])
def swim():
# ############################
# swim() function displays the swim.html template
# route "/swim" will redirect to swim() function.
# A page showing details about swimming is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "swimming"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')
return render_template('new_dashboard.html',
form=form,
enrolled_plans=enrolled_plans)
# return redirect(url_for('dashboard'))
else:
return redirect(url_for('dashboard'))
return render_template('swim.html', title='Swim', form=form)
@app.route("/abbs", methods=['GET', 'POST'])
def abbs():
# ############################
# abbs() function displays the abbs.html template
# route "/abbs" will redirect to abbs() function.
# A page showing details about abbs workout is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "abbs"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')
return render_template('new_dashboard.html',
form=form,
enrolled_plans=enrolled_plans)
else:
return redirect(url_for('dashboard'))
return render_template('abbs.html', title='Abbs Smash!', form=form)
@app.route("/belly", methods=['GET', 'POST'])
def belly():
# ############################
# belly() function displays the belly.html template
# route "/belly" will redirect to belly() function.
# A page showing details about belly workout is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "belly"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')
return render_template('new_dashboard.html',
form=form,
enrolled_plans=enrolled_plans)
# return redirect(url_for('dashboard'))
else:
return redirect(url_for('dashboard'))
return render_template('belly.html', title='Belly Burner', form=form)
@app.route("/core", methods=['GET', 'POST'])
def core():
# ############################
# core() function displays the belly.html template
# route "/core" will redirect to core() function.
# A page showing details about core workout is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "core"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')
return render_template('new_dashboard.html',
form=form,
enrolled_plans=enrolled_plans)
else:
return redirect(url_for('dashboard'))
return render_template('core.html', title='Core Conditioning', form=form)
@app.route("/gym", methods=['GET', 'POST'])
def gym():
# ############################
# gym() function displays the gym.html template
# route "/gym" will redirect to gym() function.
# A page showing details about gym plan is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "gym"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')
return render_template('new_dashboard.html',
form=form,
enrolled_plans=enrolled_plans)
# return redirect(url_for('dashboard'))
else:
return redirect(url_for('dashboard'))
return render_template('gym.html', title='Gym', form=form)
@app.route("/walk", methods=['GET', 'POST'])
def walk():
# ############################
# walk() function displays the walk.html template
# route "/walk" will redirect to walk() function.
# A page showing details about walk plan is shown and if clicked on enroll then DB updation done and redirected to new_dashboard
# Input: Email
# Output: DB entry about enrollment and redirected to new dashboard
# ##########################
email = get_session = session.get('email')
if get_session is not None:
form = EnrollForm()
if form.validate_on_submit():
if request.method == 'POST':
enroll = "walk"
mongo.db.plans.insert_one({'Email': email, 'Status': enroll})
enrolled_plans = list(mongo.db.plans.find({'Email': email}))
flash(f' You have succesfully enrolled in our {enroll} plan!',
'success')