forked from Toporin/Satochip-Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview.py
2221 lines (1933 loc) · 118 KB
/
view.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 logging
import sys
import os
import time
import tkinter
import customtkinter
from customtkinter import CTkImage
import webbrowser
from PIL import Image, ImageTk
from pysatochip.version import PYSATOCHIP_VERSION
from controller import Controller
from version import VERSION
if (len(sys.argv) >= 2) and (sys.argv[1] in ['-v', '--verbose']):
logging.basicConfig(level=logging.DEBUG,
format='%(asctime)s - [%(filename)s:%(lineno)d] - %(levelname)s - %(name)s - %(funcName)s() - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
else:
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - [%(filename)s:%(lineno)d] - %(levelname)s - %(name)s - %(funcName)s() - %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
MAIN_MENU_COLOR = "#202738"
BUTTON_COLOR = "#e1e1e0"
HOVER_COLOR = "grey"
TEXT_COLOR = "black"
ICON_PATH = "./pictures_db/icon_"
#APP_VERSION = "0.1.0"
class View(customtkinter.CTk):
def __init__(self, loglevel=logging.INFO):
try:
logger.info("Starting View.__init__()")
super().__init__()
# status infos
self.welcome_in_display = True
logger.setLevel(loglevel)
logger.debug("Log level set to INFO")
try:
logger.info("Initializing controller")
self.controller = Controller(None, self, loglevel=loglevel)
logger.info("Controller initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize the controller: {e}", exc_info=True)
try:
logger.debug("Initializing main window")
self.main_window()
logger.debug("Main window initialized successfully")
logger.debug("Creating main frame")
self.main_frame = customtkinter.CTkFrame(self, width=1000, height=600, bg_color="white",
fg_color="white")
self.main_frame.place(relx=0.5, rely=0.5, anchor="center")
logger.debug("Main frame created successfully")
except Exception as e:
logger.error(f"Failed to initialize the main window or create the main frame: {e}", exc_info=True)
try:
# Widget declaration -> Maybe unnecessary but marked as error if not declared before
# TODO: clean code
logger.debug("Declaring widgets")
self.current_frame = None
self.canvas = None
self.background_photo = None
self.create_background_photo = None
self.header = None
self.text_box = None
self.button = None
self.finish_button = None
self.menu = None
self.counter = None
self.display_menu = False
logger.debug("Widgets declared successfully")
except Exception as e:
logger.error(f"Failed to declare widgets: {e}", exc_info=True)
try:
# Launching initialization starting with welcome view
logger.debug("Launching welcome view")
self.welcome()
logger.debug("Welcome view launched successfully")
self.protocol("WM_DELETE_WINDOW", lambda: [self.on_close()])
logger.debug("WM_DELETE_WINDOW protocol set successfully")
except Exception as e:
logger.error(f"Failed to launch welcome view or set WM_DELETE_WINDOW protocol: {e}", exc_info=True)
logger.info("Initialization of View.__init__() completed successfully")
except Exception as e:
logger.critical(f"An unexpected error occurred in __init__: {e}", exc_info=True)
def main_window(self, width=None, height=None):
logger.debug("IN View.main_window")
try:
self.title("SATOCHIP UTILS")
logger.debug("Window title set to 'SATOCHIP UTILS'")
window_width = 1000
window_height = 600
logger.debug(f"Window dimensions set to width: {window_width}, height: {window_height}")
screen_width = self.winfo_screenwidth()
screen_height = self.winfo_screenheight()
logger.debug(f"Screen dimensions obtained: width: {screen_width}, height: {screen_height}")
center_x = int((screen_width - window_width) / 2)
center_y = int((screen_height - window_height) / 2)
logger.debug(f"Window position calculated: center_x: {center_x}, center_y: {center_y}")
self.geometry(f'{window_width}x{window_height}+{center_x}+{center_y}')
logger.debug("Window geometry set successfully")
except Exception as e:
logger.critical(f"An unexpected error occurred in main_window: {e}", exc_info=True)
logger.debug("OUT View.main_window")
def on_close(self):
logger.info("IN View.on_close : Closing App")
try:
# Changement de l'état de l'application
# self.app_open = False
# logger.debug("app_open set to False")
# Destruction de la fenêtre principale
self.destroy()
logger.debug("Main window destroyed")
# Déconnexion de la carte
self.controller.cc.card_disconnect()
logger.debug("Card disconnected successfully")
except Exception as e:
logger.error(f"An unexpected error occurred in on_close: {e}", exc_info=True)
logger.debug("OUT View.on_close")
def restart_app(self):
self.destroy()
os.execl(sys.executable, sys.executable, *sys.argv)
##############
""" UTILS """
def clear_current_frame(self):
logger.debug("In View.clear_current_frame()")
try:
logger.debug("Starting clear_current_frame method")
# Helper function to log and destroy widgets
def log_and_destroy(widget, widget_name):
if widget:
try:
logger.debug(f"Destroying {widget_name}")
widget.place_forget()
logger.debug(f"{widget_name} destroyed successfully")
except Exception as e:
logger.warning(f"An error occurred while destroying {widget_name}: {e}", exc_info=True)
else:
logger.debug(f"No {widget_name} to destroy")
# Clear children widgets of current frame
if self.current_frame.winfo_children():
logger.debug("Clearing children widgets of current frame")
for widget in self.current_frame.winfo_children():
try:
widget.place_forget()
except Exception as e:
logger.warning(f"An error occurred while destroying a child widget: {e}", exc_info=True)
logger.debug("Children widgets cleared successfully")
else:
logger.debug("No children widgets to clear in current frame")
# Destroy individual widgets
log_and_destroy(self.header, "header widget")
log_and_destroy(self.header, "header widget")
log_and_destroy(self.text_box, "text box widget")
log_and_destroy(self.current_frame, "current frame")
logger.debug("clear_current_frame method completed successfully")
logger.debug("OUT View.clear_current_frame")
except Exception as e:
logger.error(f"An unexpected error occurred in clear_current_frame: {e}", exc_info=True)
def make_text_bold(self, size=None):
try:
logger.debug("Entering make_text_bold method")
logger.debug("Configuring bold font")
try:
if size is not None:
logger.debug(f"Setting bold font with size: {size}")
result = customtkinter.CTkFont(weight="bold", size=size)
else:
logger.debug("Setting bold font with default size")
result = customtkinter.CTkFont(weight="bold", size=18)
except Exception as e:
logger.error(f"An error occurred while setting the bold font: {e}", exc_info=True)
raise
logger.debug("make_text_bold method completed successfully")
return result
except Exception as e:
logger.error(f"An unexpected error occurred in make_text_bold: {e}", exc_info=True)
def make_text_size_at(self, size=None):
try:
logger.debug("Entering make_text_bold method")
logger.debug("Configuring bold font")
try:
if size:
logger.debug(f"Setting bold font with size: {size}")
result = customtkinter.CTkFont(size=size)
else:
logger.debug("Setting bold font with default size")
result = customtkinter.CTkFont(size=18)
except Exception as e:
logger.error(f"An error occurred while setting the bold font: {e}", exc_info=True)
raise
logger.debug("make_text_bold method completed successfully")
return result
except Exception as e:
logger.error(f"An unexpected error occurred in make_text_bold: {e}", exc_info=True)
def create_an_header(self, title_text: str = None, icon_name: str = None, fg_bg_color=None):
try:
logger.debug("Entering create_an_header method")
# Créer le cadre de l'en-tête
try:
header_frame = customtkinter.CTkFrame(self, fg_color="whitesmoke", bg_color="whitesmoke", width=750, height=40)
logger.debug("Header frame created successfully")
except Exception as e:
logger.error(f"An error occurred while creating the header frame: {e}", exc_info=True)
raise
# Vérifier si le titre et l'icône sont fournis
if title_text and icon_name is not None:
try:
logger.debug("Creating header with title and icon")
title_text = f" {title_text}"
icon_path = f"{ICON_PATH}{icon_name}"
logger.debug(f"Loading icon from path: {icon_path}")
try:
# Charger et redimensionner l'image de l'icône
image = Image.open(icon_path)
image = image.resize((40, 40), Image.LANCZOS)
logger.debug("Icon image resized successfully")
except Exception as e:
logger.error(f"An error occurred while loading and resizing the icon image: {e}", exc_info=True)
raise
try:
# Convertir l'image en PhotoImage
photo_image = ImageTk.PhotoImage(image)
logger.debug("Icon image converted to PhotoImage successfully")
except Exception as e:
logger.error(f"An error occurred while converting the icon image to PhotoImage: {e}",
exc_info=True)
raise
try:
# Créer le bouton avec l'image de l'icône
button = customtkinter.CTkButton(header_frame, text=title_text, image=photo_image,
font=customtkinter.CTkFont(family="Outfit", size=25,
weight="bold"),
bg_color="whitesmoke", fg_color="whitesmoke", text_color="black",
hover_color="whitesmoke", compound="left")
button.image = photo_image # Garder une référence de l'image
button.place(rely=0.5, relx=0, anchor="w")
logger.debug("Header button created and placed successfully")
except Exception as e:
logger.error(f"An error occurred while creating or placing the header button: {e}",
exc_info=True)
raise
except Exception as e:
logger.warning(f"An error occurred while processing title and icon for header: {e}", exc_info=True)
logger.debug("create_an_header method completed successfully")
return header_frame
except Exception as e:
logger.error(f"An unexpected error occurred in create_an_header: {e}", exc_info=True)
def create_an_header_for_welcome(self, title_text: str = None, icon_name: str = None, label_text: str = None):
icon_path = f"./pictures_db/icon_logo.png"
frame = customtkinter.CTkFrame(self.current_frame, width=380, height=178, bg_color='white')
frame.place(relx=0.1, rely=0.03, anchor='nw')
logo_canvas = customtkinter.CTkCanvas(frame, width=400, height=400, bg='black')
logo_canvas.place(relx=0.5, rely=0.5, anchor='center')
image = Image.open(icon_path)
photo = ImageTk.PhotoImage(image)
logo_canvas_width = logo_canvas.winfo_reqwidth()
logo_canvas_height = logo_canvas.winfo_reqheight()
image_width = photo.width()
image_height = photo.height()
# Calculer la position pour centrer l'image
x_center = (logo_canvas_width - image_width) // 2
y_center = (logo_canvas_height - image_height) // 2
# Afficher l'image dans le canvas au centre
logo_canvas.create_image(x_center, y_center, anchor='nw', image=photo)
logo_canvas.image = photo
'''self.image = Image.open(icon_path)
self.photo = customtkinter.CTkImage(self.image)
self.logo_canvas.create_image(0, 0, anchor='nw', image=self.photo)
self.logo_canvas.image = self.photo'''
def create_frame(self, bg_fg_color: str = None, width: int = None, height: int = None) -> customtkinter.CTkFrame:
logger.debug("UTILS: View.create_frame() | creating frame")
try:
logger.debug("Entering create_frame method")
frame = None
try:
if bg_fg_color is not None:
try:
logger.debug(f"Creating frame with background color: {bg_fg_color}")
frame = customtkinter.CTkFrame(self.main_frame, width=1000, height=600, bg_color='whitesmoke',
fg_color='whitesmoke')
except Exception as e:
logger.warning(f"An error occurred while creating frame with background color: {e}",
exc_info=True)
raise
if width is not None and height is not None:
try:
logger.debug(f"Creating frame with width: {width} and height: {height}")
frame = customtkinter.CTkFrame(self.main_frame, width=width, height=height,
bg_color='whitesmoke',
fg_color='whitesmoke')
except Exception as e:
logger.warning(f"An error occurred while creating frame with width and height: {e}",
exc_info=True)
raise
if frame is None:
try:
logger.debug("Creating default frame with white background")
frame = customtkinter.CTkFrame(self.main_frame, width=1000, height=600, bg_color="whitesmoke",
fg_color="whitesmoke")
except Exception as e:
logger.warning(f"An error occurred while creating default frame: {e}", exc_info=True)
raise
logger.debug("Frame created successfully")
except Exception as e:
logger.warning(f"An error occurred while creating the frame: {e}", exc_info=True)
try:
frame = customtkinter.CTkFrame(self.main_frame, width=1000, height=600, bg_color="white",
fg_color="white")
logger.debug("Default frame created due to previous error")
except Exception as e:
logger.error(f"An error occurred while creating the default frame after a previous error: {e}",
exc_info=True)
raise
logger.debug("Exiting create_frame method successfully")
return frame
except Exception as e:
logger.error(f"An unexpected error occurred in create_frame: {e}", exc_info=True)
return None
def create_label(self, text, bg_fg_color: str = None, frame=None) -> customtkinter.CTkLabel:
try:
logger.debug("Entering create_label method")
label = None
try:
if bg_fg_color is not None:
try:
logger.debug(f"Creating label with background color: {bg_fg_color}")
label = customtkinter.CTkLabel(self.current_frame, text=text, bg_color=bg_fg_color,
fg_color=bg_fg_color,
font=customtkinter.CTkFont(family="Outfit", size=18,
weight="normal"))
except Exception as e:
logger.warning(f"An error occurred while creating label with background color: {e}",
exc_info=True)
else:
try:
logger.debug(f"Creating label with background color: whitesmoke")
label = customtkinter.CTkLabel(self.current_frame, text=text, bg_color="whitesmoke",
fg_color="whitesmoke",
font=customtkinter.CTkFont(family="Outfit", size=18,
weight="normal"))
except Exception as e:
logger.warning(f"An error occurred while creating label with background color: {e}",
exc_info=True)
if label is None:
try:
logger.debug("Creating default label with transparent background")
label = customtkinter.CTkLabel(self.current_frame, text=text, bg_color="transparent",
fg_color="transparent",
font=customtkinter.CTkFont(family="Outfit", size=16,
weight="normal"))
except Exception as e:
logger.error(f"An error occurred while creating default label: {e}", exc_info=True)
logger.debug("Label created successfully")
except Exception as e:
logger.warning(f"An error occurred while creating the label: {e}", exc_info=True)
try:
label = customtkinter.CTkLabel(self.current_frame, text=text, bg_color="transparent",
fg_color="transparent",
font=customtkinter.CTkFont(family="Outfit", size=20,
weight="normal"))
logger.debug("Default label created due to previous error")
except Exception as e:
logger.error(f"An error occurred while creating the default label after a previous error: {e}",
exc_info=True)
raise
logger.debug("Exiting create_label method successfully")
return label
except Exception as e:
logger.error(f"An unexpected error occurred in create_label: {e}", exc_info=True)
return None
def create_button(self, text: str = None, command=None, frame=None) -> customtkinter.CTkButton:
try:
logger.debug("UTILS: VIew.create_button() | creating button")
button = None
try:
if command is None:
try:
logger.debug("Creating button without command")
button = customtkinter.CTkButton(self.current_frame, text=text, corner_radius=100,
font=customtkinter.CTkFont(family="Outfit", size=18,
weight="normal"),
bg_color='white', fg_color=MAIN_MENU_COLOR,
hover_color=HOVER_COLOR, cursor="hand2", width=120, height=35)
except Exception as e:
logger.error(f"Error creating button without command: {e}", exc_info=True)
raise
else:
try:
logger.debug("Creating button with command")
button = customtkinter.CTkButton(self.current_frame, text=text, corner_radius=100,
font=customtkinter.CTkFont(family="Outfit", size=18,
weight="normal"),
bg_color='white', fg_color=MAIN_MENU_COLOR,
hover_color=HOVER_COLOR, cursor="hand2", width=120, height=35,
command=command)
except Exception as e:
logger.error(f"Error creating button with command: {e}", exc_info=True)
raise
logger.debug("Exiting create_button method successfully")
except Exception as e:
logger.error(f"An error occurred while creating the button: {e}", exc_info=True)
raise
logger.debug("Button created successfully")
return button
except Exception as e:
logger.error(f"Unexpected error in create_button: {e}", exc_info=True)
return None
def create_button_for_main_menu_item(self, frame, button_label, icon_name, rel_y, rel_x, state,
command=None) -> customtkinter.CTkButton.place:
logger.debug("Entering create_button_for_main_menu_item method")
try:
try:
icon_path = f"{ICON_PATH}{icon_name}"
logger.debug(f"Loading icon from path: {icon_path}")
try:
image = Image.open(icon_path)
image = image.resize((25, 25), Image.LANCZOS)
logger.debug("Icon image resized successfully")
photo_image = CTkImage(image) # ImageTk.PhotoImage(image)
logger.debug("Icon image converted to CTkImage successfully")
except Exception as e:
logger.error(f"Error loading or resizing icon: {e}", exc_info=True)
return None
except Exception as e:
logger.error(f"Error processing icon: {e}", exc_info=True)
return None
try:
logger.debug(f"Creating button with label: {button_label}")
button = customtkinter.CTkButton(frame, text=button_label, image=photo_image,
bg_color=MAIN_MENU_COLOR, fg_color=MAIN_MENU_COLOR,
hover_color=MAIN_MENU_COLOR, compound="left", cursor="hand2",
command=command, state=state)
button.image = photo_image # keep a reference!
logger.debug("Button created successfully")
try:
button.place(rely=rel_y, relx=rel_x, anchor="e")
logger.debug(f"Button placed at rely={rel_y}, relx={rel_x}")
except Exception as e:
logger.error(f"Error placing button: {e}", exc_info=True)
return None
except Exception as e:
logger.error(f"Error creating button: {e}", exc_info=True)
return None
logger.debug("Exiting create_button_for_main_menu_item method successfully")
return button
except Exception as e:
logger.error(f"An unexpected error occurred in create_button_for_main_menu_item: {e}", exc_info=True)
return None
def create_entry(self, show_option: str = None) -> customtkinter.CTkEntry:
try:
logger.debug("Entering create_entry method")
entry = None
try:
if show_option is not None:
logger.debug("Creating entry with secure write")
entry = customtkinter.CTkEntry(self.current_frame, width=555, height=37, corner_radius=10,
bg_color='white',
fg_color=BUTTON_COLOR, border_color=BUTTON_COLOR,
show=f"{show_option}", text_color='grey')
logger.debug(f"Entry created with secure write option: {show_option}")
else:
logger.debug("Creating entry without secure write")
entry = customtkinter.CTkEntry(self.current_frame, width=555, height=37, corner_radius=10,
bg_color='white',
fg_color=BUTTON_COLOR, border_color=BUTTON_COLOR, text_color='grey')
logger.debug("Entry created without secure write option")
logger.debug("Exiting create_entry method successfully")
return entry
except Exception as e:
logger.error(f"An error occurred while creating the entry: {e}", exc_info=True)
raise
except Exception as e:
logger.error(f"An unexpected error occurred in create_entry: {e}", exc_info=True)
return None
def update_textbox(self, text):
try:
logger.debug("Entering update_textbox method")
try:
logger.debug("Clearing the current content of the textbox")
self.text_box.delete(1.0, "end") # Efface le contenu actuel
logger.debug("Textbox content cleared")
except Exception as e:
logger.error(f"An error occurred while clearing the textbox content: {e}", exc_info=True)
raise
try:
logger.debug("Inserting new text into the textbox")
self.text_box.insert("end", text)
logger.debug("New text inserted into textbox")
except Exception as e:
logger.error(f"An error occurred while inserting new text into the textbox: {e}", exc_info=True)
raise
logger.debug("Exiting update_textbox method successfully")
except Exception as e:
logger.error(f"An unexpected error occurred in update_textbox: {e}", exc_info=True)
@staticmethod
def create_background_photo(self, picture_path):
logger.info("UTILS: View.create_background_photo() | creating background photo")
try:
logger.info(f"Entering create_background_photo method with path: {picture_path}")
try:
if getattr(sys, 'frozen', False):
application_path = sys._MEIPASS
logger.info(f"Running in a bundled application, application path: {application_path}")
else:
application_path = os.path.dirname(os.path.abspath(__file__))
logger.info(f"Running in a regular script, application path: {application_path}")
except Exception as e:
logger.error(f"An error occurred while determining application path: {e}", exc_info=True)
return None
try:
pictures_path = os.path.join(application_path, picture_path)
logger.debug(f"Full path to background photo: {pictures_path}")
except Exception as e:
logger.error(f"An error occurred while constructing the full path: {e}", exc_info=True)
return None
try:
background_image = Image.open(pictures_path)
logger.info("Background image opened successfully")
except FileNotFoundError as e:
logger.error(f"File not found: {pictures_path}, {e}", exc_info=True)
return None
except Exception as e:
logger.error(f"An error occurred while opening the background image: {e}", exc_info=True)
return None
try:
photo_image = ImageTk.PhotoImage(background_image)
logger.info("Background photo converted to PhotoImage successfully")
except Exception as e:
logger.error(f"An error occurred while converting the background image to PhotoImage: {e}",
exc_info=True)
return None
logger.info("Background photo created successfully")
return photo_image
except Exception as e:
logger.error(f"An unexpected error occurred in create_background_photo: {e}", exc_info=True)
return None
def create_canvas(self, frame=None) -> customtkinter.CTkCanvas:
try:
logger.debug("UTILS: View.create_canvas() | creating canvas")
try:
canvas = customtkinter.CTkCanvas(self.current_frame, bg="whitesmoke", width=1000, height=599)
logger.debug("Canvas created successfully")
except Exception as e:
logger.error(f"An error occurred while creating the canvas: {e}", exc_info=True)
raise
logger.debug("Exiting create_canvas method successfully")
logger.debug("canvas create successfully")
return canvas
except Exception as e:
logger.error(f"An unexpected error occurred in create_canvas: {e}", exc_info=True)
return None
def show(self, title, msg: str, button_txt="Ok", cmd=None, icon_path=None):
try:
logger.info(f"Show Popup {title} {msg}")
# Création de la fenêtre popup
popup = customtkinter.CTkToplevel(self)
popup.title(title)
popup.configure(fg_color='whitesmoke')
logger.debug("Popup window created and titled")
# Désactiver la fermeture du popup via le bouton de fermeture standard
popup.protocol("WM_DELETE_WINDOW", lambda: close_show())
logger.debug("Popup close button disabled")
popup_width = 400
popup_height = 200
# Rendre la fenêtre modale
popup.transient(self) # Set to be on top of the main window
popup.wait_visibility() # patch _tkinter.TclError: grab failed: window not viewable
popup.grab_set() # Grab all events
logger.debug("Popup set to be modal")
# Calcul pour centrer le popup par rapport à la fenêtre principale
position_right = int(self.winfo_screenwidth() / 2 - popup_width / 2)
position_down = int(self.winfo_screenheight() / 2 - popup_height / 2)
popup.geometry(f"{popup_width}x{popup_height}+{position_right}+{position_down}")
logger.debug("Popup window centered")
# Ajouter une icône si icon_path est défini
if icon_path:
icon_image = Image.open(icon_path)
icon = customtkinter.CTkImage(light_image=icon_image, size=(30, 30))
icon_label = customtkinter.CTkLabel(popup, image=icon, text=f"\n{msg}", compound='top',
font=customtkinter.CTkFont(family="Outfit",
size=18,
weight="normal"))
icon_label.pack(pady=(20, 10)) # Ajout d'un padding différent pour l'icône
logger.debug("Icon added to popup")
else:
# Ajout d'un label dans le popup
label = customtkinter.CTkLabel(popup, text=msg,
font=customtkinter.CTkFont(family="Outfit", size=14, weight="bold"))
label.pack(pady=20)
logger.debug("Label added to popup")
def close_show():
if cmd:
popup.destroy()
cmd()
else:
popup.destroy()
# Ajout d'un bouton pour fermer le popup
self.show_button = customtkinter.CTkButton(popup, text=button_txt, fg_color=MAIN_MENU_COLOR,
hover_color=HOVER_COLOR,
bg_color='whitesmoke',
width=120, height=35, corner_radius=34,
font=customtkinter.CTkFont(family="Outfit",
size=18,
weight="normal"),
command=lambda: close_show())
self.show_button.pack(pady=20)
logger.debug("Button added to popup")
logger.debug("Exiting show method successfully")
except Exception as e:
logger.error(f"An error occurred in show: {e}", exc_info=True)
raise
#################
""" MAIN MENU """
def main_menu(self, state=None, frame=None):
logger.info("IN View.main_menu")
try:
if state is None:
state = "normal" if self.controller.cc.card_present else "disabled"
logger.info(f"Card {'detected' if state == 'normal' else 'undetected'}, setting state to {state}")
menu_frame = customtkinter.CTkFrame(self.current_frame, width=250, height=600,
bg_color=MAIN_MENU_COLOR,
fg_color=MAIN_MENU_COLOR, corner_radius=0, border_color="black",
border_width=0)
logger.debug("Menu frame created successfully")
# todo: cancel the function below
def refresh_main_menu():
try:
logger.info("Refreshing main menu")
menu_frame.destroy()
main_menu = self.main_menu()
main_menu.place(relx=0.250, rely=0.5, anchor="e")
except Exception as e:
logger.error(f"An error occurred in refresh_main_menu: {e}", exc_info=True)
# Logo section
image_frame = customtkinter.CTkFrame(menu_frame, bg_color=MAIN_MENU_COLOR, fg_color=MAIN_MENU_COLOR,
width=284, height=126)
image_frame.place(rely=0, relx=0.5, anchor="n")
logo_image = Image.open("./pictures_db/logo.png")
logo_photo = ImageTk.PhotoImage(logo_image)
canvas = customtkinter.CTkCanvas(image_frame, width=284, height=127, bg=MAIN_MENU_COLOR,
highlightthickness=0)
canvas.pack(fill="both", expand=True)
canvas.create_image(142, 63, image=logo_photo, anchor="center")
canvas.image = logo_photo # conserver une référence
logger.debug("Logo section setup complete")
if self.controller.cc.card_present:
if not self.controller.cc.setup_done:
logger.info("Setup not done, enabling 'Setup My Card' button")
self.create_button_for_main_menu_item(
menu_frame,
"Setup My Card",
"setup_my_card.png",
0.26, 0.60,
command=lambda: self.setup_my_card_pin(), state='normal'
)
else:
if not self.controller.cc.is_seeded and self.controller.cc.card_type != "Satodime":
logger.info("Card not seeded, enabling 'Setup Seed' button")
self.create_button_for_main_menu_item(
menu_frame,
"Setup Seed",
"seed.png",
0.26, 0.575,
command=lambda: self.setup_my_card_seed(), state='normal'
)
else:
logger.info("Setup completed, disabling 'Setup Done' button")
self.create_button_for_main_menu_item(
menu_frame,
"Setup Done" if self.controller.cc.card_present else 'Insert Card',
"setup_done.jpg" if self.controller.cc.card_present else "insert_card.jpg",
0.26, 0.575 if self.controller.cc.card_present else 0.595,
command=lambda: None, state='disabled'
)
else:
logger.info("Card not present, setting 'Setup My Card' button state")
self.create_button_for_main_menu_item(
menu_frame,
"Insert a Card",
"insert_card.jpg",
0.26, 0.585,
command=lambda: None, state='normal'
)
if self.controller.cc.card_type != "Satodime" and self.controller.cc.setup_done:
logger.debug("Enabling 'Change Pin' button")
self.create_button_for_main_menu_item(
menu_frame,
"Change Pin",
"change_pin.png",
0.33, 0.57,
command=lambda: self.change_pin(),
state='normal'
)
else:
logger.info(f"Card type is {self.controller.cc.card_type} | Disabling 'Change Pin' button")
self.create_button_for_main_menu_item(
menu_frame,
"Change Pin",
"change_pin_locked.jpg",
0.33, 0.57,
command=lambda: self.change_pin(),
state='disabled'
)
if self.controller.cc.setup_done:
self.create_button_for_main_menu_item(
menu_frame,
"Edit Label",
"edit_label.png",
0.40, 0.546,
command=lambda: [self.edit_label()], state='normal'
)
else:
self.create_button_for_main_menu_item(
menu_frame,
"Edit Label",
"edit_label_locked.jpg",
0.40, 0.546,
command=lambda: self.edit_label(), state='disabled'
)
def before_check_authenticity():
logger.info("IN View.main_menu() | Requesting card verification PIN")
if self.controller.cc.card_type != "Satodime":
if self.controller.cc.is_pin_set():
self.controller.cc.card_verify_PIN_simple()
else:
self.controller.PIN_dialog(f'Unlock your {self.controller.cc.card_type}')
if self.controller.cc.setup_done:
self.create_button_for_main_menu_item(
menu_frame,
"Check Authenticity",
"auth.png",
0.47, 0.66,
command=lambda: [before_check_authenticity(), self.check_authenticity()], state='normal'
)
else:
self.create_button_for_main_menu_item(
menu_frame,
"Check Authenticity",
"check_authenticity_locked.jpg",
0.47, 0.66,
command=lambda: self.check_authenticity(), state='disabled'
)
if self.controller.cc.card_present:
if self.controller.cc.card_type != "Satodime":
self.create_button_for_main_menu_item(
menu_frame,
"Reset my Card",
"reset.png",
0.54, 0.595,
command=lambda: self.reset_my_card_window(), state='normal'
)
else:
# TODO: remove button?
self.create_button_for_main_menu_item(
menu_frame,
"Reset my Card",
"reset_locked.jpg",
0.54, 0.595,
command=lambda: None, state='disabled'
)
self.create_button_for_main_menu_item(
menu_frame,
"About",
"about.jpg",
rel_y=0.73, rel_x=0.5052,
command=lambda: self.about(), state='normal'
)
else:
self.create_button_for_main_menu_item(
menu_frame,
"Reset my Card",
"reset_locked.jpg",
0.54, 0.595,
command=lambda: None, state='disabled'
)
self.create_button_for_main_menu_item(
menu_frame,
"About",
"about_locked.jpg",
rel_y=0.73, rel_x=0.5052,
command=lambda: self.about(), state='disabled'
)
self.create_button_for_main_menu_item(
menu_frame,
"Go to the Webshop",
"webshop.png",
0.95, 0.67,
command=lambda: webbrowser.open("https://satochip.io/shop/", new=2), state='normal'
)
logger.info("Main menu setup complete")
return menu_frame
except Exception as e:
logger.error(f"An error occurred in main_menu: {e}", exc_info=True)
################################
""" UTILS FOR CARD CONNECTOR """
def update_status(self, isConnected=None):
try:
if self.controller.cc.mode_factory_reset == True:
# we are in factory reset mode
if isConnected is True:
logger.info(f"Card inserted for Reset Factory!")
try:
# Mettre à jour les labels et les boutons en fonction de l'insertion de la carte
# self.reset_button.configure(text='Reset', state='normal')
self.show_button.configure(text='Reset', state='normal')
logger.debug("Labels and button updated for card insertion")
except Exception as e:
logger.error(f"An error occurred while updating labels and button for card insertion: {e}",
exc_info=True)
elif isConnected is False:
logger.info(f"Card removed for Reset Factory!")
try:
# Mettre à jour les labels et les boutons en fonction du retrait de la carte
self.show_button.configure(text='Insert card', state='disabled')
logger.debug("Labels and button updated for card removal")
except Exception as e:
logger.error(f"An error occurred while updating labels and button for card removal: {e}",
exc_info=True)
else: # None
pass
else:
# normal mode
logger.info("CC UTILS: View.update_status | Entering update_status method")
if isConnected is True:
try:
logger.info("Getting card status")
self.controller.get_card_status()
if not self.welcome_in_display: # TODO?
self.start_setup()
except Exception as e:
logger.error(f"An error occurred while getting card status: {e}", exc_info=True)
elif isConnected is False:
try:
logger.info("Card disconnected, resetting status")
self.start_setup()
except Exception as e:
logger.error(f"An error occurred while resetting card status: {e}", exc_info=True)
logger.info("Exiting update_status method successfully")
else: # isConnected is None
pass
except Exception as e:
logger.error(f"An unexpected error occurred in update_status method: {e}", exc_info=True)
def get_passphrase(self, msg):
try:
logger.info("CC UTILS: IN View.get_passphrase() | Creating new popup window for PIN entry")
# Création d'une nouvelle fenêtre pour le popup
popup = customtkinter.CTkToplevel(self)
popup.title("PIN Required")
popup.configure(fg_color='whitesmoke')
popup.protocol("WM_DELETE_WINDOW", lambda: [popup.destroy()]) # Désactive le bouton de fermeture
# Définition de la taille et position du popup
popup_width = 400
popup_height = 200
position_right = int(self.winfo_screenwidth() / 2 - popup_width / 2)
position_down = int(self.winfo_screenheight() / 2 - popup_height / 2)
popup.geometry(f"{popup_width}x{popup_height}+{position_right}+{position_down}")
logger.debug(
f"Popup window geometry set to {popup_width}x{popup_height} at position ({position_right}, {position_down})")
try:
# Ajout d'un label avec une image dans le popup
icon_image = Image.open("./pictures_db/icon_change_pin_popup.jpg")
icon = customtkinter.CTkImage(light_image=icon_image, size=(20, 20))
icon_label = customtkinter.CTkLabel(popup, image=icon, text=f"\nEnter the PIN code of your card.",
compound='top',
font=customtkinter.CTkFont(family="Outfit",
size=18,
weight="normal"))
icon_label.pack(pady=(0, 10)) # Ajout d'un padding différent pour l'icône
logger.debug("Label added to popup")
except Exception as e:
logger.error(f"An error occurred while adding label to popup: {e}", exc_info=True)
try:
# Ajout d'un champ d'entrée