-
Notifications
You must be signed in to change notification settings - Fork 1
/
leek.py
1708 lines (1568 loc) · 66.7 KB
/
leek.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
####################################################
# leek - the file manager
# - name - leek (leek.py)
# - author - Otakar Kočí (Otas02CZ)
# - date - 2021 - 2022
# - description
# - - lehky konzolovy spravce souboru pro windows operacni system
# - - min verze pythonu je python 3.10 a win pravdepodobne win 8
####################################################
# IMPORTY ##########################################
import os
import stat
import pathlib
import shutil
import operator
from rich import print as rprint
from rich.console import Console
from rich.layout import Layout
from rich.panel import Panel
from rich.prompt import Prompt as prompt
from rich.prompt import Confirm as confirm
from rich.table import Table
from rich.text import Text
from datetime import datetime
from configuration import Configuration
from localization import Localization
####################################################
class CFG:
VERSION = "1.3.1"
AUTHOR = "Otakar Kočí"
DATE = "11/08/2022"
WEBPAGE = "http://www.otakarkoci.funsite.cz/leek/"
GITHUB = "https://github.com/Otas02CZ/leek"
PYTHON_VERSION = "3.10 (3.10.6)"
RICH_VERSION = "12.5.1"
PYINSTALLER_VERSION = "5.3"
UPX_VERSION = "3.96"
ZIP7_VERSION = "22.01"
# GLOBALNI PROMENNE ################################
console = Console() # objekt konzole pro vyuziti nekterych funkci knihovny rich
layout = Layout() # objekt layoutu pro vyuziti nekterych funkci knihovny rich
user_input = [] # uklada se zde prikazovy input se vsemi parametry od uzivatele ke zpracovani
command = "" # globalni promenna pro ulozeni aktualniho prikazu
to_select = [] # promenna seznamu polozek k poznaceni
selected = [] # promenna seznamu polozek poznacenych
location = "root" # aktualni umisteni do ktereho se divame, root je pro zobrazeni korenu disku
drives = [] # promenna seznamu vsech disku
search_result = [] # promenna seznamu vysledku vyhledavani
sort_result = [] # promenna seznamu vysledku serazeni
viewable = [] # dictionary zobrazitelnych polozek v aktualnim umisteni
visible = [] # dictionary prave zobrazenych polozek v aktualnim umisteni podle promenne page
errors = [] # promenna seznamu erroru a take vsech chybovych hlaseni
info = [] # promenna seznamu informacnich a pozitivnich zprav od programu
page = 1 # aktualni strana
max_page = 1 # celkovy pocet vsech stran
to_open = 0 # index polozky na strance aktualni zobrazene k otevreni
table = Table() # objekt tabulky pro vyuziti nekterych funkci knihovny rich
up = 0 # o kolik se posunouti
drive = "" # aktualni disk
direction = "" # kterym smerem se posunout mezi stranami
distance = 0 # o kolik se posunouti mezi stranami
type_select = "" # prepina mezi typem selectu
dirsize = 0 # uklada velikost zvoleneho adresare
successful = 0 # pocet operaci uspesne zvladnutych
failed = 0 # pocet operaci neuspesne selhanych
new_dir = "" # nazev pro novy adresar
r_new_name = "" # novy nazev k prejmenovani vybrane polozky nebo take vybranych polozek
r_place = "" # umisteni pro pocitadlo pri prejmenovani polozek
r_counter_begin = 0 # pocatek pocitadla
r_increment = 0 # udava o kolik se pocitadlo meni
r_n_digit = 0 # minimalni pocet cisel v prejmenovanem nazvu
r_file_type = "" # druhy nazev nebo koncovka k prejmenovani vybrane polozky nebo take vybranych polozek
r_advanced = False # pouziva se funkce pocitadla pro prejmenovani
pre_select = "" # umisteni pred zobrazenim selectu
pre_search = "" # umisteni pred pred zobrazenim searchu
find = "" # hledany vyraz
####################################################
def get_list_of_drives() -> list:
r"""
Zjistí seznam windows-like disků na počítači a vráti jej v podobě listu.
"""
drives = []
dl = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
for letter in dl:
if os.path.exists(letter + ":"):
drives.append(letter + ":\\\\")
return drives
def get_list_of_files(location) -> list:
r"""
Získá seznam souborů a složek v adresáři z argumentu location a vrátí jej v podobě listu.
Pokud dojde k chybě vrátí False.
Arguments:
- location (string) -> adresář pro získání seznamu souborů a složek
"""
global errors
try:
return os.listdir(location)
except:
errors.append("permission_error")
return False
def remove_file(location) -> bool:
r"""
Odstraní soubor, jehož cesta je specifikována v parametru location.
Pokud dojde k chybě vrací False, jinak True.
Arguments:
- location (string) -> jako cesta k souboru k odstranění
"""
try:
os.remove(location)
return True
except:
return False
def remove_directory(location) -> bool:
r"""
Odstraní složku, jejíž cesta je specifikována v parametru location.
Pokud dojde k chybě vrací False, jinak True.
Arguments:
- location (string) -> jako cesta ke složce k odstranění
"""
try:
os.rmdir(location)
return True
except:
return False
def remove_tree_directory(location) -> bool:
r"""
Odstraní složku s podsložkami, jejíž cesta je specifikována v parametru location.
Pokud dojde k chybě vrací False, jinak True.
Arguments:
- location (string) -> jako cesta ke složce s podsložkami k odstranění
"""
try:
shutil.rmtree(location)
return True
except:
return False
def create_directory(location, name) -> bool:
r"""
Vytvoří složku v zadaném adresáři se zadaným jménem.
V případě chyby vrátí False, jinak vrátí True.
Arguments:
- location - jako cesta k umístění, kde se má vytvořit nová složka
- name - jako název nové složky
"""
try:
os.mkdir(location + "\\" + name)
return True
except:
return False
def rename_file_or_directory(location, new) -> bool:
r"""
Přejmenuje soubor či složku v umístění z location na název přijatý v new.
V případě chyby vrátí False, jinak vrátí True
Arguments:
- location (String) - cesta k souboru či složce k přejmenování (i s vlastním názvem)
- new (String) - nový název pro soubor k přejmenování
"""
old = os.path.basename(location)
try:
os.rename(location, location.replace(old, new))
return True
except:
return False
def get_info_about_file(location) -> os.stat_result:
r"""
Vrátí informace o souboru či složce v umístění z location získané pomocí funkce os.stat()
Arguments:
- location (String) - jako cesta k souboru či složce
"""
try:
return os.lstat(location)
except:
return False
def move_file_or_directory(source, destination) -> bool:
r"""
Přesune soubor či složku z cesty v source do cesty v destination
V případě chyby vrátí False, jinak vrátí True
Arguments:
- source (String) - jako cesta k souboru či složce (i s názvem)
- destination (String) - jako cesta k umístění kam se vše přesune (i s názvem)
"""
try:
shutil.move(source, destination)
return True
except:
return False
def copy_entire_directory(source, destination) -> bool:
r"""
Zkopíruje celou složku se všemi věcmi vnořenými z umístění v source do umístění v destination
V případě chyby vrátí False, jinak vrátí True
Arguments:
- source (String) - jako cesta k souboru či složce (i s názvem)
- destination (String) - jako cesta k umístění kam se vše zkopíruje (i s názvem)
"""
try:
shutil.copytree(source, destination)
return True
except:
return False
def copy_file(source, destination) -> bool:
r"""
Zkopíruje soubor z umístění v source do umístění v destination
V případě chyby vrátí False, jinak vrátí True
Arguments:
- source (String) - jako cesta k souboru či složce (i s názvem)
- destination (String) - jako cesta k umístění kam se zkopíruje (i s názvem)
"""
try:
shutil.copyfile(source, destination)
return True
except:
return False
def is_numeric(word) -> bool:
r"""
Vyzkouší jestli string word je validní číslo, pokud ano vrátí True, jinak False
Arguments:
- word (String) - text, který má být zkontrolován, zda se jedná o validní číslo
"""
word = word.strip()
try:
word = int(word)
return True
except:
return False
def check_input(input) -> bool:
r"""
Zkontroluje jestli input zadaný od uživatele není prázdný
a pokud není, tak jej rozdělí na substringy a uloží do
globální proměnné user_input. Pokud je prázdný vrací False
a nic neukládá, jinak vrací hodnotu True.
Arguments:
- input (String) - input od uživatele (sada příkazů s parametry)
"""
global user_input, command, errors
if input=="":
errors.append("no_input")
return False
user_input = input.split()
command = user_input[0]
return True
def check_to_select() -> bool:
r"""
Zkontroluje jesli zadaný sled příkazů od uživatele je validní pro funkci select a uloží si zadání uživatele.
Pracuje s globálními proměnnými user_input, to_select, errors a type_select
Pokud vše projde správně uloží položky k označení do seznamu to_select
"""
global to_select, user_input, errors, type_select
user_input.pop(0)
to_select = []
if len(user_input)==0:
if type_select=="unselect":
for i in range(len(selected)):
to_select.append(i+1)
type_select="unselect"
else:
for i in range(len(viewable)):
to_select.append(i+1)
type_select = "all"
return True
if len(user_input)==1:
if is_numeric(user_input[0]):
to_select.append(int(user_input[0]))
return True
else:
errors.append("select_bad_input")
return False
if len(user_input)==2:
if user_input[1]=="-":
errors.append("select_bad_input")
return False
if len(user_input)>3:
if user_input[1]=="-":
errors.append("select_bad_input")
return False
if len(user_input)==3:
if user_input[1]=="-":
begin = int(user_input[0])
end = int(user_input[2])
while (begin<=end):
to_select.append(begin)
begin += 1
return True
else:
for i in user_input:
if is_numeric(i):
to_select.append(int(i))
return True
def check_to_open() -> bool:
r"""
Zkontroluje jestli zadaný sled příkazů a parametrů
je správným vstupem pro funkci open a nebo dirsize
Pokud ne vrací False, jinak True
"""
global user_input, to_open, errors
vypisy = "open_bad_input"
if user_input[0]=="dirsize":
vypisy = "dirsize_bad_input"
user_input.pop(0)
if len(user_input)!=1:
errors.append(vypisy)
return False
else:
if is_numeric(user_input[0]):
to_open = int(user_input[0])
return True
else:
errors.append(vypisy)
return False
def is_drive() -> bool:
r"""
Zjistí jestli aktuální umístění je kořenem nějakého disku
Vrací False pokud ne, jinak True
"""
global drives, location
for i in drives:
if i==location:
return True
return False
def open():
r"""
Otevře soubor či složku na zadaném ID ze zobrazených položek
Pokud se jedná o soubor otevře jej ve výchozí aplikaci win
jinak se přesune do složky a zobrazí její obsah
"""
global location, info, to_open, errors, drives, page
new_location = ""
if to_open>len(visible) or to_open<1:
errors.append("open_nonexistent")
else:
if is_drive():
new_location = location + visible[to_open-1]["name"]
elif location=="root":
new_location = visible[to_open-1]["name"]
elif location=="select":
new_location = visible[to_open-1]["name"]
elif location=="search":
new_location = visible[to_open-1]["name"]
else:
new_location = location + "\\" + visible[to_open-1]["name"]
if os.path.isdir(new_location):
location = new_location
info.append("open_dir_success")
page = 1
elif os.path.isfile(new_location):
os.startfile(new_location)
info.append("open_file_success")
else:
errors.append("file_does_not_exist")
def get_dirsize():
r"""
Zjistí velikost aktuální složky a uloží ji do globální proměnné dirsize
A ta se potom vypíše při refreshi obrazu
"""
global info, to_open, errors, dirsize
new_location = ""
if to_open>len(visible) or to_open<1:
errors.append("dirsize_nonexistent")
else:
if is_drive():
new_location = location + visible[to_open-1]["name"]
elif location=="select":
new_location = selected[to_open-1]
elif location=="search":
new_location = selected[to_open-1]
elif location=="root":
new_location = visible[to_open-1]["name"]
else:
new_location = location + "\\" + visible[to_open-1]["name"]
if os.path.isdir(new_location):
dirsize = 0
for path, dirs, files in os.walk(new_location):
for f in files:
fp = os.path.join(path, f)
dirsize += os.path.getsize(fp)
info.append("dirsize_success")
else:
errors.append("file_or_does_not_exist_dir_in_dirsize")
def check_validity_to_select():
r"""
Zjistí jestli uživatel nezadal duplicitní položky pro označení
Nebo jestli nezadal neexistující položky
Připravuje hotový seznam to_select
Pro funkci do_select_or_add
"""
global to_select, visible, errors, type_select
error = False
if type_select=="unselect":
for i in range(len(selected)):
if to_select[i] > len(selected) or to_select[i] < 1:
to_select.pop(i)
error = True
type_select = ""
elif not type_select=="all":
for i in range(len(to_select)):
if to_select[i] > len(visible) or to_select[i] < 1:
to_select.pop(i)
error = True
if error:
errors.append("invalid_index_of_select")
def do_remove(localization : Localization):
r"""
Vymaže soubory, složky a vnořené položky ve složkách,
které jsou poznačené a vymaže aktuální seznam poznačených
"""
global info, errors, selected, successful, failed
if len(selected)==0:
errors.append("remove_nothing_to_remove")
return
else:
for i in range(len(selected)):
rprint(localization.get_text('remove_item_message').format(selected[i]))
if not confirm.ask(localization.get_text('remove_confirm').format(len(selected))):
info.append("remove_abort")
return
for i in range(len(selected)):
if os.path.exists(selected[i]):
if os.path.isfile(selected[i]):
if remove_file(selected[i]):
successful+=1
rprint(localization.get_text('item_removed').format(selected[i]))
else:
rprint(localization.get_text('unable_to_remove_item').format(selected[i]))
failed+=1
elif os.path.isdir(selected[i]):
if len(os.listdir(selected[i]))==0:
if remove_directory(selected[i]):
successful+=1
rprint(localization.get_text('item_removed').format(selected[i]))
else:
rprint(localization.get_text('unable_to_remove_item').format(selected[i]))
failed+=1
else:
if remove_tree_directory(selected[i]):
successful+=1
rprint(localization.get_text('item_removed').format(selected[i]))
else:
rprint(localization.get_text('unable_to_remove_item').format(selected[i]))
failed+=1
else:
rprint(localization.get_text('nonexistent_path').format(selected[i]))
failed+=1
selected = []
info.append("remove_successful")
input(localization.get_text('press_enter_to_hide'))
def do_copy(localization : Localization):
r"""
Zkopíruje vybrané soubory, složky a vnořené položky v adresářích z
poznačeného seznamu do aktuálního umístění zobrazeného
"""
global info, errors, successful, failed
if len(selected)==0:
errors.append("copy_nothing_to_copy")
return
elif location=="select":
errors.append("copy_no_copy_in_select")
return
elif location=="root":
errors.append("copy_no_copy_in_root")
return
elif location=="search":
errors.append("copy_no_copy_in_search")
else:
for i in range(len(selected)):
if os.path.exists(selected[i]):
if os.path.isfile(selected[i]):
if os.path.exists(location+"\\"+os.path.basename(selected[i])):
rprint(localization.get_text('copy_item_already_exists').format(os.path.basename(selected[i]), location))
failed+=1
elif copy_file(selected[i], location+"\\"+os.path.basename(selected[i])):
successful+=1
rprint(localization.get_text('item_copied').format(selected[i], location))
else:
rprint(localization.get_text('unable_to_copy_item').format(selected[i], location))
failed+=1
elif os.path.isdir(selected[i]):
if os.path.exists(location+"\\"+os.path.basename(selected[i])):
rprint(localization.get_text('copy_folder_already_exists').format(os.path.basename(selected[i]), location))
failed+=1
elif copy_entire_directory(selected[i], location+"\\"+os.path.basename(selected[i])):
successful+=1
rprint(localization.get_text('item_copied').format(selected[i], location))
else:
rprint(localization.get_text('unable_to_copy_item').format(selected[i], location))
failed+=1
else:
rprint(localization.get_text('nonexistent_path').format(selected[i]))
failed+=1
info.append("copy_successful")
input(localization.get_text('press_enter_to_hide'))
def do_move(localization : Localization):
r"""
Přesune soubory, složky a všechny vnořené položky adresářů
z poznačených do aktuálního zobrazeného umístění
"""
global info, errors, successful, failed
if len(selected)==0:
errors.append("move_nothing_to_move")
return
elif location=="select":
errors.append("move_no_move_in_select")
return
elif location=="root":
errors.append("move_no_move_in_root")
elif location=="search":
errors.append("move_no_move_in_search")
else:
for i in range(len(selected)):
if os.path.exists(selected[i]):
if move_file_or_directory(selected[i], location):
successful+=1
rprint(localization.get_text('item_moved').format(selected[i], location))
else:
rprint(localization.get_text('unable_to_move').format(selected[i], location))
failed+=1
else:
rprint(localization.get_text('nonexistent_path').format(selected[i]))
failed+=1
info.append("move_successful")
selected = []
input(localization.get_text('press_enter_to_hide'))
def check_to_up() -> bool:
r"""
Zkontroluje jestli uživatel zadal správný sled příkazů a parametrů
pro funkci up, pokud ne tak vrací False, jinak vrací True
"""
global user_input, up, errors
user_input.pop(0)
if len(user_input)==0:
up = 1
return True
elif len(user_input)!=1:
errors.append("up_bad_input")
return False
else:
if is_numeric(user_input[0]):
up = int(user_input[0])
return True
else:
errors.append("up_bad_input")
return False
def make_dir():
r"""
V aktuálním adresáři umístění vytvoří složku
Jméno složky si uživatel zadá parametrem
při volání příkazu makedir
"""
global new_dir, errors, info
if location=="root":
errors.append("make_dir_no_root")
elif location=="select":
errors.append("make_dir_no_select")
elif location=="search":
errors.append("make_dir_no_search")
else:
if create_directory(location, new_dir):
info.append("make_dir_successful")
else:
errors.append("make_dir_failed")
new_dir = ""
def go_up():
r"""
Přesune aktuální umístění zobrazení nahoru nebo dolů
Podle čísla v globální proměnné up
"""
global location, info, errors, drives, up, page
page = 1
if location=="root":
errors.append("no_up_in_root")
up = 0
return
if up<1:
errors.append("up_bad_input")
return
if location=="select":
location = pre_select
return
if location=="search":
location = pre_search
return
while up>0:
for i in drives:
if i==location:
location = "root"
up = 0
info.append("up_success")
return
location = location.rsplit("\\", 1)[0]
location = location + "\\"
if not is_drive():
location = location[:-1]
up = up - 1
info.append("up_success")
def print_app_info(localization : Localization):
r"""
Vypíše základní informace programu
"""
clear()
text = localization.get_text('app_info').format(CFG.VERSION, CFG.AUTHOR, CFG.DATE, CFG.WEBPAGE, CFG.GITHUB, CFG.PYTHON_VERSION, CFG.RICH_VERSION, CFG.PYINSTALLER_VERSION, CFG.UPX_VERSION, CFG.ZIP7_VERSION)
rprint(Panel.fit(text, title=localization.get_text('app_info_leek_title'), style='bold magenta'))
input(localization.get_text('press_enter_to_hide'))
def print_help(localization : Localization):
r"""
Vypíše pomoc programu uživateli
"""
clear()
rprint(Panel(Text(localization.get_text('app_help_leek_title'), style="bold white", justify="center")))
text = Text(localization.get_text('app_help_part_one'), style="bold yellow", justify='full')
rprint(Panel(text, title=localization.get_text('app_help_basic_title'),style="bold blue"))
rprint(Panel(localization.get_text('app_help_part_two'), title=localization.get_text('app_help_command_list_leek_title'), style="bold green"))
input(localization.get_text('press_enter_to_hide'))
def print_page(localization : Localization):
r"""
Vypíše informační text zobrazující informace
o počtu stran, a na které stránce teď jsme
Zároveň informuje o množství zobrazených
a zobrazitelných položek
"""
rprint(localization.get_text('list_info').format(page, max_page, len(viewable), len(visible)))
def print_sortinfo(cfg : Configuration, localization : Localization):
r"""
Vypíše informace o aktuálním nastavení řazení
položek v aktuálním zobrazení
"""
match cfg.get_cfg('sort_key'):
case "none":
if cfg.get_cfg('sort_direction')=="up":
rprint(localization.get_text('none_up'))
if cfg.get_cfg('sort_direction')=="down":
rprint(localization.get_text('none_down'))
case "name":
if cfg.get_cfg('sort_direction')=="up":
rprint(localization.get_text('name_up'))
if cfg.get_cfg('sort_direction')=="down":
rprint(localization.get_text('name_down'))
case "created":
if cfg.get_cfg('sort_direction')=="up":
rprint(localization.get_text('created_up'))
if cfg.get_cfg('sort_direction')=="down":
rprint(localization.get_text('created_down'))
case "size":
if cfg.get_cfg('sort_direction')=="up":
rprint(localization.get_text('size_up'))
if cfg.get_cfg('sort_direction')=="down":
rprint(localization.get_text('size_down'))
case "changed":
if cfg.get_cfg('sort_direction')=="up":
rprint(localization.get_text('changed_up'))
if cfg.get_cfg('sort_direction')=="down":
rprint(localization.get_text('changed_down'))
def file_permissions(int_rep : int) -> str:
oct_rep = oct(stat.S_IMODE(int_rep))
return str(oct_rep)
def create_table(cfg : Configuration, localization : Localization):
r"""
Vytvoří tabulkový list pro zobrazení z funkce main
"""
global table
table = Table(title=location)
table.add_column(localization.get_text('id'), justify="center", style="blue", no_wrap=True, min_width=4)
table.add_column(localization.get_text('file_or_folder_name'), justify="left", style="green")
table.add_column(localization.get_text('size').format(cfg.get_cfg('size_unit')), justify="center", style="yellow", no_wrap=True)
table.add_column(localization.get_text('created'), justify="center", style="white", no_wrap=True)
table.add_column(localization.get_text('modified'), justify="center", style="cyan", no_wrap=True)
table.add_column(localization.get_text('rights'), justify="center", style="red", no_wrap=True)
if location=="root":
for i in range(len(visible)):
table.add_row(str(visible[i]["id"]), visible[i]["name"], "", "", "", "")
else:
for i in range(len(visible)):
if os.path.isdir(location + "\\" + visible[i]["name"]):
table.add_row(str(visible[i]["id"]), visible[i]["name"], "-", timedate(visible[i]["created"]), timedate(visible[i]["changed"]), file_permissions(visible[i]["rights"]))
else:
table.add_row(str(visible[i]["id"]), visible[i]["name"], str(size_correct_unit(cfg, visible[i]["size"])), timedate(visible[i]["created"]), timedate(visible[i]["changed"]), str(visible[i]["rights"]))
def get_file_record_as_dictionary(files, i):
r"""
Vrátí záznam o položce (soubor nebo i složka)
jako dictionary se všemi informacemi typu
časy založení a úpravy, práva, velikost
pro využití v tabulce
Arguments:
- files (list) - posílá seznam položek ke zpracování funkcí
- i (int) - index seznamu, ze kterého se požaduje získání informací
"""
global location
if location=="search":
file_location = files[i]
elif location=="select":
file_location = files[i]
file_info = get_info_about_file(file_location)
if not file_info:
return {"id" : i+1, "name" : "noneexistent", "size" : 0, "created" : 0, "changed" : 0, "rights" : 0}
if os.path.isdir(file_location):
return {"id" : i+1, "name" : files[i], "size" : 0, "created" : file_info[9], "changed" : file_info[8], "rights" : file_info[0]}
if os.path.isfile(file_location):
return {"id" : i+1, "name" : files[i], "size" : int(float(file_info[6])/1024), "created" : file_info[9], "changed" : file_info[8], "rights" : file_info[0]}
elif is_drive():
file_location = location + files[i]
else:
file_location = location + "\\" + files[i]
file_info = get_info_about_file(file_location)
if not file_info:
return {"id" : i+1, "name" : "noneexistent", "size" : 0, "created" : 0, "changed" : 0, "rights" : 0}
if os.path.isdir(file_location):
return {"id" : i+1, "name" : files[i], "size" : 0, "created" : file_info[9], "changed" : file_info[8], "rights" : file_info[0]}
if os.path.isfile(file_location):
return {"id" : i+1, "name" : files[i], "size" : int(float(file_info[6])/1024), "created" : file_info[9], "changed" : file_info[8], "rights" : file_info[0]}
def timedate(seconds) -> str:
r"""
Ze sekund na vstupu vytvoří string času ve formátu DD/MM/YY-HH/MM/SS
Arguments:
- seconds (int) - čas pro zpracování zadaný v sekundách
"""
return datetime.fromtimestamp(seconds).strftime("%d/%m/%Y-%H:%M:%S")
def create_viewable(cfg : Configuration):
r"""
Vytvoří dictionary zobrazitelných položek v aktuálním
zvoleném adresáři, volá funkci get_file_as_dictionary(), která
vrací jednotlivé informace o položkách, které se ukládají
"""
global viewable, drives, errors, selected
viewable = []
if location=="root":
for i in range(len(drives)):
viewable.append({"id" : i+1, "name" : drives[i], "size" : 0, "created" : 0, "changed" : 0, "rights" : 0})
elif location=="select":
for i in range(len(selected)):
viewable.append(get_file_record_as_dictionary(selected, i))
elif location=="search":
for i in range(len(search_result)):
viewable.append(get_file_record_as_dictionary(search_result, i))
else:
files = get_list_of_files(location)
if not files:
if "open_dir_success" in errors:
errors.remove("open_dir_success")
return
for i in range(len(files)):
viewable.append(get_file_record_as_dictionary(files, i))
do_sort(cfg)
def do_sort(cfg : Configuration):
r"""
Zajistí seřazení zobrazitelných položek dle vstupu uživatele pro
Funkci sort pro zobrazení položek umístění
"""
global viewable
match cfg.get_cfg('sort_key'):
case "none":
return
case "name":
viewable.sort(key=operator.itemgetter("name"))
case "created":
viewable.sort(key=operator.itemgetter("created"))
case "size":
viewable.sort(key=operator.itemgetter("size"))
case "changed":
viewable.sort(key=operator.itemgetter("changed"))
match cfg.get_cfg('sort_direction'):
case "down":
viewable.reverse()
def go_root():
r"""
Přesuneme aktuální zobrazení adresáře do rootu
aktuálního disku
"""
global location, info, errors, page
if location=="root":
errors.append("no_drive_no_root")
else:
location = location[:4]
info.append("root_success")
page = 1
def check_new_dir_name() -> bool:
r"""
Zkontroluje jestli uživatel zadal správný sled příkazů a parametrů
Pro volání funkce makedir, pokud ne vrací False, jinak True
"""
global new_dir, user_input, errors
user_input.pop(0)
if len(user_input)!=1:
errors.append("make_dir_bad_input")
return False
else:
new_dir = str(user_input[0])
return True
def check_drive() -> bool:
r"""
Zkontroluje jestli uživatel zadal správný sled příkazů a parametrů
Pro volání funkce drive, pokud ne vrací False, jiank True
"""
global user_input, drive, errors
user_input.pop(0)
if len(user_input)!=1:
errors.append("drive_bad_input")
return False
else:
if user_input[0].isalpha() and len(user_input[0])==1:
drive = str(user_input[0])
return True
else:
errors.append("drive_bad_input")
return False
def go_drive():
r"""
Přesune aktuální zobrazení umístění
na disk v globální proměnné drive
"""
global info, errors, drive, location, page
if drive.islower():
drive = drive.upper()
drive = drive + ":\\\\"
for i in drives:
if i==drive:
location = drive
info.append("drive_success")
page = 1
return
errors.append("drive_does_not_exist")
def calculate_pages(cfg : Configuration):
r"""
Zjistí úplný počet stránek listů zobrazení
Uloží jej do proměnné názvu max_page
"""
global rows, viewable, visible, page, max_page
max_page = 1
while len(viewable)>(max_page*cfg.get_cfg('rows')):
max_page = max_page + 1
def create_visible(cfg : Configuration):
r"""
Vytvoří dictionary viditelných položek pro zobrazení
na aktuální zvolené stránce pomocí listů
"""
global viewable, visible
j = 0
calculate_pages(cfg)
visible = []
for i in range(len(viewable)):
if not i<((cfg.get_cfg('rows')*page)-cfg.get_cfg('rows')):
if i<cfg.get_cfg('rows')*page:
visible.append(viewable[i].copy())
visible[j]["id"] = j+1
j+=1
def go_unselect():
r"""
Zruší označení vybraných položek podle listu to_select a vyčistí jej
Odoznačování se děje dle id v seznamu označených
"""
global selected, info, to_select, errors
to_select = list(set(to_select))
to_select.sort(reverse=True)
if len(selected)>0:
for i in range(len(to_select)):
selected.pop(to_select[i]-1)
to_select = []
info.append("unselect_success")
def check_next_previous() -> bool:
r"""
Zkontroluje správný vstup funkce next a previous,
pokud není správný tak vrátí False, jinak True
"""
global user_input, errors, distance
user_input.pop(0)
if len(user_input)==0:
distance = 1
return True
elif len(user_input)!=1:
if direction=="next":
errors.append("next_bad_input")
else:
errors.append("previous_bad_input")
return False
else:
if is_numeric(user_input[0]):
distance = int(user_input[0])
else:
if direction=="next":
errors.append("next_bad_input")
else:
errors.append("previous_bad_input")
return False
if distance<1:
if direction=="next":
errors.append("next_bad_input")
else:
errors.append("previous_bad_input")
return False
return True
def check_to_rename(how) -> bool:
r"""
Zkontroluje správnost vstupu pro funkci rename a copyrename
Pokud není v pořádku, tak vrátí hodnotu False, jinak True
Funkce kontroluje jak vstup pro rename tak pro copyrename
Který vstup má kontrolovat definuje parametr how