-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.py
389 lines (244 loc) · 8.79 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
from flask import Flask,render_template,session,url_for,request,redirect
from flask_pymongo import PyMongo
from flask_bcrypt import Bcrypt
from flask import jsonify,json
import os
import gspread
from oauth2client.service_account import ServiceAccountCredentials
import pprint
import datetime
import argparse
import pickle
app = Flask(__name__)
app.config['MONGO_DBNAME'] = 'sec_b'
app.config['MONGO_URI'] = 'mongodb://attendance:attendance123@ds041178.mlab.com:41178/sec_b'
# mongodb://<dbuser>:<dbpassword>@ds041178.mlab.com:41178/sec_b
# app.config['MONGO_DBNAME'] = 'sem5_db'
# app.config['MONGO_URI'] = 'mongodb://localhost:27017/sem5_db'
mongo = PyMongo(app)
bcrypt = Bcrypt(app)
@app.route('/')
def index_main():
return redirect(url_for('index',message="true"))
@app.route('/index')
def index():
# session.pop('usernameF', None)
# session.pop('usernameS', None)
if 'usernameF' in session:
print(session['usernameF'] +"oo")
return redirect(url_for('faculty_login'))
if 'usernameS' in session:
print(session['usernameS'])
return redirect(url_for('student_login'))
message="true"
message = request.args['message']
return render_template('index.html',message=message)
@app.route('/student_login', methods = ['POST','GET'])
def student_login():
print(session.get('usernameS'))
if session.get('usernameS'):
students = mongo.db.students
login_user = students.find_one(
# "$and":[
{
"ID" : session.get('usernameS')
}
# ]
)
courses = login_user['courses']
courses1 = mongo.db.courses
obj = courses1.find_one(
# "$and":[
{
"courses" : courses[0]
}
# ]
)
print(obj )
link=obj['link']
print(link +"www")
session['selected_course']=courses[0]
return render_template('view_attendance.html',courses=courses,link=link,x="Student",user=login_user['ID'])
if request.method == 'POST':
username = request.form['usernameS']
pwd = request.form['pwdS']
print(username)
print(pwd)
#password = bcrypt.generate_password_hash(request.form['pwd']).decode('utf-8')
#print(password)
students = mongo.db.students
login_user = students.find_one(
# "$and":[
{
"ID" : username
}
# ]
)
print(login_user)
if login_user:
password = login_user['password']
if bcrypt.check_password_hash( password , pwd ):
print("eee")
session['usernameS'] = username
courses = login_user['courses']
courses1 = mongo.db.courses
obj = courses1.find_one(
# "$and":[
{
"courses" : courses[0]
}
# ]
)
print(obj )
link=obj['link']
print(link +"www")
session['selected_course']=courses[0]
return render_template('view_attendance.html',courses=courses,link=link,x="Student",user=login_user['ID'])
# return redirect(url_for('index'))
return redirect(url_for('index',message = "wrong"))
#return render_template('view_attendance.html',courses=['r'])
####################################################################################
@app.route('/faculty_login', methods = ['POST','GET'])
def faculty_login():
print(session.get('usernameF'))
if session.get('usernameF'):
professors = mongo.db.professor
login_user = professors.find_one(
# "$and":[
{
"ID" : session.get('usernameF')
}
# ]
)
courses = login_user['courses']
courses1 = mongo.db.courses
obj = courses1.find_one(
# "$and":[
{
"courses" : courses[0]
}
# ]
)
print(obj )
link=obj['link']
print(link +"www")
session['selected_course']=courses[0]
return render_template('mark_attendance.html',courses=courses,link=link,x="Faculty",user=login_user['ID'])
if request.method == 'POST':
username = request.form['usernameF']
pwd = request.form['pwdF']
print(username)
print(pwd)
#password = bcrypt.generate_password_hash(request.form['pwd']).decode('utf-8')
#print(password)
professors = mongo.db.professor
login_user = professors.find_one(
# "$and":[
{
"ID" : username
}
# ]
)
print(login_user)
if login_user:
password = login_user['password']
if bcrypt.check_password_hash( password , pwd ):
print("eee")
session['usernameF'] = username
courses = login_user['courses']
courses1 = mongo.db.courses
obj = courses1.find_one(
# "$and":[
{
"courses" : courses[0]
}
# ]
)
print(obj )
link=obj['link']
print(link +"www")
session['selected_course']=courses[0]
return render_template('mark_attendance.html',courses=courses,link=link,x="Faculty",user=login_user['ID'])
#return redirect(url_for('index'))
return redirect(url_for('index',message = "wrong"))
#return render_template('mark_attendance.html',courses=['l'])
@app.route('/getlink', methods=['POST','GET'])
def getlink():
if request.method == 'GET':
selected_course=request.args["selected_course"]
session['selected_course']=selected_course
print(selected_course +"select")
courses = mongo.db.courses
obj = courses.find_one(
# "$and":[
{
"courses" : selected_course
}
# ]
)
print(obj)
link=obj['link']
print(link)
obj={
'courses':selected_course,
'link':link
}
return jsonify(obj)
return 0
@app.route('/start_attendance',methods=['GET','POST'])
def start_attendance():
if request.method=='POST':
x=request.form['x']
selected = request.form['selected_course']
print(selected +"yyyyyy")
print(x+"iiiiiii")
import subprocess as s
s.call("python face-rec-notebook.py --course " +selected,shell=True)
return "start"
'''
today = datetime.date.today()
formatted_date = today.strftime("%m-%d-%Y")
print(formatted_date)
present_students = open('../present.pickle','rb')
students = pickle.load(present_students)
present_students.close()
scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']
creds = ServiceAccountCredentials.from_json_keyfile_name('../client_secret.json', scope)
client = gspread.authorize(creds)
# sheet = client.open('face-attendance').sheet1
# if type(session['usernameS'])!=None:
# sheet = client.open(session['usernameS']).sheet1
# if type(session['usernameF'])!=None:
sheet = client.open('vijayk').sheet1
result = sheet.get_all_records()
# before attendance
pp = pprint.PrettyPrinter()
pp.pprint(result)
# date-> col
date_col_list = sheet.findall(formatted_date)
date_col = date_col_list[0].col
print(date_col)
#roll_no_list ->row
for student in students:
cell_list = sheet.findall(student)
for cell in cell_list:
roll_number_row = cell.row
sheet.update_cell(roll_number_row,date_col,'P')
#Show sheet
result = sheet.get_all_records()
pp.pprint(result)
'''
@app.route('/stop_attendance')
def stop_attendance():
import cv2
cv2.destroyAllWindows()
return "stop"
@app.route('/logout')
def logout():
# remove the username from the session if it is there
session.pop('usernameF', None)
session.pop('usernameS', None)
return redirect(url_for('index',message="true"))
if __name__ == '__main__':
app.secret_key='secret'
app.run(debug=True)