-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpanocap.py
1753 lines (1470 loc) · 60.1 KB
/
panocap.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
import json
import zlib
import re
import os
import csv
import urllib.request
import socket
import certifi
import shutil
import shlex
import subprocess
import tarfile
import zipfile
import tempfile
import io
import datetime
import threading
import queue
import time
import random
from tkinter import *
import tkinter.ttk as ttk
import configparser
import logging
settingsfl = 'settings.ini'
version = 4.1
class gui():
#constructor called on creation
def __init__(self, title = 'the game'):
print(time.strftime('%y-%m-%d %H:%M:%S'), 'initialisng gui')
global threads, conn
with open(logfile, 'w'):
pass
self.running = True
self.title = title
#TK gui window
self.main = Tk()
main = self.main
main.resizable(width = True, height = True)
main.title(self.title)
#main frame
frame = Frame(main, background = 'white')
frame.pack()
frame.rowconfigure(0, weight=1)
frame.columnconfigure(0, weight=1)
frame.rowconfigure(1, weight=1)
frame.columnconfigure(1, weight=1)
frame.rowconfigure(2, weight=1)
frame.columnconfigure(2, weight=1)
frame.rowconfigure(3, weight=1)
frame.columnconfigure(3, weight=1)
#creating each widget
frame_left = Frame(frame, background = 'white')
#frame_left.pack( side = LEFT, fill=BOTH, expand=True)
frame_left.grid(row = 1, column = 1)
frame_left.rowconfigure(1, weight=1)
frame_left.columnconfigure(1, weight=1)
output_label_widget = Label(frame_left, text="General Output", font=("Helvetica", 14))
output_label_widget.grid(row = 1, column = 1)
output_widget = Text(frame_left, bg = 'black', fg = '#D3D3D3', padx = 10, pady = 10, height=20, wrap = WORD)
output_widget.grid(row = 2, column = 1)
ffmpeg_label_widget = Label(frame_left, text="ffmpeg Output", font=("Helvetica", 14))
ffmpeg_label_widget.grid(row = 3, column = 1)
ffmpeg_widget = Text(frame_left, bg = 'black', fg = '#D3D3D3', padx = 10, pady = 10, height=20, wrap = WORD)
ffmpeg_widget.grid(row = 4, column = 1)
frame_middle = Frame(frame, background = 'white')
#frame_middle.pack( side = LEFT, fill=BOTH, expand=True)
frame_middle.grid(row = 1, column = 2)
frame_middle.rowconfigure(1, weight=1)
frame_middle.columnconfigure(1, weight=1)
title_widget = Label(frame_middle, text="PanoCap", font=("Helvetica", 20))
title_widget.grid(row = 1, column = 1)
tree_label_widget = Label(frame_middle, text="Sessions Found", font=("Helvetica", 16))
tree_label_widget.grid(row = 2, column = 1)
self.tree = ttk.Treeview(frame_middle, height=20)
self.tree.grid(row = 3, column = 1)
status_widget = Label(frame_middle, text="Please Wait...", font=("Helvetica", 14))
status_widget.grid(row = 4, column = 1)
frame_cookies = Frame(frame_middle, background = 'white')
frame_cookies.grid(row = 5, column = 1)
self.cookie_aspath_var = StringVar()
self.cookie_yourid_var = StringVar()
cookie_aspath_label_widget = Label(frame_cookies, text="ASPXAUTH", font=("Helvetica", 12))
cookie_aspath_label_widget.grid(row = 1, column = 1)
cookie_yourid_label_widget = Label(frame_cookies, text="Your ID", font=("Helvetica", 12))
cookie_yourid_label_widget.grid(row = 1, column = 4)
cookie_aspath_widget = Entry(frame_cookies, textvariable=self.cookie_aspath_var, bg = 'black', fg = 'white', insertbackground ='white')
cookie_aspath_widget.grid(row = 2, column = 1)
cookie_yourid_widget = Entry(frame_cookies, textvariable=self.cookie_yourid_var, bg = 'black', fg = 'white', insertbackground ='white')
cookie_yourid_widget.grid(row = 2, column = 4)
console_widget = Entry(frame_middle, bg = 'black', fg = 'white', insertbackground ='white')
console_widget.grid(row = 6, column = 1)
frame_buttons = Frame(frame_middle, background = 'white')
frame_buttons.grid(row = 7, column = 1)
button_start = Button(frame_buttons, text="Get Latest Data", command=self.call_start)
button_start.grid(row = 1, column = 1)
button_aquire = Button(frame_buttons, text="Aquire Raw Sessions", command=self.call_aquire_sessions)
button_aquire.grid(row = 1, column = 2)
button_compress = Button(frame_buttons, text="Compress Sessions", command=self.call_compress_sessions)
button_compress.grid(row = 1, column = 3)
button_save = Button(frame_buttons, text="Save Cookies", command=self.call_save)
button_save.grid(row = 1, column = 4)
button_exit = Button(frame_buttons, text="Exit", command=self.call_exit)
button_exit.grid(row = 1, column = 6)
frame_right = Frame(frame, background = 'white')
#frame_right.pack( side = LEFT, fill=BOTH, expand=True)
frame_right.grid(row = 1, column = 3)
frame_right.rowconfigure(1, weight=1)
frame_right.columnconfigure(1, weight=1)
#Widget dictionary for access
self.widgets = {
'console' : console_widget,
'output' : output_widget,
'status' : status_widget,
'ffmpeg' : ffmpeg_widget,
'tree1' : self.tree,
'btn_start' : button_start,
'btn_aquire' : button_aquire,
'btn_compress' : button_compress,
'btn_save' : button_save,
'btn_exit' : button_exit,
'cookie_aspath' : cookie_aspath_widget,
'cookie_yourid' : cookie_yourid_widget
}
treads = []
for n in range(len(threads)):
threadname = 'Thread-'+str(n)
label = threadname+'-label'
ffmpeg = threadname+'-ffmpeg'
i = 3*n
treads.append(Label(frame_right, text=threadname, font=("Helvetica", 16)))
treads[i].grid(row = (i+1), column = 1)
self.widgets[label] = treads[i]
ii = 3*n+1
treads.append(Label(frame_right, text='thread', font=("Helvetica", 12)))
treads[ii].grid(row = (ii+1), column = 1)
self.widgets[ffmpeg] = treads[ii]
iii = 3*n+2
treads.append(Text(frame_right, bg = 'black', fg = '#D3D3D3', padx = 5, pady = 5, wrap = WORD, height=12))
treads[iii].grid(row = (iii+1), column = 1)
treads[iii].config(state = DISABLED)
self.widgets[threadname] = treads[iii]
#Disable all widgets so they become read only
self.widgets['console'].config(state = DISABLED)
self.widgets['output'].config(state = DISABLED)
self.widgets['btn_start'].config(state = DISABLED)
self.widgets['btn_aquire'].config(state = DISABLED)
self.widgets['btn_compress'].config(state = DISABLED)
self.widgets['btn_save'].config(state = DISABLED)
self.widgets['btn_exit'].config(state = DISABLED)
self.widgets['cookie_aspath'].config(state = DISABLED)
self.widgets['cookie_yourid'].config(state = DISABLED)
#Bind the button press to a function
console_widget.bind('<Return>', self.rtn_pressed)
self.tree.bind('<Double-Button-1>', self.onDoubleClick)
#self.set_columns('tree1', ('SessionID', 'SessionAbstract','StartTime', 'Duration', 'NumStreams'), ('Name', 'ID', 'Abstract','Time', 'Duration', 'Streams'))
column_data = [{'ID':'SessionID', 'Name':'ID', 'width':10},{'ID':'SessionName', 'Name':'Session Name', 'width':380},{'ID':'SessionAbstract', 'Name':'Abstract', 'width':250},{'ID':'StartTime', 'Name':'Date', 'width':90},{'ID':'Duration', 'Name':'Duration', 'width':60},{'ID':'NumStreams', 'Name':'streams', 'width':55}]
self.set_columns('tree1', column_data)
#Set focus on the console
#console_widget.focus_set()
self.check_cookies()
conn = connection()
#self.current_stage = "init"
self.arg = False
#end of init
def check_cookies(self):
self.cookie_aspath_var.set(settings['Cookies']['ASPXAUTH'])
self.cookie_yourid_var.set(settings['Cookies']['yourid'])
self.current_stage = "setcookies"
if settings['Cookies']['ASPXAUTH'] == "":
self.set_lbl("Cookies Empty...Please enter correct ones")
else:
self.set_lbl("Cookies Found... Please Wait...")
self.widgets['cookie_aspath'].config(state = NORMAL)
self.widgets['cookie_yourid'].config(state = NORMAL)
self.widgets['btn_save'].config(state = NORMAL)
#Event driven fuctions
def rtn_pressed(self, event):
to_print_d("Input - Enter Key")
self.stage_man.navigate(self.get_input())
def call_start(self):
global conn, cachefolder
print("Input - Start Button")
self.widgets['btn_start'].config(state = DISABLED)
self.set_lbl("Please Wait...")
self.repeater()
records = conn.GetSessions()
logging.info(records)
#to_print_d(records)
if len(records) > 0:
conn.GetSessionsInfo(records)
self.current_stage = "start"
self.setup_next_stage()
else:
self.current_stage = "setcookies"
self.widgets['btn_save'].config(state = NORMAL)
self.add_txt("Error, possible invalid or expired cookies...")
def setup_next_stage(self):
global threads, pauseFlag, workQueue, sessionInfo, exitFlag, conn
pauseFlag = 1
idlethreads = 0
for t in threads:
#if t.idle:
idlethreads += t.idle
#print(workQueue.empty(), idlethreads, len(threads))
if workQueue.empty() and idlethreads >= len(threads) and not exitFlag:
pauseFlag = 0
if self.current_stage == "start":
self.records = SessionsInfo
self.call_save_json()
#self.widgets['btn_save'].config(state = NORMAL)
self.widgets['btn_aquire'].config(state = NORMAL)
self.widgets['btn_exit'].config(state = NORMAL)
if self.current_stage == "aquire":
self.widgets['btn_start'].config(state = NORMAL)
self.widgets['btn_exit'].config(state = NORMAL)
if self.current_stage == "compress" or self.current_stage == "init":
self.widgets['btn_start'].config(state = NORMAL)
self.widgets['btn_exit'].config(state = NORMAL)
if self.current_stage == "setcookies":
settings['Cookies']['ASPXAUTH'] = self.cookie_aspath_var.get()
settings['Cookies']['yourid'] = self.cookie_yourid_var.get()
write_settings(settings, settingsfl)
cookies = 'UserSettings=LastLoginMembershipProvider=CLAWSBlackboard; .ASPXAUTH='+settings['Cookies']['ASPXAUTH']+'; clawsblackboard\\'+settings['Cookies']['yourid']+'={"defaultVolume":100,"defaultBitrateMBR":2}; CLAWSBlackboard\\'+settings['Cookies']['yourid']+'={"navBarSection":1}'
conn.set_cookies(cookies)
if conn.TestConnection():
self.add_txt("Correct cookies")
self.widgets['cookie_aspath'].config(state = DISABLED)
self.widgets['cookie_yourid'].config(state = DISABLED)
self.widgets['btn_save'].config(state = DISABLED)
self.widgets['btn_start'].config(state = NORMAL)
self.current_stage = "init"
else:
self.add_txt("Invalid or expired cookies...Please try again...")
self.widgets['btn_exit'].config(state = NORMAL)
self.set_lbl("Click to continue")
else:
if exitFlag:
print(idlethreads)
if idlethreads >= len(threads):
print("exiting...")
self.set_lbl("Bye!")
self.main.destroy()
exit()
else:
self.main.after(1000, self.setup_next_stage)
def call_aquire_sessions(self):
self.widgets['btn_aquire'].config(state = DISABLED)
self.set_lbl("Please Wait...")
self.current_stage = "aquire"
aquire_sessions(self.records)
self.setup_next_stage()
def call_compress_sessions(self):
self.widgets['btn_compress'].config(state = DISABLED)
self.set_lbl("Please Wait...")
self.current_stage = "compress"
compress_sessions(self.records)
self.setup_next_stage()
def call_exit(self):
self.widgets['btn_exit'].config(state = DISABLED)
self.widgets['btn_aquire'].config(state = DISABLED)
self.widgets['btn_compress'].config(state = DISABLED)
self.widgets['btn_start'].config(state = DISABLED)
self.set_lbl("Shutting down... Waiting for threads to end... Please Wait...")
self.current_stage = "exit"
global threads, pauseFlag, workQueue, exitFlag
exitFlag = 1
self.setup_next_stage()
def call_save(self):
if self.current_stage == "setcookies":
self.setup_next_stage()
def call_save_json(self):
jsontofile(groupsfile, conn.groups)
save_cache(self.records, version)
csvtofile(csvfile, self.records)
def repeater(self):
global win_outputs, processes
outputs = win_outputs.copy()
win_outputs.clear()
for widget, strings in outputs.items():
if str(type(self.widgets[widget])) == "<class 'tkinter.Text'>":
string = "\n".join(strings)
self.add_txt(inputstr=string, widget=widget)
elif str(type(self.widgets[widget])) == "<class 'tkinter.Label'>":
string = strings[(len(strings)-1)]
self.set_lbl(inputstr=string, widget=widget)
elif str(type(self.widgets[widget])) == "<class 'tkinter.Button'>":
pass
oldprocesses = processes[:]
processes = []
for process in oldprocesses:
if process.poll():
processes.append(process)
self.add_txt(str(process.communicate()), widget='ffmpeg')
self.main.after(1000, self.repeater)
#Appends text at the end of a widget
def add_txt(self, inputstr, widget="output", tag="", end="\n"):
print(inputstr)
self.widgets[widget].config(state = NORMAL)
if tag != "":
self.widgets[widget].insert(END, inputstr + end, tag)
else:
self.widgets[widget].insert(END, inputstr + end)
self.widgets[widget].see(END)
self.main.update()
self.widgets[widget].config(state = DISABLED)
def set_lbl(self, inputstr, widget="status"):
self.widgets[widget].config(text=inputstr)
self.main.update()
def set_columns(self, widget, columns):
column_ids = []
count=0
for column in columns:
if count > 0:
column_ids.append(column['ID'])
count+=1
self.widgets[widget]['columns'] = column_ids
count = 0
for column in columns:
self.widgets[widget].heading('#'+str(count), text=column['Name'])
self.widgets[widget].column('#'+str(count), stretch=YES, width=column['width'])
count+=1
def add_node(self, widget, parent='', iid=None, row=(), text=None, index=0):
#print(self.widgets[widget])
#print(iid)
if self.widgets[widget].exists(iid):
self.widgets[widget].item(iid, text=text, values=row)
else:
self.widgets[widget].insert(parent, index, iid=iid, text=text, values=row)
def onDoubleClick(self, event):
''' Executed, when a row is double-clicked. Opens
read-only EntryPopup above the item's column, so it is possible
to select text '''
print("double-clicked")
# close previous popups
#self.destroyPopups()
# what row and column was clicked on
rowid = self.tree.identify_row(event.y)
column = self.tree.identify_column(event.x)
# clicked row parent id
parent = self.tree.parent(rowid)
# do nothing if item is top-level
if parent != '':
# get column position info
x,y,width,height = self.tree.bbox(rowid, column)
# y-axis offset
pady = height // 2
# place Entry popup properly
#url = self.tree.item(rowid, 'text')
curItem = self.tree.item(self.tree.focus())
itemvalues = [curItem['text']] + curItem['values']
#print(itemvalues, rowid, column[1:],x,y,width,height)
self.entryPopup = EntryPopup(self.tree, itemvalues[int(column[1:])])
self.entryPopup.place( x=x, y=y+pady, anchor=W, width=width)
class EntryPopup(Entry):
def __init__(self, parent, text, **kw):
self.parent=parent
''' If relwidth is set, then width is ignored '''
super().__init__(self.parent, **kw)
self.insert(0, text)
self['state'] = 'readonly'
self['readonlybackground'] = 'white'
self['selectbackground'] = '#1BA1E2'
self['exportselection'] = False
self.focus_force()
self.bind("<Control-a>", self.selectAll)
self.bind("<Escape>", lambda *ignore: self.destroy())
def selectAll(self, *ignore):
''' Set selection on the whole text '''
self.selection_range(0, 'end')
# returns 'break' to interrupt default key-bindings
return 'break'
class threaders(threading.Thread):
def __init__(self, threadID, name):
threading.Thread.__init__(self)
self.threadID = threadID
self.name = name
self.lablel = name +'-label'
self.ffmpeg = name+'-ffmpeg'
self.idle = 1
def run(self):
to_print_d("Starting " + self.name, self.name)
self.process_data(self.name)
self.idle = 1
to_print_d(self.name + " has stopped", self.name)
def process_data(self, threadName):
global window, queueLock, workQueue, conn, SessionsInfo, SessionsMeta, exitFlag, pauseFlag
while not exitFlag:
queueLock.acquire()
if not workQueue.empty():
datas = workQueue.get()
queueLock.release()
if 'GetSession' in datas:
self.idle = 0
to_print(self.name + " - Working", widget=self.lablel)
sessionid = datas['GetSession']['sessionid']
groupid = datas['GetSession']['groupid']
sessionindex = datas['GetSession']['sessionindex']
cachedData = {}
if 'cachedData' in datas['GetSession']:
cachedData = datas['GetSession']['cachedData']
to_print_d("Processing: " + sessionid, widget=self.name)
print("Processing: " + sessionid)
sessionInfo = conn.GetSession(sessionid, groupid, sessionindex, self.name)
if sessionInfo != None:
if len(sessionInfo['streams']) > 0:
if len(cachedData) > 0:
to_print_d("Using online version using cached for: " + sessionid, widget=self.name)
for key, value in cachedData.items():
if key not in sessionInfo:
sessionInfo[key] = value
if 'streams' in cachedData:
for cachedSteam in cachedData['streams']:
found = False
for stream in sessionInfo['streams']:
if cachedSteam['PublicID'] == stream['PublicID']:
found = True
if not found:
sessionInfo['streams'].append(cachedSteam)
if 'Timestamps' in cachedData:
for cachedTS in cachedData['Timestamps']:
found = False
for stream in sessionInfo['Timestamps']:
if cachedTS['ID'] == stream['ID']:
found = True
if not found:
sessionInfo['Timestamps'].append(cachedTS)
else:
to_print_d("Using online version only for: " + sessionid, widget=self.name)
if sessionid in SessionsMeta:
for key, value in SessionsMeta[sessionid].items():
if key in sessionInfo:
sessionInfo[key] = value
SessionsInfo[sessionInfo['SessionGroupID']][sessionid] = sessionInfo
add_session_row(sessionInfo, groupid)
else:
to_print_d("No streams for: " + sessionid, widget=self.name)
elif len(cachedData) > 0:
to_print_d("No online version using cached for: " + sessionid, widget=self.name)
sessionInfo = cachedData
if sessionid in SessionsMeta:
for key, value in SessionsMeta[sessionid].items():
if key in sessionInfo:
sessionInfo[key] = value
SessionsInfo[sessionInfo['SessionGroupID']][sessionid] = sessionInfo
add_session_row(sessionInfo, groupid)
else:
to_print_d("Data error for: " + sessionid, widget=self.name)
if 'aquire_session' in datas:
self.idle = 0
to_print(self.name + " - Working", widget=self.lablel)
data = datas['aquire_session']
to_print_d("Processing: " + data['SessionName'], widget=self.name)
aquire_session(data, self.name)
if 'compress_session' in datas:
self.idle = 0
to_print(self.name + " - Working", widget=self.lablel)
data = datas['compress_session']
to_print_d("Processing: " + data['SessionName'], widget=self.name)
compress_session(data, self.name)
to_print(self.name + " - Idle", widget=self.lablel)
else:
queueLock.release()
to_print(self.name + " - Idle", widget=self.lablel)
self.idle = 1
if pauseFlag:
time.sleep(5)
else:
time.sleep(1)
class connection():
def __init__(self):
if os.path.exists(groupsfile):
print('Checking for previous group data')
with open(groupsfile, "r") as text_file:
data=text_file.read()
if data.strip() != "":
self.groups = json.loads(data)
else:
self.groups = {'000':{'Name':'Miscellaneous','OrigName':'Miscellaneous','AncestorID':'000'}}
self.attempts=0
def set_cookies(self, cookies):
self.cookies = cookies
def get_data(self, url, headers={"Content-Type": "application/json; charset=utf-8"}, data=None):
if data != None:
databin = data.encode('utf-8')
else:
databin = "".encode('utf-8')
headers["cookie"] = self.cookies
req = urllib.request.Request(url=url, headers=headers, data=databin)
#print(req.headers)
worked = False
attempts = 0;
errtxt = ''
while(worked == False and attempts < 1):
try:
resp = urllib.request.urlopen(req, cafile=cafileMain)
worked = True
except urllib.error.HTTPError as e:
errtxt = f'HTTPError: {e}'
print(errtxt)
window.add_txt(errtxt)
attempts+=1
outcome = 'Success' if worked else 'Failure'
print(f"HTTP Request Result: {outcome}, Attempts: {attempts}")
if(not worked or attempts > 1):
logging.debug(f"HTTP Request Result: {outcome}, Attempts: {attempts}")
logging.debug(req.headers)
logging.debug(errtxt)
if worked:
return resp.read()
else:
return None
def TestConnection(self):
global targets;
self.attempts+=1
window.add_txt('Testing Cookies: Attempt ' + str(self.attempts))
bodydict = {"queryParameters":{"query":None, "page":0, "startDate":None,"endDate":None}}
url = targets['urltarget'] + "/Services/Data.svc/GetSessions"
headers={"Content-Type": "application/json; charset=utf-8"}
dataraw = self.get_data(url=url, headers=headers, data =json.dumps(bodydict))
worked = False
if dataraw != None:
data = self.decode_json(dataraw)
results = data['d']['Results']
#print(data)
if results and len(results) > 0:
worked = True
return worked
def GetSessions(self):
window.add_txt('Getting Sessions')
bodydict = {"queryParameters":{
"query":None,
"sortColumn":1,
"sortAscending":False,
"maxResults":500,
"page":0,
"startDate":None,
"endDate":None,
"bookmarked":False,
"getFolderData":False,
"isSharedWithMe":False,
"includePlaylists":True
}}
global targets;
url = targets['urltarget'] + "/Services/Data.svc/GetSessions"
headers={"Content-Type": "application/json; charset=utf-8"}
dataraw = self.get_data(url=url, headers=headers, data=json.dumps(bodydict))
data = self.decode_json(dataraw)
results = data['d']['Results']
records = {}
#print(results)
for record in results:
if 'DeliveryID' in record and record['DeliveryID'] != None:
DeliveryID = record['DeliveryID']
if 'FolderName' in record and record['FolderName'] != None:
defaultName = record['FolderName']
else:
defaultName = 'Miscellaneous'
#print(DeliveryID)
window.add_txt('Processing: ' + DeliveryID + ' in ' + defaultName)
groupID = '000'
if 'FolderID' in record:
groupID = record['FolderID']
elif defaultName != 'Miscellaneous':
errtxt = f'Error: No group ID, defaultName: {defaultName}, attempting reverse lookup'
window.add_txt(errtxt)
for key, item in self.groups.items():
#print(item['Name'])
if item['OrigName'] == defaultName:
groupID = item['AncestorID']
if groupID == '000':
errtxt = f'Reverse lookup failed'
window.add_txt(errtxt)
else:
errtxt = f'Error: No group ID, defaultName: {defaultName}'
window.add_txt(errtxt)
groupID = '000'
if groupID not in self.groups:
groupAncestorID = self.GetAncestorGroup(groupID)
self.groups[groupID] = self.GetGroupData(groupAncestorID)
if self.groups[groupID]['Name'] == None:
formattedName = regexgroup(defaultName)
errtxt = f'Error: No empty group name, defaulting to: {formattedName}'
window.add_txt(errtxt)
self.groups[groupID]['Name'] = formattedName
if groupAncestorID not in self.groups:
self.groups[groupAncestorID] = self.groups[groupID]
else:
print(groupID)
groupAncestorID = self.groups[groupID]['AncestorID']
groupID = groupAncestorID
if groupID not in records:
records[groupID] = []
#StartTime = jsontots(record['StartTime'])
records[groupID].append({'DeliveryID': DeliveryID})
else:
print('Broken record: ')
print(record)
#print(self.groups)
return {key: records[key] for key in sorted(records.keys(), key=lambda item: self.groups[item]['Name'])}
def GetAncestorGroup(self, FolderID):
bodydict = {"queryParameters":{
"query":None,
"sortColumn":1,
"sortAscending":False,
"maxResults":25,
"page":0,
"startDate":None,
"endDate":None,
"folderID":FolderID,
"bookmarked":False,
"getFolderData":True,
"isSharedWithMe":False,
"includePlaylists":True}
}
global targets;
url = targets['urltarget'] + "/Services/Data.svc/GetSessions"
headers={"Content-Type": "application/json; charset=utf-8"}
dataraw = self.get_data(url=url, headers=headers, data=json.dumps(bodydict))
if dataraw != None:
data = self.decode_json(dataraw)
if 'd' in data and 'ParentFolderId' in data['d'] and data['d']['ParentFolderId'] != None and data['d']['ParentFolderId'] != "":
window.add_txt('ParentFolderId: ' + data['d']['ParentFolderId'])
return self.GetAncestorGroup(data['d']['ParentFolderId'])
else:
return FolderID
else:
return FolderID
def GetGroupData(self, FolderID):
bodydict = {"folderID":FolderID}
global targets;
url = targets['urltarget'] + "/Services/Data.svc/GetFolderInfo"
headers={"Content-Type": "application/json; charset=utf-8"}
dataraw = self.get_data(url=url, headers=headers, data=json.dumps(bodydict))
if dataraw != None:
data = self.decode_json(dataraw)
#print(data)
if 'd' in data and 'Name' in data['d'] and data['d']['Name'] != None and data['d']['Name'] != "":
window.add_txt('Ancestor Name: ' + data['d']['Name'])
return {
'Name':regexgroup(data['d']['Name']),
'OrigName':data['d']['Name'],
'AncestorID':FolderID
}
else:
return None
else:
return None
def GetSession(self, sessionid, groupid, sessionindex, thread="output"):
body = "deliveryId=" + sessionid + "&invocationId=&isLiveNotes=false&refreshAuthCookie=false&isActiveBroadcast=false&isEditing=false&isKollectiveAgentInstalled=false&isEmbed=false&responseType=json"
global targets;
url = targets['urltarget'] + '/Pages/Viewer/DeliveryInfo.aspx'
headers={"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}
dataraw = self.get_data(url=url, headers=headers, data=body)
if dataraw != None:
data = self.decode_json(dataraw)
if 'Delivery' in data:
#SessionGroup = norm_fn(data['Delivery']['SessionGroupLongName'])
SessionGroupID = groupid
SessionGroup = self.groups[groupid]['Name']
session = {}
for key, item in data['Delivery'].items():
session[key] = item
SessionName = norm_fn(data['Delivery']['SessionName'])
StartTime = win2unixts(data['Delivery']['SessionStartTime'])
Owner = data['Delivery']['OwnerDisplayName']
SessionAbstract = data['Delivery']['SessionAbstract']
name = fixsessionname(SessionName, SessionGroup, sessionindex)
if SessionAbstract == "Presented by":
SessionAbstract = name
to_print_d("working on: " + name, widget=thread)
session['SessionID'] = sessionid
session['SessionName'] = name
session['Name'] = name
session['SessionGroupID'] = SessionGroupID
session['SessionGroup'] = SessionGroup
session['SessionAbstract'] = SessionAbstract
session['StartTime'] = StartTime
session['Owner'] = Owner
session['streams'] = []
session['Streams'] = []
if data['Delivery']['IsPurgedEncode']:
print('Purged stream, getting purged encode')
embeddedurlmatches = re.match(r'.*src="(.*?)".*', data['EmbedUrl'], flags=re.IGNORECASE|re.UNICODE)
if(embeddedurlmatches):
embeddedurl = embeddedurlmatches.group(1)
print(embeddedurl)
html = conn.get_data(embeddedurl, headers={"Content-Type": "text/plain"}).decode("UTF-8", errors='backslashreplace')
#print(html)
videourlmatch = re.search(r'"VideoUrl":"(.*?)"', html, flags=re.IGNORECASE|re.UNICODE)
#print(videourlmatch)
if videourlmatch:
videourl = videourlmatch.group(1).replace("\\", "")
#print(videourlmatch.group(1))
StreamHttpUrl = videourl
StreamUrl = videourl
StreamTypeName = 'Encoded'
Tag = 'NoTag'
PublicIDSafe = norm_fn(videourl)
#httpurlshort = StreamHttpUrl[:StreamHttpUrl.index("?")]
#ext = httpurlshort[-3:]
ext = 'mp4'
#DownloadUrl = StreamUrl[:StreamUrl.index(".hls")] + '.vsp.' + ext
#urlshort = StreamUrl[:StreamUrl.index("?")]
DownloadUrl = processurl(StreamUrl)
if DownloadUrl != None:
streamData = {}
Folder = SessionGroup + '/' + name
Path = Folder + '/' + Tag + '-' + StreamTypeName + '-' + PublicIDSafe + '.' + ext
streamData['PublicID'] = PublicIDSafe
streamData['Folder'] = Folder
streamData['Path'] = Path
streamData['DownloadUrl'] = DownloadUrl
streamData['Tag'] = Tag
streamData['StreamTypeName'] = StreamTypeName
streamData['PurgedEncodeStream'] = True
session['streams'].append(streamData)
#else:
for sessStream in data['Delivery']['Streams']:
#print(sessStream)
print('Processing stream: ' + sessStream['PublicID'])
#StreamHttpUrl = sessStream['StreamHttpUrl']
StreamUrl = sessStream['StreamUrl']
StreamTypeName = norm_fn(sessStream['StreamTypeName'])
Tag = norm_fn(sessStream['Tag'])
PublicIDSafe = norm_fn(sessStream['PublicID'])
#httpurlshort = StreamHttpUrl[:StreamHttpUrl.index("?")]
#ext = httpurlshort[-3:]
ext = 'mp4'
#DownloadUrl = StreamUrl[:StreamUrl.index(".hls")] + '.vsp.' + ext
urlshort = StreamUrl[:StreamUrl.index("?")]
DownloadUrl = processurl(urlshort)
if DownloadUrl != None:
streamData = {}
for key, item in sessStream.items():
streamData[key] = item
Folder = SessionGroup + '/' + name
Path = Folder + '/' + Tag + '-' + StreamTypeName + '-' + PublicIDSafe + '.' + ext
streamData['Folder'] = Folder
streamData['Path'] = Path
streamData['DownloadUrl'] = DownloadUrl
streamData['Tag'] = Tag
streamData['StreamTypeName'] = StreamTypeName
streamData['PurgedEncodeStream'] = False
session['streams'].append(streamData)
return session
else:
print('Error, invalid repsonse for session: ' + sessionid)
if 'ErrorMessage' in data:
print('Reason given: ' + data['ErrorMessage'])
#print(data)
return None
else:
return None
def GetSessionsInfo(self, records):
to_print_d('Getting Session Info')
global queueLock, workQueue, SessionsInfo, SessionsMeta, groupsfile, threads
if not os.path.exists(cachefolder) and os.path.exists(seshfile):
window.add_txt('old seshfile processing')
OldSeshfile = self.json_file(seshfile)
if not isinstance(OldSeshfile, str) and len(OldSeshfile) > 0:
numSessions = 0
for key, group in OldSeshfile.items():
window.add_txt('old seshfile group: ' + key + ', num sessions: ' + str(len(group)))
numSessions += len(group)
window.add_txt('number of old seshfile sessions: ' + str(numSessions))
save_cache(OldSeshfile, 0)
SessionsMeta = self.get_stored_metadata(csvfile)
# for entry in os.scandir(cachefolder):
# if entry.is_file() and entry.path.endsWith('.json') and entry.name.startsWith('cache'):
# window.add_txt('loading: ' + entry.name)
# print('loading: ' + entry.name)
queueLock.acquire()
for groupid, sessionids in records.items():
grouplist = list(sessionids)
group = self.groups[groupid]
window.add_txt('Adding to queue for Group: ' + group['Name'])
rowdata = (group['Name'], "Excluded")
if group_included(group['Name']):
rowdata = (group['Name'], "Included")
window.add_node('tree1', iid=groupid, text='', row=rowdata, index='end')
SessionsInfo[groupid] = {}
cachePath = cache_fldr(groupid);
window.add_txt('Checking for group cache: ' + cachePath)
cacheGroup, cacheVer = self.get_cached_sessions(cachePath)
window.add_txt('Number of cached sessions: ' + str(len(cacheGroup)))
for sessionidtmp in sessionids:
sessionid = sessionidtmp['DeliveryID']
sessionindex = len(grouplist) - grouplist.index(sessionidtmp)
window.add_txt('Session: ' + sessionid + ": ", end="")
if sessionid in cacheGroup:
SessionCached = cacheGroup[sessionid]
if cacheVer >= 4.0:
window.add_txt('Using previous data')
if sessionid in SessionsMeta:
for key, value in SessionsMeta[sessionid].items():
if key in SessionCached:
SessionCached[key] = value
SessionsInfo[groupid][sessionid] = SessionCached
add_session_row(SessionCached, groupid)
else:
window.add_txt('Updating cache from old version')
workQueue.put({'GetSession': {'sessionid':sessionid, 'groupid':groupid, 'sessionindex':sessionindex, 'cachedData': cacheGroup[sessionid]}})
else:
output = 'Not cached, Using new data'
window.add_txt(output)
workQueue.put({'GetSession': {'sessionid':sessionid, 'groupid':groupid, 'sessionindex':sessionindex}})
queueLock.release()
window.add_txt('Processing queue')
def get_cached_sessions(self, path):
window.add_txt('Checking for cached data downloaded')
previousData = self.json_file(path)
data = {}
preVersion = 0
if 'data' in previousData:
data = previousData['data']
if 'version' in previousData:
preVersion = previousData['version']
return data, preVersion
def get_stored_metadata(self, path):
window.add_txt('Checking for custom metadata')
metaData = self.csv_file(path)
return metaData
def json_file(self, path):
data = {}
if os.path.exists(path):
window.add_txt('Decoding json ' + path)
with open(path, "r") as text_file:
data=text_file.read()
if data.strip() != "":
data = json.loads(data)
return data
def csv_file(self, path):
data = {}
if os.path.exists(csvfile):
window.add_txt('Decoding csv ' + path)
with open(csvfile, "r") as csv_file:
fieldnames=['StartTime', 'SessionName','SessionAbstract','SessionID']
csv_reader = csv.DictReader(csv_file, fieldnames=fieldnames)
for row in csv_reader:
if row['SessionID'] != "" and row['SessionID'] != "SessionID":
StartTime = time.mktime(datetime.datetime.strptime(row['StartTime'], '%Y-%m-%d %H-%M').timetuple())
data[row['SessionID']] = {'StartTime':StartTime,'SessionName':row['SessionName'], 'SessionAbstract':row['SessionAbstract']}