-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.py
933 lines (858 loc) · 47.9 KB
/
server.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
#!/usr/bin/env python3
import sys
import uuid
import time
import json
import base64
from pathlib import Path
from pprint import pprint
import tempfile
import zipfile
import shutil
import requests
from binascii import b2a_hex
from sanic import Sanic
from sanic import Blueprint
from sanic.response import html as sanic_html
from sanic.response import raw as sanic_raw
from sanic.response import json as sanic_json
from sanic.response import file as sanic_file
from sanic.response import file_stream as sanic_file_stream
from sanic.response import stream as sanic_stream
from sanic.request import Request
# from sanic_jwt_extended import JWT , jwt_required
# from sanic_jwt_extended.tokens import Token
import utils
import compute_image_maps
import image_uploader
import interactive_notes_generator
from pptx import Presentation
from copy import deepcopy
import pytz
import datetime
from datetime import timedelta
from dateutil.relativedelta import relativedelta
# import magic
from ulid import ULID
import jwt
time_zone = pytz.timezone( "US/Eastern" )
app = Sanic( __name__ )
# https://pypi.org/project/python-magic/
# sudo apt-get install libmagic1
# brew install libmagic
# pip install python-magic-bin
# mime = magic.Magic( mime=True )
DEFAULT_CONFIG = utils.read_json( sys.argv[1] )
app.static( "/host/static/js" , "./js" )
app.static( "/host/static/css" , "./css" )
# app.static( "/css" , "./css" )
# https://sanic-jwt-extended.seonghyeon.dev/config_options.html
# https://pyjwt.readthedocs.io/en/latest/algorithms.html
# with JWT.initialize( app ) as manager:
# manager.config.secret_key = DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ]
# manager.config.public_key = DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_public_key" ]
# manager.config.private_key = DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_private_key" ]
# manager.config.algorithm = "HS512"
# manager.config.jwt_header_key = "token"
# manager.config.jwt_header_prefix = "Bearer"
# manager.config.jwt_cookie = "ppt_interactive_image_upload_server"
# manager.config.access_token_expires = timedelta( weeks=( 52 * 10 ) )
def update_config_with_form_key( request , form_key , config , *config_keys ):
item = request.form.get( form_key )
print( item )
if item != None and len( item ) > 0:
utils.set_nested_dictionary_value( config , config_keys , item )
def get_updated_config( request ):
print( request.form )
config = DEFAULT_CONFIG
if hasattr( request , "form" ) == False:
print( "no form ??" )
return config
update_config_with_form_key( request , "background_color" , config , [ "parser" , "our_background_textbox_hex" ] )
update_config_with_form_key( request , "exported_width" , config , [ "parser" , "exported_width" ] )
update_config_with_form_key( request , "exported_height" , config , [ "parser" , "exported_height" ] )
update_config_with_form_key( request , "exported_image_dpi" , config , [ "parser" , "exported_image_dpi" ] )
update_config_with_form_key( request , "image_scale_percentage" , config , [ "html" , "image_scale_percentage" ] )
update_config_with_form_key( request , "unanswered_color" , config , [ "html" , "unanswered_color" ] )
update_config_with_form_key( request , "answered_color" , config , [ "html" , "answered_color" ] )
update_config_with_form_key( request , "text_color" , config , [ "html" , "text_color" ] )
update_config_with_form_key( request , "text_font" , config , [ "html" , "text_font" ] )
update_config_with_form_key( request , "text_x_offset_factor" , config , [ "html" , "text_x_offset_factor" ] )
update_config_with_form_key( request , "text_y_offset_factor" , config , [ "html" , "text_y_offset_factor" ] )
update_config_with_form_key( request , "base_hosted_url" , config , [ "html" , "base_hosted_url" ] )
update_config_with_form_key( request , "interactive_typing_js" , config , [ "html" , "cdn" , "interactive_typing_js" ] )
update_config_with_form_key( request , "interactive_drag_and_drop_js" , config , [ "html" , "cdn" , "interactive_drag_and_drop_js" ] )
update_config_with_form_key( request , "jquery_ui_css" , config , [ "html" , "cdn" , "jquery_ui_css" , "url" ] )
update_config_with_form_key( request , "jquery_ui_js" , config , [ "html" , "cdn" , "jquery_ui_js" , "url" ] )
update_config_with_form_key( request , "jquery_js" , config , [ "html" , "cdn" , "jquery_js" , "url" ] )
update_config_with_form_key( request , "bootstrap_css" , config , [ "html" , "cdn" , "bootstrap_css" , "url" ] )
update_config_with_form_key( request , "bootstrap_bundle" , config , [ "html" , "cdn" , "bootstrap_bundle" , "url" ] )
## Addon
# secret_key = request.form.get( "secret_key" )
# if item != None and len( item ) > 0:
# config[ "secret_key" ] = secret_key
# just generate new secret key every time
pprint( config )
return config
@app.route( "/" , methods=[ "GET" ] )
async def home( request: Request ):
return sanic_html( f'''<!DOCTYPE html>
<html>
<head>
<title>Interactive Powerpoint Generator</title>
<h1>Interactive Powerpoint Generator</h1>
<a href="https://ipg.39363.org/host">Generate Hosted Version</a><br><br>
<a href="https://ipg.39363.org/local">Generate Local Version</a><br><br>
<a href="https://github.com/0187773933/PowerPointInteractiveGamesGenerator">https://github.com/0187773933/PowerPointInteractiveGamesGenerator</a>
</head>
</html>
''')
@app.route( "/host" , methods=[ "GET" ] )
async def local( request: Request ):
return sanic_html( f'''<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PowerPoint - Interactive Game Generator</title>
</head>
<body>
<h1>PowerPoint Interactive Hosted Game Generator - Stage 1</h1>
<h3>Instructions for Stage 1</h3>
<ol>
<li>Create a PowerPoint with TextBoxes that have all been filled with the same predetermined hex color</li>
<li>Upload that .pptx file here</li>
<li>Download Generated .pttx file that contain slides with the text removed</li>
<li><a href="/host/stage/2">Go to Stage 2</a></li>
</ol>
<form id="our-form" enctype="multipart/form-data" action="/host/stage/1" method="POST" onsubmit="on_submit();">
<input type="file" id="powerpoint" name="file"><br><br>
<span>Textbox Background Color (Hex)</span>  <input type="text" id="background_color" name="background_color" placeholder="0070C0"><br></br>
<input type="submit">
</form>
<script type="text/javascript">
function on_submit() {{
let form = document.getElementById( "our-form" );
let hex_color = form.elements[ "background_color" ].value || "0070C0";
let form_action = "/host/stage/1/" + hex_color;
console.log( form_action );
form.action = form_action;
form.submit();
}}
</script>
</body>
</html>''')
# <span>Exported Slide Image Width</span>  <input type="text" id="exported_width" name="exported_width" placeholder="1920"><br>
# <span>Exported Slide Image Height</span>  <input type="text" id="exported_height" name="exported_height" placeholder="1080"><br>
# <span>Exported Slide Image DPI</span>  <input type="text" id="exported_image_dpi" name="exported_image_dpi" placeholder="144"><br>
# <span>Scale Percentage of Image</span>  <input type="text" id="image_scale_percentage" name="image_scale_percentage" placeholder="60"><br>
# <span>Unanswered Color Outline</span>  <input type="text" id="unanswered_color" name="unanswered_color" placeholder="red"><br>
# <span>Answered Color Outline</span>  <input type="text" id="answered_color" name="answered_color" placeholder="#13E337"><br>
# <span>Typing Text Color</span>  <input type="text" id="text_color" name="text_color" placeholder="white"><br>
# <span>Typing Text Font</span>  <input type="text" id="text_font" name="text_font" placeholder="17px Arial"><br>
# <span>Typing Text X-Offset</span>  <input type="text" id="text_x_offset_factor" name="text_x_offset_factor" placeholder="2"><br>
# <span>Typing Text Y-Offset</span>  <input type="text" id="text_y_offset_factor" name="text_y_offset_factor" placeholder="3"><br>
# <span>Base URL of Hosted HTML</span>  <input type="text" size="60" id="base_hosted_url" name="base_hosted_url" placeholder="https://39363.org/NOTES/WSU/2021/Fall/ANT3100/Interactive"><br>
# <span>CDN of Interactive Typing JS</span>  <input type="text" size="60" id="interactive_typing_js" name="interactive_typing_js" placeholder="https://39363.org/CDN/NOTES/interactive_typing.js"><br>
# <span>CDN of Interactive DragAndDrop JS</span>  <input type="text" size="60" id="interactive_drag_and_drop_js" name="interactive_drag_and_drop_js" placeholder="https://39363.org/CDN/NOTES/interactive_drag_and_drop.js"><br>
# <span>CDN of JQuery-UI CSS</span>  <input type="text" size="60" id="jquery_ui_css" name="jquery_ui_css" placeholder="https://39363.org/CDN/jquery-ui.css"><br>
# <span>CDN of JQuery-UI JS</span>  <input type="text" size="60" id="jquery_ui_js" name="jquery_ui_js" placeholder="https://39363.org/CDN/jquery-ui.min.js"><br>
# <span>CDN of JQuery JS</span>  <input type="text" size="60" id="jquery_js" name="jquery_js" placeholder="https://39363.org/CDN/jquery-3.6.0.min.js"><br>
# <span>CDN of Bootstrap CSS</span>  <input type="text" size="60" id="bootstrap_css" name="bootstrap_css" placeholder="https://39363.org/CDN/bootstrap.min.css"><br>
# <span>CDN of Bootstrap Bundle JS</span>  <input type="text" size="60" id="bootstrap_bundle" name="bootstrap_bundle" placeholder="https://39363.org/CDN/bootstrap.bundle.min.js"><br>
@app.post( "/host/stage/1/<hc:str>" , stream=True )
async def host_upload_stage_1( request , hc:str ):
try:
# print( request )
# print( vars( request ) )
# print( hc )
# print( type( hc ) )
config = get_updated_config( request )
if hc != None:
config[ "parser" ][ "our_background_textbox_hex" ] = hc
# 1.) Injest octet-stream
start_time = datetime.datetime.now().astimezone( time_zone )
with tempfile.TemporaryDirectory() as temp_dir:
temp_dir_posix = Path( temp_dir )
input_file_path = temp_dir_posix.joinpath( "input" )
print( "Uploading Test File" )
first_128 = bytes()
with open( str( input_file_path ) , "wb" ) as file:
while True:
body = await request.stream.read()
if body is None:
break
if len( first_128 ) < 129:
first_128 += body
file.write( body )
end_time = datetime.datetime.now().astimezone( time_zone )
duration = relativedelta( end_time , start_time )
duration_milliseconds = round( duration.microseconds / 1000 )
print( "The Upload Took %d year %d month %d days %d hours %d minutes %d seconds %d milliseconds" % (
duration.years , duration.months , duration.days , duration.hours , duration.minutes ,
duration.seconds , duration_milliseconds
))
# 2.) Discover File Type
print( input_file_path )
file_name = False
file_extension = False
file_name_stem = False
file_content_type = False
try:
test = first_128[ 0 : 500 ].decode( "utf-8" , "ignore" )
file_name = test.split( "filename=" )[ 1 ].split( "\n" )[ 0 ][ 1:-2 ]
file_extension = file_name.split( "." )[ -1 ]
file_name_stem = ".".join( file_name.split( "." )[ 0 : -1 ] )
file_content_type = test.split( "Content-Type: " )[ 1 ].split( "\n" )[ 0 ]
except Exception as file_type_decode_exception:
print( file_type_decode_exception )
print( file_name , file_extension , file_content_type )
print( input_file_path.stat() )
if file_name != False:
output_powerpoint_path = temp_dir_posix.joinpath( f"{file_name_stem}-Blank.pptx" )
else:
output_powerpoint_path = temp_dir_posix.joinpath( "Blank.pptx" )
# 3.) Create Copy of PowerPoint With All text removed from boxes with correct fill color
p = Presentation( input_file_path )
p_clone = deepcopy( p )
for slide_index , slide in enumerate( p_clone.slides ):
for shape_index , shape in enumerate( slide.shapes ):
if utils.validate_text_box( shape , config[ "parser" ][ "our_background_textbox_hex" ] ):
print( f"{slide_index} === {shape_index} === valid text box" )
shape.text_frame.text = ""
p_clone.save( str( output_powerpoint_path ) )
print( output_powerpoint_path )
print( output_powerpoint_path.stat() )
return await sanic_file(
str( output_powerpoint_path ) ,
mime_type="application/vnd.openxmlformats-officedocument.presentationml.presentation" ,
filename=output_powerpoint_path.name
)
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
@app.route( "/host/stage/2" , methods=[ "GET" ] )
async def host_upload_stage_2( request: Request ):
return sanic_html( f'''<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PowerPoint - Interactive Game Generator</title>
</head>
<body>
<h1>PowerPoint Interactive Hosted Game Generator - Stage 2</h1>
<h3>Instructions for Stage 2 </h3>
<ol>
<li>Open the -Blank.pptx that you should of just downloaded in PowerPoint</li>
<li>File --> Export --> File Format: JPEG , Save Every Slide , Width: 1920 , Height: 1080</li>
<li>Create .zip archive of the orginal .pptx you uploaded in Stage 1 and the folder of jpegs it just generated</li>
<li>Upload that .zip file here</a></li>
</ol>
<form id="our-form" enctype="multipart/form-data" action="/host/stage/2" method="POST" onsubmit="on_submit();">
<input type="file" id="powerpoint" name="file"><br><br>
<span>Textbox Background Color (Hex)</span>  <input type="text" id="background_color" name="background_color" placeholder="0070C0"><br>
<br></br>
<input type="submit">
</form>
<script type="text/javascript">
function on_submit() {{
let form = document.getElementById( "our-form" );
let hex_color = form.elements[ "background_color" ].value || "0070C0";
let form_action = "/host/stage/2/" + hex_color;
console.log( form_action );
form.action = form_action;
form.submit();
}}
</script>
</body>
</html>''')
# <span>Exported Slide Image Width</span>  <input type="text" id="exported_width" name="exported_width" placeholder="1920"><br>
# <span>Exported Slide Image Height</span>  <input type="text" id="exported_height" name="exported_height" placeholder="1080"><br>
# <span>Exported Slide Image DPI</span>  <input type="text" id="exported_image_dpi" name="exported_image_dpi" placeholder="144"><br>
# <span>Scale Percentage of Image</span>  <input type="text" id="image_scale_percentage" name="image_scale_percentage" placeholder="60"><br>
# <span>Unanswered Color Outline</span>  <input type="text" id="unanswered_color" name="unanswered_color" placeholder="red"><br>
# <span>Answered Color Outline</span>  <input type="text" id="answered_color" name="answered_color" placeholder="#13E337"><br>
# <span>Typing Text Color</span>  <input type="text" id="text_color" name="text_color" placeholder="white"><br>
# <span>Typing Text Font</span>  <input type="text" id="text_font" name="text_font" placeholder="17px Arial"><br>
# <span>Typing Text X-Offset</span>  <input type="text" id="text_x_offset_factor" name="text_x_offset_factor" placeholder="2"><br>
# <span>Typing Text Y-Offset</span>  <input type="text" id="text_y_offset_factor" name="text_y_offset_factor" placeholder="3"><br>
# <span>Base URL of Hosted HTML</span>  <input type="text" size="60" id="base_hosted_url" name="base_hosted_url" placeholder="https://39363.org/NOTES/WSU/2021/Fall/ANT3100/Interactive"><br>
# <span>CDN of Interactive Typing JS</span>  <input type="text" size="60" id="interactive_typing_js" name="interactive_typing_js" placeholder="https://39363.org/CDN/NOTES/interactive_typing.js"><br>
# <span>CDN of Interactive DragAndDrop JS</span>  <input type="text" size="60" id="interactive_drag_and_drop_js" name="interactive_drag_and_drop_js" placeholder="https://39363.org/CDN/NOTES/interactive_drag_and_drop.js"><br>
# <span>CDN of JQuery-UI CSS</span>  <input type="text" size="60" id="jquery_ui_css" name="jquery_ui_css" placeholder="https://39363.org/CDN/jquery-ui.css"><br>
# <span>CDN of JQuery-UI JS</span>  <input type="text" size="60" id="jquery_ui_js" name="jquery_ui_js" placeholder="https://39363.org/CDN/jquery-ui.min.js"><br>
# <span>CDN of JQuery JS</span>  <input type="text" size="60" id="jquery_js" name="jquery_js" placeholder="https://39363.org/CDN/jquery-3.6.0.min.js"><br>
# <span>CDN of Bootstrap CSS</span>  <input type="text" size="60" id="bootstrap_css" name="bootstrap_css" placeholder="https://39363.org/CDN/bootstrap.min.css"><br>
# <span>CDN of Bootstrap Bundle JS</span>  <input type="text" size="60" id="bootstrap_bundle" name="bootstrap_bundle" placeholder="https://39363.org/CDN/bootstrap.bundle.min.js"><br>
@app.post( "/host/stage/2/<hc:str>" , stream=True )
async def host_upload_stage_2( request , hc: str ):
try:
# So somehow "streams" in sanic the form get stripped , so this is temporary solution
config = get_updated_config( request )
if hc != None:
config[ "parser" ][ "our_background_textbox_hex" ] = hc
# 1.) Injest octet-stream
start_time = datetime.datetime.now().astimezone( time_zone )
with tempfile.TemporaryDirectory() as temp_dir:
temp_dir_posix = Path( temp_dir )
input_file_path = temp_dir_posix.joinpath( "input.zip" )
print( "Uploading Test File" )
first_128 = bytes()
with open( str( input_file_path ) , "wb" ) as file:
while True:
body = await request.stream.read()
if body is None:
break
if len( first_128 ) < 129:
first_128 += body
file.write( body )
end_time = datetime.datetime.now().astimezone( time_zone )
duration = relativedelta( end_time , start_time )
duration_milliseconds = round( duration.microseconds / 1000 )
print( "The Upload Took %d year %d month %d days %d hours %d minutes %d seconds %d milliseconds" % (
duration.years , duration.months , duration.days , duration.hours , duration.minutes ,
duration.seconds , duration_milliseconds
))
# 2.) Discover File Type
file_name = False
file_extension = False
file_name_stem = False
file_content_type = False
try:
test = first_128[ 0 : 500 ].decode( "utf-8" , "ignore" )
file_name = test.split( "filename=" )[ 1 ].split( "\n" )[ 0 ][ 1:-2 ]
file_extension = file_name.split( "." )[ -1 ]
file_name_stem = ".".join( file_name.split( "." )[ 0 : -1 ] )
file_content_type = test.split( "Content-Type: " )[ 1 ].split( "\n" )[ 0 ]
except Exception as file_type_decode_exception:
print( file_type_decode_exception )
# 3.) Extract the Zip
with zipfile.ZipFile( str( input_file_path ) , "r" ) as zip_ref:
zip_ref.extractall( str( temp_dir_posix ) )
# 4.) Sort Files and Folders Contained in Zip
files_and_folders = temp_dir_posix.glob( '*' )
uploaded_powerpoint_path = False
image_paths = []
for x in temp_dir_posix.iterdir():
if x.is_file():
if x.suffix == ".pptx":
uploaded_powerpoint_path = x
elif x.is_dir():
if x.stem == "__MACOSX":
continue
jpegs = x.glob( "*" )
jpegs = [ i for i in jpegs if i.is_file() ]
for index , i in enumerate( jpegs ):
if i.suffix == ".jpg":
image_paths.append( x.joinpath( f"Slide{index+1}.jpg" ) )
elif i.suffix == ".jpeg":
image_paths.append( x.joinpath( f"Slide{index+1}.jpeg" ) )
## Addon , generate secret box key unique to this .pptx
SECRET_BOX_KEY = utils.secret_box_generate_new_key()
# 5.) Copy Uploaded Images to Hosted Storage Directory
output_images_path = Path( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "local_image_storage_path" ] )
output_blob_path = Path( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "local_blob_storage_path" ] )
image_ulids = []
for index , image_path in enumerate( image_paths ):
#shutil.copyfile( image_path , output_images_path.joinpath( image_path.name ) )
## Addon , encrypt images
with open( str( image_path ) , "rb" ) as img_file:
image_bytes = img_file.read()
image_bytes_b64_bytes = base64.b64encode( image_bytes )
image_bytes_b64_string = image_bytes_b64_bytes.decode()
image_ulid = str( ULID() )
image_ulids.append( image_ulid )
utils.write_json( str( output_images_path.joinpath( f"{image_ulid}.json" ) ) , {
"sealed": utils.secret_box_seal( SECRET_BOX_KEY , image_bytes_b64_string )
})
# 6.) Compute Image Maps
image_maps_in_slides = compute_image_maps.compute( str( uploaded_powerpoint_path ) , config[ "parser" ] )
if len( image_paths ) != len( image_maps_in_slides ):
print( "Lengths of Slide Images and Slide Image Maps Don't Match" )
# print( "This could mean some slides don't have any thing but" )
sys.exit( 1 )
## Addon.) Create "blob" object that can just be passed either to DragAndDrop or Typing HTML file
## Contains image-maps , encrypted hosted-image-file-path objects , ALWAYS maintain expansion opportunity , add meta
## Addon.) Generate ULID for each ImagePath
## Then , seal ULID in a JWT Token , this will be appended as a url parameter ?p="asdf"
# https://pyjwt.readthedocs.io/en/latest/usage.html
# https://pyjwt.readthedocs.io/en/latest/algorithms.html?highlight=algorithm
# Ran into problems with RS512 ,
# you can generate a keypair : openssl ecparam -name secp521r1 -genkey -noout -out private.ec.key
# and then store it base64 encoded in config.json
# , but on mac osx where we are testing : '_EllipticCurvePrivateKey' object has no attribute 'verify'
# so changed back to HS512
blob = { "title": file_name_stem , "slide_objects": [] }
blob_ulid = str( ULID() )
blob_file_path = Path( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "local_blob_storage_path" ] ).joinpath( f"{blob_ulid}.json" )
for index , image_path in enumerate( image_paths ):
blob[ "slide_objects" ].append({
"image_map": image_maps_in_slides[ index ] ,
# "token": token.decode( "utf-8" ) ,
"image_ulid": image_ulids[ index ]
})
blob_json_str = json.dumps( blob )
blob_json_b64 = utils.base64_encode( blob_json_str )
utils.write_json( str( blob_file_path ) , {
"sealed": utils.secret_box_seal( SECRET_BOX_KEY , blob_json_b64 )
})
token = jwt.encode({ "blob_ulid": blob_ulid , "key": SECRET_BOX_KEY } ,
# utils.base64_decode( config[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
config[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithm=config[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ]
)
if type( token ) == bytes:
token_string = token.decode( "utf-8" )
else:
token_string = token
print( "\n" )
drag_and_drop_url = f'{config[ "html"][ "base_hosted_url" ]}/host/DragAndDrop?t={token_string}'
typing_url = f'{config[ "html"][ "base_hosted_url" ]}/host/Typing?t={token_string}'
print( drag_and_drop_url )
print( "\n" )
print( typing_url )
# return sanic_json( dict( testing="unfinished , figuring out where to upload and serve images , with keys and such , routing" ) , status=200 )
return sanic_html( f'''<!DOCTYPE html>
<htm>
<head>
<title>Sharable Links</title>
</head>
<body>
<h1>Sharable Links</h1>
<a href="{drag_and_drop_url}">{drag_and_drop_url}</a><br><br>
<a href="{typing_url}">{typing_url}</a>
</body>
<html>''')
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
@app.route( "/host/image/<ulid:str>" , methods=[ "GET" ] )
async def local( request: Request , ulid: str ):
try:
token = request.args.get( "t" )
if token == None:
return sanic_json( dict( failed="no token" ) , status=200 )
decoded = False
try:
decoded = jwt.decode(
token ,
# utils.base64_decode( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithm=DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ]
)
except Exception as decode_error:
# print( decode_error )
try:
decoded = jwt.decode(
token ,
# utils.base64_decode( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithms=[ DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ] ]
)
except Exception as decode_error_two:
print( decode_error_two )
return sanic_json( dict( failed=str( decode_error ) ) , status=200 )
if "key" not in decoded:
return sanic_json( dict( failed="no key sent in token" ) , status=200 )
encrypted_json_file_path = Path( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "local_image_storage_path" ] ).joinpath( f"{ulid}.json" )
if encrypted_json_file_path.is_file() == False:
return sanic_json( dict( failed="file doesn't exist" ) , status=200 )
encrypted_json = utils.read_json( str( encrypted_json_file_path ) )
if "sealed" not in encrypted_json:
return sanic_json( dict( failed="nothing sealed" ) , status=200 )
opened_base64 = utils.secret_box_open( decoded[ "key" ] , encrypted_json[ "sealed" ] )
image_bytes = base64.b64decode( opened_base64 )
# Option 1.) Raw Bytes
# https://github.com/sanic-org/sanic/blob/main/sanic/response.py#L248
# return sanic_raw( image_bytes , status=200 , headers={ "Content-Type": "image/jpeg" } )
# Option 2.) Write Bytes to Temp File and Send
# with tempfile.TemporaryDirectory() as temp_dir:
# temp_dir_posix = Path( temp_dir )
# with tempfile.NamedTemporaryFile( suffix='.jpeg' , prefix=temp_dir ) as tf:
# temp_file_path = temp_dir_posix.joinpath( tf.name )
# with open( str( temp_file_path ) , 'wb' ) as f:
# f.write( image_bytes )
# return await sanic_file( str( temp_file_path ) )
# Option 3.) Send Base64 String?
return sanic_json( dict( image_b64_string=opened_base64 ) , status=200 )
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
@app.route( "/host/DragAndDrop" , methods=[ "GET" ] )
async def local( request: Request ):
try:
token = request.args.get( "t" )
if token == None:
return sanic_json( dict( failed="no token" ) , status=200 )
decoded = False
try:
decoded = jwt.decode(
token ,
# utils.base64_decode( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithm=DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ]
)
except Exception as decode_error:
# print( decode_error )
try:
decoded = jwt.decode(
token ,
# utils.base64_decode( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithms=[ DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ] ]
)
except Exception as decode_error_two:
print( decode_error_two )
return sanic_json( dict( failed=str( decode_error ) ) , status=200 )
if "blob_ulid" not in decoded:
return sanic_json( dict( failed="no blob ulid" ) , status=200 )
if "key" not in decoded:
return sanic_json( dict( failed="no key" ) , status=200 )
blob_file_path = Path( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "local_blob_storage_path" ] ).joinpath( f"{decoded[ 'blob_ulid' ]}.json" )
if blob_file_path.is_file() == False:
return sanic_json( dict( failed="file doesn't exist" ) , status=200 )
blob = utils.read_json( str( blob_file_path ) )
if "sealed" not in blob:
return sanic_json( dict( failed="nothing sealed ???" ) , status=200 )
opened_base64 = utils.secret_box_open( decoded[ "key" ] , blob[ "sealed" ] )
blob = json.loads( base64.b64decode( opened_base64 ) )
pprint( blob )
## Now just generate on-the-fly html for drag and drop , and send
## we are going to have to make a new version of interactive_drag_and_drop.js and interactive_typing.js
## so that they support the "blob" , and advance and previous work on arrrow keys
## images get pulled via ulids --> decrypt sealed image base64 string --> render
html_options = DEFAULT_CONFIG[ "html" ]
html_options[ "cdn" ][ "jquery_ui_css" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/css/jquery-ui.css"
html_options[ "cdn" ][ "jquery_ui_js" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/jquery-ui.min.js"
html_options[ "cdn" ][ "jquery_js" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/jquery-3.6.0.min.js"
html_options[ "cdn" ][ "bootstrap_css" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/css/bootstrap.min.css"
html_options[ "cdn" ][ "bootstrap_bundle" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/bootstrap.bundle.min.js"
html_options[ "cdn" ][ "interactive_typing_js" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/interactive_typing_blob.js"
html_options[ "cdn" ][ "interactive_drag_and_drop_js" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/interactive_drag_and_drop_blob.js"
html_options[ "title" ] = blob[ "title" ]
html_options[ "blob" ] = blob
html = interactive_notes_generator.build_drag_and_drop_blob_html( html_options )
return sanic_html( html )
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
@app.route( "/host/Typing" , methods=[ "GET" ] )
async def local( request: Request ):
try:
token = request.args.get( "t" )
if token == None:
return sanic_json( dict( failed="no token" ) , status=200 )
decoded = False
try:
decoded = jwt.decode(
token ,
# utils.base64_decode( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithm=DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ]
)
except Exception as decode_error:
# print( decode_error )
try:
decoded = jwt.decode(
token ,
# utils.base64_decode( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ) ,
DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "sanic_secret_key" ] ,
algorithms=[ DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "jwt_algorithm" ] ]
)
except Exception as decode_error_two:
print( decode_error_two )
return sanic_json( dict( failed=str( decode_error ) ) , status=200 )
if "blob_ulid" not in decoded:
return sanic_json( dict( failed="no blob ulid" ) , status=200 )
if "key" not in decoded:
return sanic_json( dict( failed="no key" ) , status=200 )
blob_file_path = Path( DEFAULT_CONFIG[ "image_upload_server_imgur_version" ][ "local_blob_storage_path" ] ).joinpath( f"{decoded[ 'blob_ulid' ]}.json" )
if blob_file_path.is_file() == False:
return sanic_json( dict( failed="file doesn't exist" ) , status=200 )
blob = utils.read_json( str( blob_file_path ) )
if "sealed" not in blob:
return sanic_json( dict( failed="nothing sealed ???" ) , status=200 )
opened_base64 = utils.secret_box_open( decoded[ "key" ] , blob[ "sealed" ] )
blob = json.loads( base64.b64decode( opened_base64 ) )
pprint( blob )
## Now just generate on-the-fly html for drag and drop , and send
## we are going to have to make a new version of interactive_drag_and_drop.js and interactive_typing.js
## so that they support the "blob" , and advance and previous work on arrrow keys
## images get pulled via ulids --> decrypt sealed image base64 string --> render
html_options = DEFAULT_CONFIG[ "html" ]
html_options[ "cdn" ][ "jquery_ui_css" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/css/jquery-ui.css"
html_options[ "cdn" ][ "jquery_ui_js" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/jquery-ui.min.js"
html_options[ "cdn" ][ "jquery_js" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/jquery-3.6.0.min.js"
html_options[ "cdn" ][ "bootstrap_css" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/css/bootstrap.min.css"
html_options[ "cdn" ][ "bootstrap_bundle" ][ "url" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/bootstrap.bundle.min.js"
html_options[ "cdn" ][ "interactive_typing_js" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/interactive_typing_blob.js"
html_options[ "cdn" ][ "interactive_drag_and_drop_js" ] = f"{html_options[ 'base_hosted_url' ]}/host/static/js/interactive_drag_and_drop_blob.js"
html_options[ "title" ] = blob[ "title" ]
html_options[ "blob" ] = blob
html = interactive_notes_generator.build_typing_blob_html( html_options )
return sanic_html( html )
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
@app.route( "/local" , methods=[ "GET" ] )
async def local( request: Request ):
return sanic_html( f'''<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PowerPoint - Interactive Game Generator</title>
</head>
<body>
<h1>PowerPoint Interactive Local Game Generator - Stage 1</h1>
<h3>Instructions for Stage 1</h3>
<ol>
<li>Create a PowerPoint with TextBoxes that have all been filled with the same predetermined hex color</li>
<li>Upload that .pptx file here</li>
<li>Download Generated .pttx file that contain slides with the text removed</li>
<li><a href="/local/stage/2">Go to Stage 2</a></li>
</ol>
<form enctype="multipart/form-data" action="/local/stage/1" method="POST">
<input type="file" id="powerpoint" name="file"><br><br>
<span>Textbox Background Color (Hex)</span>  <input type="text" id="background_color" name="background_color" placeholder="0070C0"><br>
<span>Exported Slide Image Width</span>  <input type="text" id="exported_width" name="exported_width" placeholder="1920"><br>
<span>Exported Slide Image Height</span>  <input type="text" id="exported_height" name="exported_height" placeholder="1080"><br>
<span>Exported Slide Image DPI</span>  <input type="text" id="exported_image_dpi" name="exported_image_dpi" placeholder="144"><br>
<span>Scale Percentage of Image</span>  <input type="text" id="image_scale_percentage" name="image_scale_percentage" placeholder="60"><br>
<span>Unanswered Color Outline</span>  <input type="text" id="unanswered_color" name="unanswered_color" placeholder="red"><br>
<span>Answered Color Outline</span>  <input type="text" id="answered_color" name="answered_color" placeholder="#13E337"><br>
<span>Typing Text Color</span>  <input type="text" id="text_color" name="text_color" placeholder="white"><br>
<span>Typing Text Font</span>  <input type="text" id="text_font" name="text_font" placeholder="17px Arial"><br>
<span>Typing Text X-Offset</span>  <input type="text" id="text_x_offset_factor" name="text_x_offset_factor" placeholder="2"><br>
<span>Typing Text Y-Offset</span>  <input type="text" id="text_y_offset_factor" name="text_y_offset_factor" placeholder="3"><br>
<span>Base URL of Hosted HTML</span>  <input type="text" size="60" id="base_hosted_url" name="base_hosted_url" placeholder="https://39363.org/NOTES/WSU/2021/Fall/ANT3100/Interactive"><br>
<span>CDN of Interactive Typing JS</span>  <input type="text" size="60" id="interactive_typing_js" name="interactive_typing_js" placeholder="https://39363.org/CDN/NOTES/interactive_typing.js"><br>
<span>CDN of Interactive DragAndDrop JS</span>  <input type="text" size="60" id="interactive_drag_and_drop_js" name="interactive_drag_and_drop_js" placeholder="https://39363.org/CDN/NOTES/interactive_drag_and_drop.js"><br>
<span>CDN of JQuery-UI CSS</span>  <input type="text" size="60" id="jquery_ui_css" name="jquery_ui_css" placeholder="https://39363.org/CDN/jquery-ui.css"><br>
<span>CDN of JQuery-UI JS</span>  <input type="text" size="60" id="jquery_ui_js" name="jquery_ui_js" placeholder="https://39363.org/CDN/jquery-ui.min.js"><br>
<span>CDN of JQuery JS</span>  <input type="text" size="60" id="jquery_js" name="jquery_js" placeholder="https://39363.org/CDN/jquery-3.6.0.min.js"><br>
<span>CDN of Bootstrap CSS</span>  <input type="text" size="60" id="bootstrap_css" name="bootstrap_css" placeholder="https://39363.org/CDN/bootstrap.min.css"><br>
<span>CDN of Bootstrap Bundle JS</span>  <input type="text" size="60" id="bootstrap_bundle" name="bootstrap_bundle" placeholder="https://39363.org/CDN/bootstrap.bundle.min.js"><br>
<br>
<input type="submit">
</form>
</body>
</html>''')
# https://stackoverflow.com/questions/4212861/what-is-a-correct-mime-type-for-docx-pptx-etc
@app.post( "/local/stage/1" , stream=True )
async def generate_local_stage_one( request ):
try:
start_time = time.time()
result = bytes()
print( "Uploading Local Stage 1 File" )
while True:
body = await request.stream.read()
if body is None:
break
result += body
# print( result )
end_time = time.time()
duration = round( end_time - start_time )
duration_minutes = ( duration / 60 )
durating_seconds = ( duration % 60 )
print( request.stream )
print( f"Upload Took {duration_minutes} minutes and {durating_seconds} seconds" )
config = get_updated_config( request )
with tempfile.TemporaryDirectory() as temp_dir:
temp_dir_posix = Path( temp_dir )
input_file_path = temp_dir_posix.joinpath( "input.pptx" )
output_powerpoint_path = temp_dir_posix.joinpath( f"Blank.pptx" )
# 1.) Read Sent Bytes into .pptx file inside temp directory
with open( str( input_file_path ) , "wb" ) as file:
file.write( result )
print( input_file_path )
print( input_file_path.stat() )
# 2.) Create Copy of PowerPoint With All text removed from boxes with correct fill color
p = Presentation( input_file_path )
p_clone = deepcopy( p )
for slide_index , slide in enumerate( p_clone.slides ):
for shape_index , shape in enumerate( slide.shapes ):
if utils.validate_text_box( shape , config[ "parser" ][ "our_background_textbox_hex" ] ):
print( f"{slide_index} === {shape_index} === valid text box" )
shape.text_frame.text = ""
p_clone.save( str( output_powerpoint_path ) )
print( output_powerpoint_path )
print( output_powerpoint_path.stat() )
return await sanic_file(
str( output_powerpoint_path ) ,
mime_type="application/vnd.openxmlformats-officedocument.presentationml.presentation" ,
filename=output_powerpoint_path.name
)
# Can't stream back because we are in temp file land , and it already deletes somehow idk
# return await sanic_file_stream(
# str( output_powerpoint_path ) ,
# status=200 ,
# chunk_size=4096 ,
# mime_type="application/vnd.openxmlformats-officedocument.presentationml.presentation" ,
# headers={ "Content-Length": str( input_file_path.stat().st_size ) } ,
# filename=output_powerpoint_path.name ,
# )
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
@app.route( "/local/stage/2" , methods=[ "GET" ] )
async def upload( request: Request ):
return sanic_html( f'''<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PowerPoint - Interactive Game Generator</title>
</head>
<body>
<h1>PowerPoint Interactive Local Game Generator - Stage 2</h1>
<h3>Instructions for Stage 2 </h3>
<ol>
<li>Open the -Blank.pptx that you should of just downloaded in PowerPoint</li>
<li>File --> Export --> File Format: JPEG , Save Every Slide , Width: 1920 , Height: 1080</li>
<li>Create .zip archive of the orginal .pptx you uploaded in Stage 1 and the folder of jpegs it just generated</li>
<li>Upload that .zip file here</a></li>
</ol>
<form enctype="multipart/form-data" action="/local/stage/2" method="POST">
<input type="file" id="powerpoint" name="file"><br><br>
<span>Textbox Background Color (Hex)</span>  <input type="text" id="background_color" name="background_color" placeholder="0070C0"><br>
<span>Exported Slide Image Width</span>  <input type="text" id="exported_width" name="exported_width" placeholder="1920"><br>
<span>Exported Slide Image Height</span>  <input type="text" id="exported_height" name="exported_height" placeholder="1080"><br>
<span>Exported Slide Image DPI</span>  <input type="text" id="exported_image_dpi" name="exported_image_dpi" placeholder="144"><br>
<span>Scale Percentage of Image</span>  <input type="text" id="image_scale_percentage" name="image_scale_percentage" placeholder="60"><br>
<span>Unanswered Color Outline</span>  <input type="text" id="unanswered_color" name="unanswered_color" placeholder="red"><br>
<span>Answered Color Outline</span>  <input type="text" id="answered_color" name="answered_color" placeholder="#13E337"><br>
<span>Typing Text Color</span>  <input type="text" id="text_color" name="text_color" placeholder="white"><br>
<span>Typing Text Font</span>  <input type="text" id="text_font" name="text_font" placeholder="17px Arial"><br>
<span>Typing Text X-Offset</span>  <input type="text" id="text_x_offset_factor" name="text_x_offset_factor" placeholder="2"><br>
<span>Typing Text Y-Offset</span>  <input type="text" id="text_y_offset_factor" name="text_y_offset_factor" placeholder="3"><br>
<span>Base URL of Hosted HTML</span>  <input type="text" size="60" id="base_hosted_url" name="base_hosted_url" placeholder="https://39363.org/NOTES/WSU/2021/Fall/ANT3100/Interactive"><br>
<span>CDN of Interactive Typing JS</span>  <input type="text" size="60" id="interactive_typing_js" name="interactive_typing_js" placeholder="https://39363.org/CDN/NOTES/interactive_typing.js"><br>
<span>CDN of Interactive DragAndDrop JS</span>  <input type="text" size="60" id="interactive_drag_and_drop_js" name="interactive_drag_and_drop_js" placeholder="https://39363.org/CDN/NOTES/interactive_drag_and_drop.js"><br>
<span>CDN of JQuery-UI CSS</span>  <input type="text" size="60" id="jquery_ui_css" name="jquery_ui_css" placeholder="https://39363.org/CDN/jquery-ui.css"><br>
<span>CDN of JQuery-UI JS</span>  <input type="text" size="60" id="jquery_ui_js" name="jquery_ui_js" placeholder="https://39363.org/CDN/jquery-ui.min.js"><br>
<span>CDN of JQuery JS</span>  <input type="text" size="60" id="jquery_js" name="jquery_js" placeholder="https://39363.org/CDN/jquery-3.6.0.min.js"><br>
<span>CDN of Bootstrap CSS</span>  <input type="text" size="60" id="bootstrap_css" name="bootstrap_css" placeholder="https://39363.org/CDN/bootstrap.min.css"><br>
<span>CDN of Bootstrap Bundle JS</span>  <input type="text" size="60" id="bootstrap_bundle" name="bootstrap_bundle" placeholder="https://39363.org/CDN/bootstrap.bundle.min.js"><br>
<br>
<input type="submit">
</form>
</body>
</html>''')
@app.post( "/local/stage/2" , stream=True )
async def generate_local_stage_two( request: Request ):
try:
start_time = time.time()
result = bytes()
print( "Uploading Local Stage 2 File" )
while True:
body = await request.stream.read()
if body is None:
break
result += body
# print( result )
end_time = time.time()
duration = round( end_time - start_time )
duration_minutes = ( duration / 60 )
durating_seconds = ( duration % 60 )
print( request.stream )
print( f"Upload Took {duration_minutes} minutes and {durating_seconds} seconds" )
config = get_updated_config( request )
with tempfile.TemporaryDirectory() as temp_dir:
temp_dir_posix = Path( temp_dir )
input_zip_file_path = temp_dir_posix.joinpath( "input.zip" )
# output_powerpoint_path = temp_dir_posix.joinpath( f"{input_file_name_stem}-Blank.pptx" )
# 1.) Read Sent Bytes into .zip file inside temp directory
with open( str( input_zip_file_path ) , "wb" ) as file:
file.write( result )
print( input_zip_file_path )
print( input_zip_file_path.stat() )
# 2.) Extract the Zip
with zipfile.ZipFile( str( input_zip_file_path ) , "r" ) as zip_ref:
zip_ref.extractall( str( temp_dir_posix ) )
# 3.) Sort Files and Folders Contained in Zip
files_and_folders = temp_dir_posix.glob( '*' )
uploaded_powerpoint_path = False
image_paths = []
for x in temp_dir_posix.iterdir():
if x.is_file():
if x.suffix == ".pptx":
uploaded_powerpoint_path = x
elif x.is_dir():
if x.stem == "__MACOSX":
continue
jpegs = x.glob( "*" )
jpegs = [ i for i in jpegs if i.is_file() ]
for index , i in enumerate( jpegs ):
if i.suffix == ".jpg":
image_paths.append( x.joinpath( f"Slide{index+1}.jpg" ) )
elif i.suffix == ".jpeg":
image_paths.append( x.joinpath( f"Slide{index+1}.jpeg" ) )
print( uploaded_powerpoint_path )
print( image_paths )
# 4.) Create Placeholder Output Directories
# generated_output_base_path = temp_dir_posix.joinpath( f"{input_file_name_stem} - Interactive" )
generated_output_base_path = temp_dir_posix.joinpath( f"Interactive" )
generated_output_base_path.mkdir( parents=True , exist_ok=True )
output_images_path = generated_output_base_path.joinpath( "images" )
output_images_path.mkdir( parents=True , exist_ok=True )
output_html_path = generated_output_base_path.joinpath( "html" )
output_html_path.mkdir( parents=True , exist_ok=True )
print( output_images_path )
for index , image_path in enumerate( image_paths ):
shutil.copyfile( image_path , output_images_path.joinpath( image_path.name ) )
output_js_path = generated_output_base_path.joinpath( "js" )
shutil.copytree( "./js" , output_js_path )
output_js_path.mkdir( parents=True , exist_ok=True )
output_css_path = generated_output_base_path.joinpath( "css" )
shutil.copytree( "./css" , output_css_path )
output_css_path.mkdir( parents=True , exist_ok=True )
image_maps_in_slides = compute_image_maps.compute( str( uploaded_powerpoint_path ) , config[ "parser" ] )
print( len( image_maps_in_slides ) )
if len( image_paths ) != len( image_maps_in_slides ):
print( "Lengths of Slide Images and Slide Image Maps Don't Match" )
# print( "This could mean some slides don't have any thing but" )
sys.exit( 1 )
print( "here 2" )
image_objects = []
for slide_index , image_maps_in_slide in enumerate( image_maps_in_slides ):
print( f"\nSlide === {slide_index+1}" )
image_objects.append([
f"Slide" ,
f"../../images/{image_paths[ slide_index ].name}" ,
image_maps_in_slide
])
print( "here 3" )
pprint( image_objects )
# 3.) Generate Interactive Games
config[ "html" ][ "base_hosted_url" ] = "./"
config[ "html" ][ "cdn" ][ "jquery_ui_css"][ "url" ] = f"../../css/jquery-ui.css"
config[ "html" ][ "cdn" ][ "jquery_ui_js"][ "url" ] = f"../../js/jquery-ui.min.js"
config[ "html" ][ "cdn" ][ "jquery_js"][ "url" ] = f"../../js/jquery-3.6.0.min.js"
config[ "html" ][ "cdn" ][ "bootstrap_css"][ "url" ] = f"../../css/bootstrap.min.css"
config[ "html" ][ "cdn" ][ "bootstrap_bundle"][ "url" ] = f"../../js/bootstrap.bundle.min.js"
config[ "html" ][ "cdn" ][ "interactive_typing_js" ] = f"../../js/interactive_typing.js"
config[ "html" ][ "cdn" ][ "interactive_drag_and_drop_js" ] = f"../../js/interactive_drag_and_drop.js"
html_options = config[ "html" ]
html_options[ "title" ] = uploaded_powerpoint_path.stem.replace( " " , "-" )
html_options[ "images" ] = image_objects
html_options[ "output_base_dir" ] = output_html_path
interactive_notes_generator.generate( html_options , False )
# 4.) Zip Everything and Return
shutil.make_archive( temp_dir_posix.joinpath( f"{generated_output_base_path.stem}" ) , "zip" , str( generated_output_base_path ) )
output_zip_path = temp_dir_posix.joinpath( f"{generated_output_base_path.stem}.zip" )
return await sanic_file(
str( output_zip_path ) ,
mime_type="application/zip" ,
filename=f"{generated_output_base_path.stem}.zip"
)
# return sanic_json( dict( ok="ok" ) , status=200 )
except Exception as e:
print( e )
return sanic_json( dict( failed=str( e ) ) , status=200 )
if __name__ == "__main__":
app.run( host="0.0.0.0" , port="9379" )