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
|
from django.shortcuts import render, redirect
from django.http import Http404, HttpResponse
from django.contrib.auth.decorators import login_required
from django.views.decorators.csrf import csrf_exempt
from django.db.models import Count
from django.db import connection
from django.core.exceptions import ObjectDoesNotExist
from sbhs_server.tables.models import Board, Booking, Slot, Experiment, Account, Webcam
from sbhs_server import settings, sbhs
# from sbhs_server import switch_on, switch_off
import class_based_automated_slot_booking
import subprocess, json, serial, os, datetime, requests, zipfile
import sys, inspect
import time
# Create your views here.
from time import gmtime, strftime
import random
import MySQLdb
import datetime
from sbhs_server import credentials as credentials
currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
parentdir = os.path.dirname(currentdir)
sys.path.insert(0,parentdir)
import switch_onn, switch_off#, check_future_slots
# ser.close()
ser = serial.Serial('/dev/ttyACM0')
def checkadmin(req):
""" Checks for valid admin
Raises Http error if:
Requested user is not admin.
Input: s: request object.
Output: HttpResponse
"""
if not req.user.is_admin:
raise Http404
@login_required(redirect_field_name=None)
def index(req):
checkadmin(req)
boards = Board.objects.order_by('-online').all()
allotment_mode = "Random" if Board.can_do_random_allotment() else "Workshop"
return render(req, 'admin/index.html', {"boards": boards, "allotment_mode": allotment_mode})
@login_required(redirect_field_name=None)
def toggle_allotment_mode(req):
checkadmin(req)
Board.toggle_random_allotment()
return redirect(index)
@login_required(redirect_field_name=None)
def booking_index(req):
checkadmin(req)
bookings = Booking.objects.order_by('-booking_date','-slot_id').filter(trashed_at__isnull=True).select_related()[:50]
return render(req, 'admin/booking_index.html', {"bookings": bookings})
@login_required(redirect_field_name=None)
def webcam_index(req):
checkadmin(req)
boards = Board.objects.filter(online=True)
for board in boards:
Webcam.load_image(board.mid)
return render(req, 'admin/webcam_index.html', {"boards": boards})
@login_required(redirect_field_name=None)
def logs_index(req):
checkadmin(req)
date = (datetime.datetime.now()).strftime("%Y-%m-%d")
return render(req, 'admin/user_logs.html', {"nowdate" : date})
def zipdir(path, ziph):
# ziph is zipfile handle
for root, dirs, files in os.walk(path):
for file in files:
ziph.write(os.path.join(root,file))
@login_required(redirect_field_name=None)
def logs_folder_index(req):
checkadmin(req)
# pass
if os.path.exists('Experiments.zip'):
os.remove('Experiments.zip')
zipf = zipfile.ZipFile('Experiments.zip','w',zipfile.ZIP_DEFLATED)
zipdir('experiments/',zipf)
zipf.close()
zip_file = open('Experiments.zip','r')
response = HttpResponse(zip_file, content_type='application/force-download')
response['Content-Disposition'] = 'attachment; filename="%s"' % 'Experiments.zip'
return response
@login_required(redirect_field_name=None)
def switch_on_all_boards(req):
checkadmin(req)
boards = Board.objects.order_by('-online').all()
switch_onn.switchOnn(sys.argv)
return render(req,'admin/switch_on_all_board.html',{"boards":boards})
@login_required(redirect_field_name=None)
def switch_off_all_boards(req):
checkadmin(req)
boards = Board.objects.order_by('-online').all()
switch_off.switchOff(sys.argv)
return render(req,'admin/switch_on_all_board.html',{"boards":boards})
@login_required(redirect_field_name=None)
def profile(req, mid):
checkadmin(req)
try:
filename = settings.SBHS_GLOBAL_LOG_DIR + "/" + mid + ".log"
f = open(filename, "r")
f.close()
except:
# raise Http404("log does not exist for this profile")
return render(req,'admin/log_does_not_exist.html')
delta_T = 1000
data = subprocess.check_output("tail -n %d %s" % (delta_T, filename), shell=True)
data = data.split("\n")
plot = []
heatcsv = ""
fancsv = ""
tempcsv = ""
for t in xrange(len(data)):
line = data[t]
entry = line.strip().split(" ")
try:
plot.append([int(i) for i in entry[0:-1] + [float(entry[-1])]])
heatcsv += "%d,%s\\n" % (t+1, entry[1])
fancsv += "%d,%s\\n" % (t+1, entry[2])
tempcsv += "%d,%s\\n" % (t+1, entry[3])
except:
continue
plot = zip(*plot) # transpose
return render(req, "admin/profile.html", {
"mid": mid,
"delta_T": delta_T,
"heat": heatcsv,
"fan": fancsv,
"temp": tempcsv
})
@login_required(redirect_field_name=None)
def testing(req):
checkadmin(req)
now = datetime.datetime.now()
current_slot_id = Slot.objects.filter(start_hour=now.hour,
start_minute__lt=now.minute,
end_minute__gt=now.minute)
current_slot_id = -1 if not current_slot_id else current_slot_id[0].id
current_bookings = Booking.objects.filter(slot_id=current_slot_id,
booking_date=datetime.date.today()).select_related()
current_mids = list([-1]) if not current_bookings else [current_booking.account.board.mid for current_booking in current_bookings]
boards = Board.objects.filter(online=1)
allotment_mode = "Random" if Board.can_do_random_allotment() else "Workshop"
return render(req, 'admin/testexp.html', {"boards": boards, "allotment_mode": allotment_mode, "mids": current_mids})
@csrf_exempt
def monitor_experiment(req):
checkadmin(req)
try:
mid = int(req.POST.get("mid"))
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Invalid parameters"}), content_type="application/json")
now = datetime.datetime.now()
current_slot_id = Slot.objects.filter(start_hour=now.hour,
start_minute__lt=now.minute,
end_minute__gt=now.minute)
current_slot_id = -1 if not current_slot_id else current_slot_id[0].id
try:
current_booking = Booking.objects.get(slot_id=current_slot_id,
booking_date=datetime.date.today(),
account__board__mid=mid)
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Invalid MID"}), content_type="application/json")
try:
current_booking_id, current_user = current_booking.id, current_booking.account.username
logfile = Experiment.objects.filter(booking_id=current_booking_id).order_by('created_at').reverse()[0].log
except:
return HttpResponse(json.dumps({"status_code":417, "message":"Experiment hasn't started"}), content_type="application/json")
try:
# get last 10 lines from logs
stdin,stdout = os.popen2("tail -n 10 "+logfile)
stdin.close()
logs = stdout.readlines(); stdout.close()
screened_logs = []
for line in logs:
screened_line = " ".join(line.split()[:4]) + "\n"
screened_logs.append(screened_line)
logs = "".join(screened_logs)
except Exception as e:
return HttpResponse(json.dumps({"status_code":500, "message":"Some error occured"}), content_type="application/json")
data = {"user": current_user, "logs": logs}
return HttpResponse(json.dumps({"status_code":200, "message":data}), content_type="application/json")
@login_required(redirect_field_name=None)
def get_allocated_mids(req):
checkadmin(req)
with connection.cursor() as cursor:
cursor.execute("SELECT tables_board.mid, COUNT(tables_account.id), tables_board.id FROM tables_account RIGHT OUTER JOIN tables_board ON tables_account.board_id = tables_board.id WHERE tables_board.online = 1 GROUP BY tables_board.mid ORDER BY COUNT(tables_account.id)")
mid_count = cursor.fetchall()
return render(req, 'admin/changeMID.html', {"mid_count" : mid_count})
@csrf_exempt
def get_users(req):
checkadmin(req)
try:
users = list(Account.objects.select_related().values_list("username", "board__mid"))
return HttpResponse(json.dumps({"status_code":200, "message":users}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"status_code":500, "message":str(e)}), content_type="application/json")
@csrf_exempt
def toggle_device_status(req):
checkadmin(req)
try :
mid = req.POST.get('mid')
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Invalid parameters"}), content_type="application/json")
try:
now = datetime.datetime.now()
current_slot_id = Slot.objects.filter(start_hour=now.hour,
start_minute__lt=now.minute,
end_minute__gt=now.minute)
current_slot_id = -1 if not current_slot_id else current_slot_id[0].id
current_bookings = Booking.objects.filter(slot_id=current_slot_id,
booking_date=datetime.date.today()).select_related()
current_mids = list([-1]) if not current_bookings else [current_booking.account.board.mid for current_booking in current_bookings]
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Unsuccessful"}), content_type="application/json")
if int(mid) in current_mids:
return HttpResponse(json.dumps({"status_code":400, "message":"Board is in use."}), content_type="application/json")
try:
brd = Board.objects.get(mid = mid)
brd.temp_offline = not brd.temp_offline
brd.save()
return HttpResponse(json.dumps({"status_code":200, "message":"Toggle successful"}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Unsuccessful"}), content_type="application/json")
@csrf_exempt
def toggle_power_state(req):
checkadmin(req)
# print 'inside toggle_power_state'
try:
mid = req.POST.get('mid')
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Invalid parameters"}), content_type="application/json")
try:
now = datetime.datetime.now()
# print 'now', now
current_slot_id = Slot.objects.filter(start_hour=now.hour,
start_minute__lt=now.minute,
end_minute__gt=now.minute)
# print 'currnet_slo'
current_slot_id = -1 if not current_slot_id else current_slot_id[0].id
current_bookings = Booking.objects.filter(slot_id=current_slot_id,
booking_date=datetime.date.today()).select_related()
current_mids = list([-1]) if not current_bookings else [current_booking.account.board.mid for current_booking in current_bookings]
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Unsuccessful"}), content_type="application/json")
if int(mid) in current_mids:
return HttpResponse(json.dumps({"status_code":400, "message":"Board is in use."}), content_type="application/json")
try:
print 'mid', mid.strip()
brd = Board.objects.get(mid = mid)
brd.power_status = not brd.power_status
print ' brd.power_status ',int(brd.power_status)
# sys.argv = mid
# print 'sys.argv ',sys.argv
# ser = serial.Serial('/dev/ttyACM0')
# print switch_on.switchOn(sys.argv)
if not brd.power_status:
m = str(mid).zfill(2)
print 'N ',m
time.sleep(2)
ser.write(b'N'+str(m))
# switch_on.switchOn(m)
else:
m = str(mid).zfill(2)
print 'F ',m
time.sleep(2)
ser.write(b'F'+str(m))
# switch_off.switchOff(sys.argv)
# ser.close()
brd.save()
return HttpResponse(json.dumps({"status_code":200, "message":"Toggle successful"}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Unsuccessful"}), content_type="application/json")
def user_exists(username):
try:
user = Account.objects.get(username=username)
except ObjectDoesNotExist:
return None
return user
@csrf_exempt
def update_allocated_mid(req):
checkadmin(req)
try:
username = req.POST.get("username")
board_id = req.POST.get("board_id")
except Exception as e:
return HttpResponse(json.dumps({"status_code":400, "message":"Invalid parameters"}), content_type="application/json")
user = user_exists(username)
if user is not None:
user.board_id = board_id
user.save()
else:
return HttpResponse(json.dumps({"status_code": 400, "message": "Username does not exist"}), content_type="application/json")
return HttpResponse(json.dumps({"status_code": 200, "message": "MID changed successfully"}), content_type="application/json")
@login_required(redirect_field_name=None)
def download_log(req, mid):
checkadmin(req)
try:
global_logfile = settings.SBHS_GLOBAL_LOG_DIR + "/" + mid + ".log"
f = open(global_logfile, "r")
data = f.read()
f.close()
return HttpResponse(data, content_type='text/text')
except:
return HttpResponse("Requested log file doesn't exist.")
@login_required(redirect_field_name=None)
@csrf_exempt
def range_logs(req):
checkadmin(req)
try:
start_date = req.POST.get("start_date")
end_date = req.POST.get("end_date")
start_time = req.POST.get("start_time")
end_time = req.POST.get("end_time")
except:
return HttpResponse(json.dumps({"status_code":400, "message":"Invalid parameters"}), content_type="application/json")
try:
start = start_date + " " + start_time
end = end_date + " " + end_time
log_files = Experiment.objects.filter(created_at__range=[start, end]).values("id", "log")
return HttpResponse(json.dumps({"status_code":200, "message":list(log_files)}), content_type="application/json")
except Exception as e:
return HttpResponse(json.dumps({"status_code": 500, "message": "Some error occured" + str(e)}), content_type="application/json")
@login_required(redirect_field_name=None)
@csrf_exempt
def download_experiment_log(req, experiment_id):
""" Downloads the experimental log file.
Input: req: request object, experiment_id: experimental id
Output: HttpResponse object
"""
checkadmin(req)
try:
experiment_data = Experiment.objects.select_related("booking", "booking__account").get(id=experiment_id)
f = open(experiment_data.log, "r")
data = f.read()
f.close()
return HttpResponse(data, content_type='text/text')
except:
return HttpResponse("Requested log file doesn't exist.")
@csrf_exempt
def reset_device(req):
"""Resets the device to fan = 100 and heat = 0
Takes mid as paramter
Returns status_code = 200, data={temp:temp of the device} if succesful
else
status_code = 500 , data={error:errorMessage}
"""
# mid=int(req.POST.get('mid'))
# usb_path=settings.MID_PORT_MAP.get(mid,None)
# if usb_path is None:
# retVal={"status_code":400,"message":"Invalid MID"}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# #trying to connect to device
# # check if SBHS device is connected
# if not os.path.exists(usb_path):
# retVal={"status_code":500,"message":"Device Not connected to defined USB Port"}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# try:
# board = sbhs.Sbhs()
# board.machine_id=mid
# board.boardcon= serial.Serial(port=usb_path, baudrate=9600, bytesize=8, parity='N', stopbits=1, timeout=2) #orignal stopbits = 1
# board.status = 1
# if board.reset_board():
# retVal={"status_code":200,"message":board.getTemp()}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# else:
# retVal={"status_code":500,"message":"Could not set the parameters.Try again."}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# except serial.serialutil.SerialException:
# retVal={"status_code":500,"message":"Could not connect to the device.Try again."}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
checkadmin(req)
mid=int(req.POST.get('mid'))
try:
ip = settings.pi_ip_map.get(str(mid))
if ip is None:
return HttpResponse(json.dumps({"status_code":400, "message":"Board is offline"}), content_type="application/json")
url = "http://" + str(ip) + "/pi/admin/resetdevice"
payload = {"mid":mid}
r = requests.post(url , data = payload)
return HttpResponse(r.text, content_type="application/json")
except Exception as e:
retVal={"status_code":500,"message":"Could not reset the device.."}
return HttpResponse(json.dumps(retVal),content_type='application/json')
@csrf_exempt
def set_device_params(req):
"""Sets the device parameters as per the arguments sent
Takes mid,fan,heat as paramter
Returns status_code = 200, data={temp:temp of the device} if succesful
else
status_code = 500 , data={error:errorMessage}
"""
# mid=int(req.POST.get('mid'))
# fan=int(req.POST.get('fan'))
# heat=int(req.POST.get('heat'))
# usb_path=settings.MID_PORT_MAP.get(mid,None)
# if usb_path is None:
# retVal={"status_code":400,"message":"Invalid MID"}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# #trying to connect to device
# # check if SBHS device is connected
# if not os.path.exists(usb_path):
# retVal={"status_code":500,"message":"Device Not connected to defined USB Port"}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# try:
# board = sbhs.Sbhs()
# board.machine_id=mid
# board.boardcon= serial.Serial(port=usb_path, baudrate=9600, bytesize=8, parity='N', stopbits=1, timeout=2) #orignal stopbits = 1
# board.status = 1
# if board.setFan(fan) and board.setHeat(heat):
# retVal={"status_code":200,"message":board.getTemp()}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# else:
# retVal={"status_code":500,"message":"Could not set the parameters.Try again."}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# except serial.serialutil.SerialException:
# retVal={"status_code":500,"message":"Could not connect to the device.Try again."}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
checkadmin(req)
mid=int(req.POST.get('mid'))
fan=int(req.POST.get('fan'))
heat=int(req.POST.get('heat'))
try:
ip = settings.pi_ip_map.get(str(mid))
if ip is None:
return HttpResponse(json.dumps({"status_code":400, "message":"Board is offline"}), content_type="application/json")
url = "http://" + str(ip) + "/pi/admin/setdevice"
payload = {"mid":mid, "fan":fan, "heat":heat}
r = requests.post(url , data = payload)
return HttpResponse(r.text, content_type="application/json")
except Exception as e:
retVal={"status_code":500,"message":"Could not set the device params.."}
return HttpResponse(json.dumps(retVal),content_type='application/json')
@csrf_exempt
def get_device_temp(req):
"""Sets the device parameters as per the arguments sent
Takes mid,fan,heat as paramter
Returns status_code = 200, data={temp:temp of the device} if succesful
else
status_code = 500 , data={error:errorMessage}
"""
# mid=int(req.POST.get('mid'))
# usb_path=settings.MID_PORT_MAP.get(mid,None)
# if usb_path is None:
# retVal={"status_code":400,"message":"Invalid MID"}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# #trying to connect to device
# # check if SBHS device is connected
# if not os.path.exists(usb_path):
# retVal={"status_code":500,"message":"Device Not connected to defined USB Port"}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# try:
# board = sbhs.Sbhs()
# board.machine_id=mid
# board.boardcon= serial.Serial(port=usb_path, baudrate=9600, bytesize=8, parity='N', stopbits=1, timeout=2) #orignal stopbits = 1
# board.status = 1
# temp=board.getTemp()
# if temp!=0.0:
# retVal={"status_code":200,"message":temp}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# else:
# retVal={"status_code":500,"message":"Could not set the parameters.Try again."}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
# except serial.serialutil.SerialException:
# retVal={"status_code":500,"message":"Could not connect to the device.Try again."}
# return HttpResponse(json.dumps(retVal),content_type='application/json')
checkadmin(req)
print 'inside get_device_temp function'
mid=int(req.POST.get('mid'))
print 'mid',mid
try:
ip = settings.pi_ip_map.get(str(mid))
print 'ip',ip
if ip is None:
return HttpResponse(json.dumps({"status_code":400, "message":"Board is offline"}), content_type="application/json")
url = "http://" + str(ip) + "/pi/admin/gettemp"
print 'url ', url
payload = {"mid":mid}
print 'payload',payload
r = requests.post(url , data = payload)
print 'r', r
return HttpResponse(r.text, content_type="application/json")
except Exception as e:
retVal={"status_code":500,"message":"Could not get the device temperature.."+str(e)}
return HttpResponse(json.dumps(retVal),content_type='application/json')
@login_required(redirect_field_name=None)
def automated_slot_booking(req):
checkadmin(req)
boards = Board.objects.order_by('-online').all()
# db = MySQLdb.connect(host='localhost', ## your host, usually localhost ##
# user='root', ## your username ##
# passwd='fossee@iitb', ## your password ##
# db='sbhs') ## name of the data base ##
auto = class_based_automated_slot_booking.Automated_Slot_Booking()
# cu1 = auto.cu1
# cu2 = auto.cu2
# db = auto.db
# cursor5 = auto.cursor5
# nowDate = auto.nowDate
# nowTime = auto.nowTime
# SplittedTime = auto.SplittedTime
# NowdaTe = auto.NowdaTe
# CurrentAccountIdList = auto.CurrentAccountIdList
# BookedSlotId = auto.BookedMidList
# RequiredMidList = auto.RequiredMidList
# SuperUserMidList = auto.SuperUserMidList
auto.SuperUserList()
auto.CurrentBookedAccount()
auto.BookedMidList()
auto.BookSlot()
auto.CloseDb()
## print "Opened database successfully"
## Execution of querry
# cursor5=db.cursor()
# cu1=db.cursor()
# querry1='SELECT * FROM tables_booking'
# cu1.execute(querry1)
# ## Datetime used when script runs
# nowDate=datetime.datetime.now().date()
# nowTime=str(datetime.datetime.now().time())
# SplittedTime=nowTime.split(":")
# NowdaTe=str(nowDate)
# NowdaTe=NowdaTe.strip() ## To remove extra spaces strip is used##
# CurrentAccountIdList=[]
# BookedSlotId=[]
# for DateTimeInBooking in cu1:
# nn=str(DateTimeInBooking[6])
# daTe = nn[0:11]
# tiMe=nn[11:13]
# daTe=daTe.strip()
# if daTe==NowdaTe and int(SplittedTime[0])+1==int(DateTimeInBooking[3]):
# CurrentAccountIdList.append(int(DateTimeInBooking[2]))
# BookedSlotId.append(int(DateTimeInBooking[3]))
# #print BookedSlotId,CurrentAccountIdList
# querry2='SELECT *FROM tables_account'
# cu2=db.cursor()
# cu2.execute(querry2)
# RequiredMidList=[]
# for AccountIdFromTablesAccnt in cu2:
# var=AccountIdFromTablesAccnt[0]
# for Id in range(len(CurrentAccountIdList)):
# if long(CurrentAccountIdList[Id])==(AccountIdFromTablesAccnt[0]):
# RequiredMidList.append(int(AccountIdFromTablesAccnt[9]))
# #print RequiredMidList
# SuperUserMidList=[Mid for Mid in range(1,41)]
# #print SuperUserMidList
# MidsTobeBooked=[mId for mId in SuperUserMidList if mId not in RequiredMidList]
# #print MidsTobeBooked
# for BookMid in range(len(MidsTobeBooked)):
# ToInsert=[int((MidsTobeBooked[BookMid]))+40,int(SplittedTime[0])+1,(datetime.datetime.now()),(datetime.datetime.now()),(nowDate)]
# try:
# cursor5.execute("INSERT INTO tables_booking(account_id,slot_id,created_at,updated_at,booking_date) VALUES(%s,%s,%s,%s,%s)",ToInsert)
# except:
# pass
# db.commit() ## To update the table Changes in database ##
# ## Closing all the object of Cursor
# cu1.close()
# cu2.close()
# cursor5.close()
# db.close()
# ## print "database closed successfully"
switch_onn.switchOnn(sys.argv)
# check_future_slots.check_future_slots()
# switch_on_all_boards()
return render(req,'admin/index.html',{'boards':boards})
|