views.py
36.6 KB
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
import sys
from django.http import HttpResponse
from django.shortcuts import render, redirect
from django.contrib.auth.decorators import login_required
import datetime
from common.models import Log, SP_Period_Guest, WeatherWatch, SiteWatch, ScientificProgram, Config, PyrosUser, PlcDeviceStatus, Telescope, TelescopeCommand, UserLevel
from django.core import serializers
import utils.Logger as l
from django.forms import modelformset_factory
from django.http import HttpResponseRedirect
from dashboard.forms import ConfigForm, UserForm
from dashboard.decorator import level_required
from django.views.generic.edit import UpdateView
from django.shortcuts import get_object_or_404
from django.utils.decorators import method_decorator
from django.urls import reverse_lazy, reverse
from django.http import Http404
import json
from random import randint
from devices.Telescope import TelescopeController
from devices.TelescopeRemoteControlDefault import TelescopeRemoteControlDefault
from devices.CameraVISRemoteControlDefault import CameraVISRemoteControlDefault
from devices.CameraNIRRemoteControlDefault import CameraNIRRemoteControlDefault
from devices import PLC
import time,os
from obsconfig.configpyros import ConfigPyros
from django.conf import settings as pyros_settings
sys.path.append("../../..")
#import utils.celme as celme
import src.core.celme as celme
from collections import OrderedDict
SUN_ELEV_DAY_THRESHOLD = -10
MAX_LOGS_LINES = 100
log = l.setupLogger("dashboard", "dashboard")
def index(request):
config = ConfigPyros(os.environ["PATH_TO_OBSCONF_FILE"])
observatory_name = config.get_obs_name()
first_unit_name = config.get_units_name()[0]
request.session["obsname"] = observatory_name+" "+first_unit_name
message = ""
if request.user.is_authenticated:
if SP_Period_Guest.objects.filter(email=request.user.email):
message = "You are requested to join the following proposals, click on the following link(s) to accept those invitations :<br><ul>"
domain = pyros_settings.DEFAULT_DOMAIN
for sp_period_guest in SP_Period_Guest.objects.filter(email=request.user.email):
url = f"http://{domain}{reverse('sp_register',args=(sp_period_guest.SP_Period.scientific_program.id,sp_period_guest.SP_Period.period.id))}"
message+=f"<li><a href='{url}'>{url}</a></li>"
message+="</ul>"
# return the initial view (the dashboard's one)
return render(request, 'dashboard/index.html', {'USER_LEVEL': request.user.get_priority(), 'base_template' : "base.html","message":message})
return render(request, 'dashboard/index.html', {"USER_LEVEL" : "Visitor", 'base_template' : "base.html"})
def observation_index(request):
if request.user.is_authenticated:
CAN_VIEW_SCIENCE_THEMES = request.session.get("role") in ("Admin","Unit-PI","Unit-board")
# return the initial view (the dashboard's one)
return render(request, 'dashboard/observation_index.html',{
"base_template":"base.html",
"CAN_VIEW_SCIENCE_THEMES": CAN_VIEW_SCIENCE_THEMES
})
return render(request, 'dashboard/observation_index.html', {'USER_LEVEL': "Visitor", 'base_template' : "base.html"})
def retrieve_env(request):
try:
#weather_status = WeatherWatch.objects.latest('updated')
weather_status = get_latest_from_db_or_empty(WeatherWatch)
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
plc_timeout = Config.objects.get(pk=1).plc_timeout_seconds
timeout = (datetime.datetime.now() - plc_device_status.created).total_seconds()
timeout_affichage = datetime.datetime.now() - datetime.timedelta(seconds=timeout)
sunelev = get_sunelev()
t = datetime.datetime.now() + datetime.timedelta(hours=-7)
isDay = False
if sunelev >= SUN_ELEV_DAY_THRESHOLD:
isDay = True
return render(request, 'dashboard/observation_status_env.html', locals())
except WeatherWatch.DoesNotExist:
raise Http404("No WeatherWatch matches the given query.")
'''
Function that call celme code to determine sun elevation, maybe it should be moved somewhere else ?
'''
def get_sunelev():
date = celme.dates.Date("now")
site = celme.Site("MPC 244.5367 0.85792 +0.51292") # coords of san pedro martir site
skyobj= {'planet':'Sun'}
outputs = ['name','ra','dec','elev']
target = celme.Target()
target.define(skyobj)
output0s = ['ra','dec']
results = target.ephem(date,site,output0s)
ra = results['RA']
dec = results['DEC']
skyobj= {'RA':ra , 'DEC':dec }
target.define(skyobj)
results = target.ephem(date,site,outputs)
elev = round(results['ELEV'],2)
return elev
def retrieve_env_navbar(request):
'''
Function which get the last status of the plc in th db, the config info, the sunelev, put it in a json
and send it to the client.
This function is called every REFRESH_ICONS_FREQUENCE_MILLISECONDS in base.html
'''
try:
weather = get_weather_data()
return HttpResponse(json.dumps(weather), content_type="application/json")
except WeatherWatch.DoesNotExist:
raise Http404("No WeatherWatch matches the given query.")
'''
##if request.is_ajax():
try:
#weather_status = WeatherWatch.objects.latest('updated')
weather_status = WeatherWatch.objects.latest('updated') if WeatherWatch.objects.all().exists() else WeatherWatch()
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created') if PlcDeviceStatus.objects.all().exists() else PlcDeviceStatus()
if PlcDeviceStatus.objects.all().exists():
plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
else:
plc_device_status = PlcDeviceStatus()
#plc_device_status.created='2018-07-26 12:48:49.949228'
plc_device_status.created=datetime.datetime(2018, 6, 21, 9, 53, 30, 599462)
plc_mode = plc_device_status.plc_mode
is_safe = plc_device_status.is_safe
weather = serializers.serialize('json', [weather_status])
weather = json.loads(weather)
ack = Config.objects.get(id=1).ack
plc_timeout = Config.objects.get(pk=1).plc_timeout_seconds
#if not PlcDeviceStatus.objects.all().exists() plc_device_status.created='2018-07-26 12:48:49.949228'
#timeout = (datetime.datetime.now() - LAST_PLC_ITEM_TIME).total_seconds()
timeout = (datetime.datetime.now() - plc_device_status.created).total_seconds()
weather[0]['max_sunelev'] = SUN_ELEV_DAY_THRESHOLD
#weather[0]['sunelev'] = 10
weather[0]['sunelev'] = get_sunelev()
weather[0]["plc_mode"] = plc_mode
weather[0]["is_safe"] = is_safe
weather[0]["ACK"] = ack
weather[0]["plc_timeout"] = timeout
weather[0]["max_plc_timeout"] = plc_timeout
weather[0]["pyros_mode"] = Config.objects.get(id=1).pyros_state
if SiteWatch.objects.all().exists():
sitewatch = SiteWatch.objects.latest('updated')
else:
sitewatch = SiteWatch()
#sitewatch.global_status='KO'
weather[0]["sitewatch_global_status"] = sitewatch.global_status
#weather[0]["sitewatch_global_status"] = SiteWatch.objects.latest('updated').global_status
#weather[0]["sitewatch_global_status"] = SiteWatch.objects.latest('updated').global_status if SiteWatch.objects.all().exists() else SiteWatch()
return HttpResponse(json.dumps(weather), content_type="application/json")
except WeatherWatch.DoesNotExist:
raise Http404("No WeatherWatch matches the given query.")
'''
@login_required
def settings(request):
'''
View called to see the settings (for the software, observatory, users...) page
'''
CAN_VIEW_PERIOD = request.session.get("role") in ("Admin", "Unit-PI", "Observer", "Unit-board")
return(render(request, "dashboard/settings.html", locals()))
def retrieve_main_icon(request):
if request.is_ajax():
try:
weather_status = WeatherWatch.objects.latest('updated')
plc_mode = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created').plc_mode
weather = serializers.serialize('json', [weather_status])
weather = json.loads(weather)
weather[0]["plc_mode"] = plc_mode
weather[0]["sitewatch_global_status"] = SiteWatch.objects.latest('updated').global_status
return HttpResponse(json.dumps(weather), content_type="application/json")
except WeatherWatch.DoesNotExist:
raise Http404("No WeatherWatch matches the given query.")
@login_required
#@level_required(2)
def routines(request):
url_ = reverse('admin:common_request_changelist')
return redirect(url_)
def get_latest_from_db_or_empty(db_model):
return db_model.objects.latest('updated') if db_model.objects.all().exists() else db_model()
def get_latest_plc_device_status_or_empty():
if PlcDeviceStatus.objects.all().exists() and PlcDeviceStatus.objects.exclude(plc_mode=None).exists():
plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
else:
# Create an empty object
plc_device_status = PlcDeviceStatus()
# Set a dummy date
#plc_device_status.created='2018-07-26 12:48:49.949228'
plc_device_status.created=datetime.datetime(2018, 6, 21, 9, 53, 30, 599462)
plc_device_status.is_safe = False
return plc_device_status
def get_weather_data():
#weather_status = WeatherWatch.objects.latest('updated') if WeatherWatch.objects.all().exists() else WeatherWatch()
weather_status = get_latest_from_db_or_empty(WeatherWatch)
plc_device_status = get_latest_plc_device_status_or_empty()
plc_mode = plc_device_status.plc_mode
is_safe = plc_device_status.is_safe
weather = serializers.serialize('json', [weather_status])
weather = json.loads(weather)
ack = Config.objects.get(id=1).ack
plc_timeout = Config.objects.get(pk=1).plc_timeout_seconds
#if not PlcDeviceStatus.objects.all().exists() plc_device_status.created='2018-07-26 12:48:49.949228'
#timeout = (datetime.datetime.now() - LAST_PLC_ITEM_TIME).total_seconds()
# PM 20190416 TODO: Check error
#timeout = (datetime.datetime.now() - plc_device_status.created).total_seconds()
timeout = 0
weather[0]['max_sunelev'] = SUN_ELEV_DAY_THRESHOLD
#weather[0]['sunelev'] = 10
weather[0]['sunelev'] = get_sunelev()
weather[0]["plc_mode"] = plc_mode
weather[0]["is_safe"] = is_safe
weather[0]["ACK"] = ack
weather[0]["plc_timeout"] = timeout
weather[0]["max_plc_timeout"] = plc_timeout
weather[0]["pyros_mode"] = Config.objects.get(id=1).pyros_state
# only for retrieve_env_navbar:
sitewatch = get_latest_from_db_or_empty(SiteWatch)
'''
if SiteWatch.objects.all().exists():
sitewatch = SiteWatch.objects.latest('updated')
else:
sitewatch = SiteWatch()
#sitewatch.global_status='KO'
'''
weather[0]["sitewatch_global_status"] = sitewatch.global_status
#weather[0]["sitewatch_global_status"] = SiteWatch.objects.latest('updated').global_status
#weather[0]["sitewatch_global_status"] = SiteWatch.objects.latest('updated').global_status if SiteWatch.objects.all().exists() else SiteWatch()
return weather
def weather(request):
if request.user.is_authenticated:
return render(request, 'dashboard/reload_weather.html', {'base_template' : "base.html"}) # return the needed html file
return render(request, 'dashboard/reload_weather.html', {'base_template' : "base.html"})
def weather_current(request):
# PM 20180718
#if request.is_ajax():
try:
weather = get_weather_data()
return HttpResponse(json.dumps(weather), content_type="application/json")
except WeatherWatch.DoesNotExist:
raise Http404("No WeatherWatch matches the given query.")
'''
try:
#weather_status = WeatherWatch.objects.latest('updated')
#weather_status = WeatherWatch.objects.latest('updated') if WeatherWatch.objects.all().exists() else WeatherWatch()
EMPTY_TABLE = WeatherWatch.objects.all().exists()
weather_status = WeatherWatch.objects.latest('updated') if not EMPTY_TABLE else WeatherWatch()
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created') if PlcDeviceStatus.objects.all().exists() else PlcDeviceStatus()
plc_mode = plc_device_status.plc_mode
is_safe = plc_device_status.is_safe
weather = serializers.serialize('json', [weather_status])
weather = json.loads(weather)
ack = Config.objects.get(id=1).ack
plc_timeout = Config.objects.get(pk=1).plc_timeout_seconds
#timeout = (datetime.datetime.now() - plc_device_status.created).total_seconds()
LAST_PLC_ITEM_TIME = plc_device_status.created if not EMPTY_TABLE else '2018-07-26 12:48:49.949228'
timeout = (datetime.datetime.now() - LAST_PLC_ITEM_TIME).total_seconds()
weather[0]['max_sunelev'] = SUN_ELEV_DAY_THRESHOLD
weather[0]['sunelev'] = get_sunelev()
weather[0]["plc_mode"] = plc_mode
weather[0]["is_safe"] = is_safe
weather[0]["ACK"] = ack
weather[0]["plc_timeout"] = timeout
weather[0]["max_plc_timeout"] = plc_timeout
weather[0]["pyros_mode"] = Config.objects.get(id=1).pyros_state
return HttpResponse(json.dumps(weather), content_type="application/json")
except WeatherWatch.DoesNotExist:
raise Http404("No WeatherWatch matches the given query.")
'''
def weather_config(request):
""" PM 20180926 prototype without database
http://127.0.0.1:8000/dashboard/weather/config
Moved to monitoring
http://127.0.0.1:8000/monitoring/weather/config
"""
try:
# Import PLC status sensor parser
from monitoring.plc_checker import PlcChecker
# Parse PLC status in colibri-new-fixed-2.json
#colibri_json = open("../simulators/plc/colibri-new-fixed-2.json")
#colibri_struct = json.load(colibri_json)
#plc_status = colibri_struct["statuses"][1]["entities"][0]
plc_checker = PlcChecker()
_struct = {"origin":plc_checker.origin, "sensors_table":plc_checker.sensors_table}
# Return template with sensors list
return render(request, 'dashboard/config_weather.html', {'weather_config' : _struct, 'base_template' : "base.html"})
except Config.DoesNotExist:
return render(request, 'dashboard/config_weather.html', {'weather_info' : None})
def weather_current_old(request):
try:
if (len(Config.objects.all()) == 1):
monitoring = int(int(Config.objects.get(id=1).row_data_save_frequency) / 5)
else:
monitoring = 60
if (len(WeatherWatch.objects.all()) > 0):
weather_info = WeatherWatch.objects.order_by("-id")[:monitoring] # Use 300 seconds by default with an iteration every 5 seconds # Get the number of data available
else:
weather_info = None
return render(request, 'dashboard/_current_weather.html', {'weather_info' : site_current, 'iteration' : monitoring})
except Config.DoesNotExist:
return render(request, 'dashboard/_current_weather.html', {'weather_info' : None, 'iteration' : 60})
def site(request):
if request.user.is_authenticated:
return render(request, 'dashboard/reload_site.html', {'base_template' : "base.html"}) # return the needed html file
return render(request, 'dashboard/reload_site.html', {'base_template' : "base.html"}) # return the needed html file
def site_current(request):
try:
if (len(Config.objects.all()) == 1):
monitoring = int(int(Config.objects.get(id=1).row_data_save_frequency) / 5)
else:
monitoring = 60
#if (len(SiteWatch.objects.all()) > 0):
if SiteWatch.objects.all().exists():
site_info = SiteWatch.objects.order_by("-id")[:monitoring]
else:
site_info = None
return render(request, 'dashboard/current_site.html', {'site_info' : site_info, 'iteration' : monitoring, 'global_mode' : Config.objects.get(id=1).global_mode})
except Config.DoesNotExist:
return render(request, 'dashboard/current_site.html', {'site_info' : None, 'iteration' : 60})
@login_required
@level_required("Admin")
def proposal(request):
if (len(ScientificProgram.objects.all()) > 0): # checking if the observatory table is empty
proposal_info = ScientificProgram.objects.order_by("-id")[:100] # Sorting Weather table
nb_info_proposal = len(proposal_info) # Get the number of data available
else: # if empty set everything to 0 / None (variables are checked in src/templates/scheduler/_current_weather.html)
proposal_info = None
nb_info_proposal = 0
return render(request, 'dashboard/proposal.html', {'proposal_info' : proposal_info, 'nb_info_proposal' : nb_info_proposal})
@login_required
#@level_required(5)
def configUpdate(request):
instance = get_object_or_404(Config, id=1)
form = ConfigForm(request.POST or None, instance=instance)
if form.is_valid():
form.save()
return reverse('settings')
return render(request, 'dashboard/configuration.html', {'form': form})
@login_required
def devices(request):
url_ = reverse('admin:common_device_changelist')
return redirect(url_)
@login_required
def system(request):
return render(request, 'dashboard/system.html')
@login_required
def system_retrieve_logs(request):
'''
Called by the dashboard system page with ajax request every seconds, to get the logs and print them
'''
if request.is_ajax():
alert_logs = Log.objects.filter(agent='Alert manager').order_by("-created")[:MAX_LOGS_LINES]
scheduler_logs = Log.objects.filter(agent='Scheduler').order_by("-created")[:MAX_LOGS_LINES]
majordome_logs = Log.objects.filter(agent='Majordome').order_by("-created")[:MAX_LOGS_LINES]
obs_logs = Log.objects.filter(agent='Observation manager').order_by("-created")[:MAX_LOGS_LINES]
analyzer_logs = Log.objects.filter(agent='Analyzer').order_by("-created")[:MAX_LOGS_LINES]
monitoring_logs = Log.objects.filter(agent='Monitoring').order_by("-created")[:MAX_LOGS_LINES]
return render(request, 'dashboard/system_logs.html', locals())
def schedule(request):
url_ = reverse('admin:common_schedule_changelist')
return redirect(url_)
@login_required
#@level_required(6)
def quotas(request):
url_ = reverse('admin:common_pyrosuser_changelist')
return redirect(url_)
@login_required
#@level_required(3)
def change_globalMode(request):
try :
config = get_object_or_404(Config, id=1)
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
if config.global_mode == False and plc_device_status.is_safe == False:
return redirect('states')
config.global_mode = not config.global_mode
config.save()
return redirect('states')
except Config.DoesNotExist:
return redirect('states')
@login_required
#@level_required(4)
def change_bypass(request):
try :
config = get_object_or_404(Config, id=1)
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
if plc_device_status.is_safe == True:
return redirect('states')
config.bypass = not config.bypass
config.save()
return redirect('states')
except Config.DoesNotExist:
return redirect('states')
@login_required
#@level_required(3)
def change_lock(request):
try :
config = get_object_or_404(Config, id=1)
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
if config.lock == False and plc_device_status.is_safe == False:
return redirect('states')
config.lock = not config.lock
if (config.lock == True):
config.ntc = not config.ntc
config.save()
return redirect('states')
except Config.DoesNotExist:
return redirect('states')
@login_required
#@level_required(3)
def send_command_to_cameraVIS_1(request):
data = ""
with open('../simulators/config/grammar.json') as f:
data = json.load(f, object_pairs_hook=OrderedDict)
json_str = json.dumps(data)
return render(request, "dashboard/send_command_cameraVIS_1.html", locals())
@login_required
#@level_required(3)
def submit_command_to_cameraVIS_1(request):
'''
function called when a command it submitted for the cameraVIS_1 in the remote control page
(called in the corresponding control_command file)
'''
if request.method == 'POST':
commands = [request.POST.get("first_command"), request.POST.get("first_param")]
try: #TODO faire un truc plus joli pour gérer les params queqlue soit leur nombre
input_0 = request.POST.get("input_number_0")
input_1 = request.POST.get("input_number_1")
input_2 = request.POST.get("input_number_2")
input_3 = request.POST.get("input_number_3")
if input_0:
commands.append(input_0)
if input_1:
commands.append(input_1)
if input_2:
commands.append(input_2)
if input_3:
commands.append(input_3)
except Exception:
pass
response = CameraVISRemoteControlDefault(commands, expert_mode=False, chosen_camera="ddrago_r").exec_command()
#TODO passer en JS pour send les réponses en AJAX
return redirect('send_command_to_cameraVIS_1')
@login_required
#@level_required(3)
def submit_command_to_cameraVIS_1_expert(request):
'''
function called when a command it submitted in expert mode for the cameraVIS_1 in the remote control page
(called in the corresponding control_command file)
'''
if request.method == 'POST':
param = request.POST.get("commande_expert")
if param:
response = CameraVISRemoteControlDefault(param, expert_mode=True, chosen_camera="ddrago_r").exec_command()
#os.system("echo \"status :" + response + "\" >> /home/portos/IRAP/pyros/src/status")
return HttpResponse(json.dumps({'message': "Command send OK", 'response': response}))
return HttpResponse(json.dumps({'message': "Missing command data"}))
return redirect('submit_command_to_telescope')
@login_required
#@level_required(3)
def send_command_to_cameraNIR(request):
data = ""
with open('../simulators/config/grammar.json') as f:
data = json.load(f, object_pairs_hook=OrderedDict)
json_str = json.dumps(data)
return render(request, "dashboard/send_command_cameraNIR.html", locals())
@login_required
#@level_required(3)
def submit_command_to_cameraNIR(request):
'''
function called when a command it submitted for the cameraNIR in the remote control page
(called in the corresponding control_command file)
'''
if request.method == 'POST':
commands = [request.POST.get("first_command"), request.POST.get("first_param")]
try: #TODO faire un truc plus joli pour gérer les params queqlue soit leur nombre
input_0 = request.POST.get("input_number_0")
input_1 = request.POST.get("input_number_1")
input_2 = request.POST.get("input_number_2")
input_3 = request.POST.get("input_number_3")
if input_0:
commands.append(input_0)
if input_1:
commands.append(input_1)
if input_2:
commands.append(input_2)
if input_3:
commands.append(input_3)
except Exception:
pass
response = CameraNIRRemoteControlDefault(commands, expert_mode=False).exec_command()
#TODO passer en JS pour send les réponses en AJAX
return redirect('send_command_to_cameraNIR')
@login_required
#@level_required(3)
def submit_command_to_cameraNIR_expert(request):
'''
function called when a command it submitted in expert mode for the cameraNIR in the remote control page
(called in the corresponding control_command file)
'''
if request.method == 'POST':
param = request.POST.get("commande_expert")
if param:
response = CameraNIRRemoteControlDefault(param, expert_mode=True).exec_command()
return HttpResponse(json.dumps({'message': "Command send OK", 'response': response}))
return HttpResponse(json.dumps({'message': "Missing command data"}))
return redirect('submit_command_to_cameraNIR')
@login_required
#@level_required(3)
def send_command_to_cameraVIS_2(request):
data = ""
with open('../simulators/config/grammar.json') as f:
data = json.load(f, object_pairs_hook=OrderedDict)
json_str = json.dumps(data)
return render(request, "dashboard/send_command_cameraVIS_2.html", locals())
@login_required
#@level_required(3)
def submit_command_to_cameraVIS_2(request):
'''
function called when a command it submitted for the cameraVIS_2 in the remote control page
(called in the corresponding control_command file)
'''
if request.method == 'POST':
commands = [request.POST.get("first_command"), request.POST.get("first_param")]
try: #TODO faire un truc plus joli pour gérer les params queqlue soit leur nombre
input_0 = request.POST.get("input_number_0")
input_1 = request.POST.get("input_number_1")
input_2 = request.POST.get("input_number_2")
input_3 = request.POST.get("input_number_3")
if input_0:
commands.append(input_0)
if input_1:
commands.append(input_1)
if input_2:
commands.append(input_2)
if input_3:
commands.append(input_3)
except Exception:
pass
response = CameraVISRemoteControlDefault(commands, expert_mode=False, chosen_camera="ddrago_b").exec_command()
#TODO passer en JS pour send les réponses en AJAX
return redirect('send_command_to_cameraVIS_2')
@login_required
#@level_required(3)
def submit_command_to_cameraVIS_2_expert(request):
'''
function called when a command it submitted in expert mode for the cameraVIS_2 in the remote control page
(called in the corresponding control_command file)
'''
if request.method == 'POST':
param = request.POST.get("commande_expert")
if param:
response = CameraVISRemoteControlDefault(param, expert_mode=True, chosen_camera="ddrago_b").exec_command()
return HttpResponse(json.dumps({'message': "Command send OK", 'response': response}))
return HttpResponse(json.dumps({'message': "Missing command data"}))
return redirect('submit_command_to_cameraVIS_2')
@login_required
#@level_required(3)
def send_command_to_telescope(request):
data = ""
with open('../simulators/config/grammar.json') as f:
data = json.load(f, object_pairs_hook=OrderedDict)
json_str = json.dumps(data)
return render(request, "dashboard/send_command_telescope.html", locals())
@login_required
#@level_required(3)
def submit_command_to_telescope(request):
'''
function called when a command it submitted for the Telescope in the remote control page
(called in control_command.js)
'''
if request.method == 'POST':
commands = [request.POST.get("first_command"), request.POST.get("first_param")]
try: #TODO faire un truc plus joli pour gérer les params quelque soit leur nombre la c'est du rapide super moche et max 4 input
input_0 = request.POST.get("input_number_0")
input_1 = request.POST.get("input_number_1")
input_2 = request.POST.get("input_number_2")
input_3 = request.POST.get("input_number_3")
if input_0:
commands.append(input_0)
if input_1:
commands.append(input_1)
if input_2:
commands.append(input_2)
if input_3:
commands.append(input_3)
except Exception:
pass
request = ' '.join(commands)
NEW_MODE = True
if NEW_MODE:
TelescopeCommand.objects.create(request=request)
else:
response = TelescopeRemoteControlDefault(commands, False).exec_command()
#TODO passer en JS pour send les réponses en AJAX
return redirect('send_command_to_telescope')
@login_required
#@level_required(3)
def submit_command_to_telescope_expert(request):
'''
function called when a command it submitted in expert mode for the Telescope in the remote control page
(called in control_command.js)
'''
if request.method == 'POST':
param = request.POST.get("commande_expert")
if param:
request = TelescopeCommand.objects.create(request=param)
time.sleep(1)
response = TelescopeCommand.objects.get(pk=request.id).answer
return HttpResponse(json.dumps({'message': "Command send OK", 'response': response}))
return HttpResponse(json.dumps({'message': "Missing command data"}))
return redirect('submit_command_to_telescope')
@login_required
#@level_required(3)
def submit_command_to_plc(request):
if request.method == 'POST':
param = request.POST.get("commande_expert")
if param:
plc_controller = PLC.PLCController()
response = "Unrecognized command"
if param.startswith("GET STATUS ") or param =="GET STATUS": #pas beau a revoir (classe dédiée ?)
response = plc_controller.getStatus(param)
elif param.startswith("SWITCH LIGHTS"):
response = plc_controller.switch_lights(param)
elif param.endswith(" SHUTTERS"):
response = plc_controller.manage_shutters(param)
return HttpResponse(json.dumps({'message': "Command send OK", 'response': response}))
return HttpResponse(json.dumps({'message': "Missing command data"}))
return redirect('submit_command_to_plc')
@login_required
#@level_required(3)
def send_command_to_plc(request):
return render(request, 'dashboard/send_command_to_plc.html')
@login_required
#@level_required(3)
def operator_state(request):
instance = get_object_or_404(Config, id=1)
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
return render(request, 'dashboard/operator_state.html', {'config' : instance, 'is_safe' : plc_device_status.is_safe})
@login_required
#@level_required(3)
def simulator(request):
try :
config = get_object_or_404(Config, id=1)
#plc_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_status = get_latest_plc_device_status_or_empty()
return(render(request, 'dashboard/simulator.html', locals()))
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_switch_ack(request):
try :
config = get_object_or_404(Config, id=1)
config.ack = not config.ack
config.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
# if safe => switch to unsafe
# if unsafe => switch to safe
@login_required
@level_required("Admin")
def simulator_switch_safe(request):
try :
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
plc_device_status.is_safe = not plc_device_status.is_safe
plc_device_status.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_give_auto(request):
try :
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
plc_device_status.plc_mode = "AUTO"
plc_device_status.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_give_manu(request):
try :
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
plc_device_status.plc_mode = "MANU"
plc_device_status.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_give_ko(request):
try :
#plc_device_status = PlcDeviceStatus.objects.exclude(plc_mode=None).latest('created')
plc_device_status = get_latest_plc_device_status_or_empty()
plc_device_status.plc_mode = "OFF"
plc_device_status.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_switch_bypass(request):
try :
config = get_object_or_404(Config, id=1)
config.bypass = not config.bypass
config.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_switch_lock(request):
try :
config = get_object_or_404(Config, id=1)
config.lock = not config.lock
config.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_switch_globalMode(request):
try :
config = get_object_or_404(Config, id=1)
config.global_mode = not config.global_mode
config.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_majordome_restart(request):
try :
config = get_object_or_404(Config, id=1)
config.majordome_state = "OCS-RESTART"
config.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')
@login_required
@level_required("Admin")
def simulator_majordome_shutdown(request):
try :
config = get_object_or_404(Config, id=1)
config.majordome_state = "OCS-SHUTDOWN"
config.save()
return redirect('simulator')
except Config.DoesNotExist:
return redirect('simulator')