forked from FaithLife-Community/LogosLinuxInstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.py
834 lines (735 loc) · 33.3 KB
/
system.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
import logging
import distro
import os
import shutil
import subprocess
import sys
import time
import zipfile
from pathlib import Path
import psutil
import config
import msg
import network
# TODO: Replace functions in control.py and wine.py with Popen command.
def run_command(command, retries=1, delay=0, **kwargs):
check = kwargs.get("check", True)
text = kwargs.get("text", True)
capture_output = kwargs.get("capture_output", True)
shell = kwargs.get("shell", False)
env = kwargs.get("env", None)
cwd = kwargs.get("cwd", None)
encoding = kwargs.get("encoding", None)
cmdinput = kwargs.get("input", None)
stdin = kwargs.get("stdin", None)
stdout = kwargs.get("stdout", None)
stderr = kwargs.get("stderr", None)
timeout = kwargs.get("timeout", None)
bufsize = kwargs.get("bufsize", -1)
executable = kwargs.get("executable", None)
pass_fds = kwargs.get("pass_fds", ())
errors = kwargs.get("errors", None)
preexec_fn = kwargs.get("preexec_fn", None)
close_fds = kwargs.get("close_fds", True)
universal_newlines = kwargs.get("universal_newlines", None)
startupinfo = kwargs.get("startupinfo", None)
creationflags = kwargs.get("creationflags", 0)
restore_signals = kwargs.get("restore_signals", True)
start_new_session = kwargs.get("start_new_session", False)
user = kwargs.get("user", None)
group = kwargs.get("group", None)
extra_groups = kwargs.get("extra_groups", None)
umask = kwargs.get("umask", -1)
pipesize = kwargs.get("pipesize", -1)
process_group = kwargs.get("process_group", None)
if retries < 1:
retries = 1
if isinstance(command, str) and not shell:
command = command.split()
for attempt in range(retries):
try:
result = subprocess.run(
command,
check=check,
text=text,
shell=shell,
capture_output=capture_output,
input=cmdinput,
stdin=stdin,
stdout=stdout,
stderr=stderr,
encoding=encoding,
cwd=cwd,
env=env,
timeout=timeout,
bufsize=bufsize,
executable=executable,
errors=errors,
pass_fds=pass_fds,
preexec_fn=preexec_fn,
close_fds=close_fds,
universal_newlines=universal_newlines,
startupinfo=startupinfo,
creationflags=creationflags,
restore_signals=restore_signals,
start_new_session=start_new_session,
user=user,
group=group,
extra_groups=extra_groups,
umask=umask,
pipesize=pipesize,
process_group=process_group
)
return result
except subprocess.CalledProcessError as e:
logging.error(f"Error occurred in run_command() while executing \"{command}\": {e}") # noqa: E501
if "lock" in str(e):
logging.debug(f"Database appears to be locked. Retrying in {delay} seconds…") # noqa: E501
time.sleep(delay)
else:
raise e
except Exception as e:
logging.error(f"An unexpected error occurred when running {command}: {e}") # noqa: E501
return None
logging.error(f"Failed to execute after {retries} attempts: '{command}'")
return None
def popen_command(command, retries=1, delay=0, **kwargs):
shell = kwargs.get("shell", False)
env = kwargs.get("env", None)
cwd = kwargs.get("cwd", None)
stdin = kwargs.get("stdin", None)
stdout = kwargs.get("stdout", None)
stderr = kwargs.get("stderr", None)
bufsize = kwargs.get("bufsize", -1)
executable = kwargs.get("executable", None)
pass_fds = kwargs.get("pass_fds", ())
preexec_fn = kwargs.get("preexec_fn", None)
close_fds = kwargs.get("close_fds", True)
universal_newlines = kwargs.get("universal_newlines", None)
startupinfo = kwargs.get("startupinfo", None)
creationflags = kwargs.get("creationflags", 0)
restore_signals = kwargs.get("restore_signals", True)
start_new_session = kwargs.get("start_new_session", False)
user = kwargs.get("user", None)
group = kwargs.get("group", None)
extra_groups = kwargs.get("extra_groups", None)
umask = kwargs.get("umask", -1)
pipesize = kwargs.get("pipesize", -1)
process_group = kwargs.get("process_group", None)
encoding = kwargs.get("encoding", None)
errors = kwargs.get("errors", None)
text = kwargs.get("text", None)
if retries < 1:
retries = 1
if isinstance(command, str) and not shell:
command = command.split()
for attempt in range(retries):
try:
process = subprocess.Popen(
command,
shell=shell,
env=env,
cwd=cwd,
stdin=stdin,
stdout=stdout,
stderr=stderr,
bufsize=bufsize,
executable=executable,
pass_fds=pass_fds,
preexec_fn=preexec_fn,
close_fds=close_fds,
universal_newlines=universal_newlines,
startupinfo=startupinfo,
creationflags=creationflags,
restore_signals=restore_signals,
start_new_session=start_new_session,
user=user,
group=group,
extra_groups=extra_groups,
umask=umask,
pipesize=pipesize,
process_group=process_group,
encoding=encoding,
errors=errors,
text=text
)
return process
except subprocess.CalledProcessError as e:
logging.error(f"Error occurred in popen_command() while executing \"{command}\": {e}")
if "lock" in str(e):
logging.debug(f"Database appears to be locked. Retrying in {delay} seconds…")
time.sleep(delay)
else:
raise e
except Exception as e:
logging.error(f"An unexpected error occurred when running {command}: {e}")
return None
logging.error(f"Failed to execute after {retries} attempts: '{command}'")
return None
def wait_on(command):
try:
# Start the process in the background
# TODO: Convert to use popen_command()
process = subprocess.Popen(
command,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True
)
msg.status(f"Waiting on \"{' '.join(command)}\" to finish.", end='')
time.sleep(1.0)
while process.poll() is None:
msg.logos_progress()
time.sleep(0.5)
print()
# Process has finished, check the result
stdout, stderr = process.communicate()
if process.returncode == 0:
logging.info(f"\"{' '.join(command)}\" has ended properly.")
else:
logging.error(f"Error: {stderr}")
except Exception as e:
logging.critical(f"{e}")
def get_pids(query):
results = []
for process in psutil.process_iter(['pid', 'name', 'cmdline']):
try:
if process.info['cmdline'] is not None and query in process.info['cmdline']:
results.append(process)
except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess):
pass
return results
def get_logos_pids():
config.processes[config.LOGOS_EXE] = get_pids(config.LOGOS_EXE)
config.processes[config.login_window_cmd] = get_pids(config.login_window_cmd)
config.processes[config.logos_cef_cmd] = get_pids(config.logos_cef_cmd)
config.processes[config.logos_indexer_exe] = get_pids(config.logos_indexer_exe)
def get_pids_using_file(file_path, mode=None):
# Make list (set) of pids using 'directory'.
pids = set()
for proc in psutil.process_iter(['pid', 'open_files']):
try:
if mode is not None:
paths = [f.path for f in proc.open_files() if f.mode == mode]
else:
paths = [f.path for f in proc.open_files()]
if len(paths) > 0 and file_path in paths:
pids.add(proc.pid)
except psutil.AccessDenied:
pass
return pids
def reboot():
logging.info("Rebooting system.")
command = f"{config.SUPERUSER_COMMAND} reboot now"
subprocess.run(
command,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True,
text=True
)
sys.exit(0)
def t(command):
if shutil.which(command) is not None:
return True
else:
return False
def tl(library):
try:
__import__(library)
return True
except ImportError:
return False
def get_dialog():
if not os.environ.get('DISPLAY'):
msg.logos_error("The installer does not work unless you are running a display") # noqa: E501
dialog = os.getenv('DIALOG')
# Set config.DIALOG.
if dialog is not None:
dialog = dialog.lower()
if dialog not in ['curses', 'tk']:
msg.logos_error("Valid values for DIALOG are 'curses' or 'tk'.")
config.DIALOG = dialog
elif sys.__stdin__.isatty():
config.DIALOG = 'curses'
else:
config.DIALOG = 'tk'
def get_os():
config.OS_NAME = distro.id() # FIXME: Not working. Returns "Linux".
logging.info(f"OS name: {config.OS_NAME}")
config.OS_RELEASE = distro.version()
logging.info(f"OS release: {config.OS_RELEASE}")
return config.OS_NAME, config.OS_RELEASE
def get_superuser_command():
if config.DIALOG == 'tk':
if shutil.which('pkexec'):
config.SUPERUSER_COMMAND = "pkexec"
else:
msg.logos_error("No superuser command found. Please install pkexec.") # noqa: E501
else:
if shutil.which('pkexec'):
config.SUPERUSER_COMMAND = "pkexec"
elif shutil.which('sudo'):
config.SUPERUSER_COMMAND = "sudo"
elif shutil.which('doas'):
config.SUPERUSER_COMMAND = "doas"
else:
msg.logos_error("No superuser command found. Please install sudo or doas.") # noqa: E501
logging.debug(f"{config.SUPERUSER_COMMAND=}")
def get_package_manager():
# Check for package manager and associated packages
if shutil.which('apt') is not None: # debian, ubuntu
config.PACKAGE_MANAGER_COMMAND_INSTALL = ["apt", "install", "-y"]
config.PACKAGE_MANAGER_COMMAND_DOWNLOAD = ["apt", "install", "--download-only", "-y"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_REMOVE = ["apt", "remove", "-y"]
config.PACKAGE_MANAGER_COMMAND_QUERY = ["dpkg", "-l"]
config.QUERY_PREFIX = '.i '
# NOTE: in 24.04 "p7zip-full" pkg is transitional toward "7zip"
config.PACKAGES = "binutils cabextract fuse3 p7zip-full wget winbind"
config.L9PACKAGES = "" # FIXME: Missing Logos 9 Packages
config.BADPACKAGES = "" # appimagelauncher handled separately
elif shutil.which('dnf') is not None: # rhel, fedora
config.PACKAGE_MANAGER_COMMAND_INSTALL = ["dnf", "install", "-y"]
config.PACKAGE_MANAGER_COMMAND_DOWNLOAD = ["dnf", "install", "--downloadonly", "-y"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_REMOVE = ["dnf", "remove", "-y"]
# config.PACKAGE_MANAGER_COMMAND_QUERY = ["dnf", "list", "installed"]
config.PACKAGE_MANAGER_COMMAND_QUERY = ["rpm", "-qa"] # workaround
config.QUERY_PREFIX = ''
# config.PACKAGES = "patch fuse3 fuse3-libs mod_auth_ntlm_winbind samba-winbind samba-winbind-clients cabextract bc libxml2 curl" # noqa: E501
config.PACKAGES = (
"fuse3 fuse3-libs " # appimages
"mod_auth_ntlm_winbind samba-winbind samba-winbind-clients cabextract " # wine # noqa: E501
"p7zip-plugins " # winetricks
)
config.L9PACKAGES = "" # FIXME: Missing Logos 9 Packages
config.BADPACKAGES = "" # appimagelauncher handled separately
elif shutil.which('pamac') is not None: # manjaro
config.PACKAGE_MANAGER_COMMAND_INSTALL = ["pamac", "install", "--no-upgrade", "--no-confirm"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_DOWNLOAD = ["pamac", "install", "--no-upgrade", "--download-only", "--no-confirm"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_REMOVE = ["pamac", "remove", "--no-confirm"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_QUERY = ["pamac", "list", "-i"]
config.QUERY_PREFIX = ''
config.PACKAGES = "patch wget sed grep gawk cabextract p7zip samba bc libxml2 curl" # noqa: E501
config.L9PACKAGES = "" # FIXME: Missing Logos 9 Packages
config.BADPACKAGES = "" # appimagelauncher handled separately
elif shutil.which('pacman') is not None: # arch, steamOS
config.PACKAGE_MANAGER_COMMAND_INSTALL = ["pacman", "-Syu", "--overwrite", "\\*", "--noconfirm", "--needed"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_DOWNLOAD = ["pacman", "-Sw", "-y"]
config.PACKAGE_MANAGER_COMMAND_REMOVE = ["pacman", "-R", "--no-confirm"] # noqa: E501
config.PACKAGE_MANAGER_COMMAND_QUERY = ["pacman", "-Q"]
config.QUERY_PREFIX = ''
if config.OS_NAME == "steamos": # steamOS
config.PACKAGES = "patch wget sed grep gawk cabextract samba bc libxml2 curl print-manager system-config-printer cups-filters nss-mdns foomatic-db-engine foomatic-db-ppds foomatic-db-nonfree-ppds ghostscript glibc samba extra-rel/apparmor core-rel/libcurl-gnutls winetricks appmenu-gtk-module lib32-libjpeg-turbo qt5-virtualkeyboard wine-staging giflib lib32-giflib libpng lib32-libpng libldap lib32-libldap gnutls lib32-gnutls mpg123 lib32-mpg123 openal lib32-openal v4l-utils lib32-v4l-utils libpulse lib32-libpulse libgpg-error lib32-libgpg-error alsa-plugins lib32-alsa-plugins alsa-lib lib32-alsa-lib libjpeg-turbo lib32-libjpeg-turbo sqlite lib32-sqlite libxcomposite lib32-libxcomposite libxinerama lib32-libgcrypt libgcrypt lib32-libxinerama ncurses lib32-ncurses ocl-icd lib32-ocl-icd libxslt lib32-libxslt libva lib32-libva gtk3 lib32-gtk3 gst-plugins-base-libs lib32-gst-plugins-base-libs vulkan-icd-loader lib32-vulkan-icd-loader" # noqa: #E501
else: # arch
# config.PACKAGES = "patch wget sed grep cabextract samba glibc samba apparmor libcurl-gnutls winetricks appmenu-gtk-module lib32-libjpeg-turbo wine giflib lib32-giflib libpng lib32-libpng libldap lib32-libldap gnutls lib32-gnutls mpg123 lib32-mpg123 openal lib32-openal v4l-utils lib32-v4l-utils libpulse lib32-libpulse libgpg-error lib32-libgpg-error alsa-plugins lib32-alsa-plugins alsa-lib lib32-alsa-lib libjpeg-turbo lib32-libjpeg-turbo sqlite lib32-sqlite libxcomposite lib32-libxcomposite libxinerama lib32-libgcrypt libgcrypt lib32-libxinerama ncurses lib32-ncurses ocl-icd lib32-ocl-icd libxslt lib32-libxslt libva lib32-libva gtk3 lib32-gtk3 gst-plugins-base-libs lib32-gst-plugins-base-libs vulkan-icd-loader lib32-vulkan-icd-loader" # noqa: E501
config.PACKAGES = (
"fuse2 fuse3 " # appimages
"binutils cabextract wget libwbclient " # wine
"p7zip " # winetricks
"openjpeg2 libxcomposite libxinerama " # display
"ocl-icd vulkan-icd-loader " # hardware
"alsa-plugins gst-plugins-base-libs libpulse openal " # audio
"libva mpg123 v4l-utils " # video
"libxslt sqlite " # misc
)
config.L9PACKAGES = "" # FIXME: Missing Logos 9 Packages
config.BADPACKAGES = "" # appimagelauncher handled separately
# Add more conditions for other package managers as needed
# Add logging output.
logging.debug(f"{config.PACKAGE_MANAGER_COMMAND_INSTALL=}")
logging.debug(f"{config.PACKAGE_MANAGER_COMMAND_QUERY=}")
logging.debug(f"{config.PACKAGES=}")
logging.debug(f"{config.L9PACKAGES=}")
def get_runmode():
if getattr(sys, 'frozen', False) and hasattr(sys, '_MEIPASS'):
return 'binary'
else:
return 'script'
def query_packages(packages, mode="install", app=None):
result = ""
missing_packages = []
conflicting_packages = []
command = config.PACKAGE_MANAGER_COMMAND_QUERY
try:
result = run_command(command)
except Exception as e:
logging.error(f"Error occurred while executing command: {e}")
logging.error(e.output)
package_list = result.stdout
logging.debug(f"packages to check: {packages}")
status = {package: "Unchecked" for package in packages}
if app is not None:
for p in packages:
logging.debug(f"Checking for: {p}")
l_num = 0
for line in package_list.split('\n'):
# logging.debug(f"{line=}")
l_num += 1
if config.PACKAGE_MANAGER_COMMAND_QUERY[0] == 'dpkg':
parts = line.strip().split()
if l_num < 6 or len(parts) < 2: # skip header, etc.
continue
state = parts[0]
pkg = parts[1].split(':')[0] # remove :arch if present
if pkg == p and state[1] == 'i':
if mode == 'install':
status[p] = "Installed"
elif mode == 'remove':
conflicting_packages.append(p)
status[p] = 'Conflicting'
break
else:
if line.strip().startswith(f"{config.QUERY_PREFIX}{p}") and mode == "install": # noqa: E501
logging.debug(f"'{p}' installed: {line}")
status[p] = "Installed"
break
elif line.strip().startswith(p) and mode == "remove":
conflicting_packages.append(p)
status[p] = "Conflicting"
break
if status[p] == "Unchecked":
if mode == "install":
missing_packages.append(p)
status[p] = "Missing"
elif mode == "remove":
status[p] = "Not Installed"
logging.debug(f"{p} status: {status.get(p)}")
logging.debug(f"Packages status: {status}")
if mode == "install":
if missing_packages:
txt = f"Missing packages: {' '.join(missing_packages)}"
logging.info(f"{txt}")
return missing_packages
elif mode == "remove":
if conflicting_packages:
txt = f"Conflicting packages: {' '.join(conflicting_packages)}"
logging.info(f"Conflicting packages: {txt}")
return conflicting_packages
def have_dep(cmd):
if shutil.which(cmd) is not None:
return True
else:
return False
def check_dialog_version():
if have_dep("dialog"):
try:
result = run_command(["dialog", "--version"])
version_info = result.stdout.strip()
if version_info.startswith("Version: "):
version_info = version_info[len("Version: "):]
return version_info
except subprocess.CalledProcessError as e:
print(f"Error running command: {e.stderr}")
except FileNotFoundError:
print("The 'dialog' command is not found. Please ensure it is installed and in your PATH.") # noqa: E501
return None
def test_dialog_version():
version = check_dialog_version()
def parse_date(version):
try:
return version.split('-')[1]
except IndexError:
return ''
minimum_version = "1.3-20201126-1"
logging.debug(f"Current dialog version: {version}")
if version is not None:
minimum_version = parse_date(minimum_version)
current_version = parse_date(version)
logging.debug(f"Minimum dialog version: {minimum_version}. Installed version: {current_version}.") # noqa: E501
return current_version > minimum_version
else:
return None
def remove_appimagelauncher(app=None):
pkg = "appimagelauncher"
cmd = [config.SUPERUSER_COMMAND, *config.PACKAGE_MANAGER_COMMAND_REMOVE, pkg] # noqa: E501
msg.status("Removing AppImageLauncher…", app)
try:
logging.debug(f"Running command: {cmd}")
run_command(cmd)
except subprocess.CalledProcessError as e:
if e.returncode == 127:
logging.error("User cancelled appimagelauncher removal.")
else:
logging.error(f"An error occurred: {e}")
logging.error(f"Command output: {e.output}")
msg.logos_error("Failed to uninstall AppImageLauncher.")
sys.exit(1)
logging.info("System reboot is required.")
sys.exit()
def preinstall_dependencies_steamos():
logging.debug("Disabling read only, updating pacman keys…")
command = [
config.SUPERUSER_COMMAND, "steamos-readonly", "disable", "&&",
config.SUPERUSER_COMMAND, "pacman-key", "--init", "&&",
config.SUPERUSER_COMMAND, "pacman-key", "--populate", "archlinux",
]
return command
def postinstall_dependencies_steamos():
logging.debug("Updating DNS settings & locales, enabling services & read-only system…") # noqa: E501
command = [
config.SUPERUSER_COMMAND, "sed", '-i',
's/mymachines resolve/mymachines mdns_minimal [NOTFOUND=return] resolve/', # noqa: E501
'/etc/nsswitch.conf', '&&',
config.SUPERUSER_COMMAND, "locale-gen", '&&',
config.SUPERUSER_COMMAND, "systemctl", "enable", "--now", "avahi-daemon", "&&", # noqa: E501
config.SUPERUSER_COMMAND, "systemctl", "enable", "--now", "cups", "&&", # noqa: E501
config.SUPERUSER_COMMAND, "steamos-readonly", "enable",
]
return command
def preinstall_dependencies(app=None):
command = []
logging.debug("Performing pre-install dependencies…")
if config.OS_NAME == "Steam":
command = preinstall_dependencies_steamos()
else:
logging.debug("No pre-install dependencies required.")
return command
def postinstall_dependencies(app=None):
command = []
logging.debug("Performing post-install dependencies…")
if config.OS_NAME == "Steam":
command = postinstall_dependencies_steamos()
else:
logging.debug("No post-install dependencies required.")
return command
def install_dependencies(packages, bad_packages, logos9_packages=None, app=None): # noqa: E501
if config.SKIP_DEPENDENCIES:
return
install_deps_failed = False
manual_install_required = False
message = None
no_message = None
secondary = None
command = []
preinstall_command = []
install_command = []
remove_command = []
postinstall_command = []
missing_packages = {}
conflicting_packages = {}
package_list = []
bad_package_list = []
if packages:
package_list = packages.split()
if bad_packages:
bad_package_list = bad_packages.split()
if logos9_packages:
package_list.extend(logos9_packages.split())
if config.PACKAGE_MANAGER_COMMAND_QUERY:
logging.debug("Querying packages…")
missing_packages = query_packages(
package_list,
app=app
)
conflicting_packages = query_packages(
bad_package_list,
mode="remove",
app=app
)
if config.PACKAGE_MANAGER_COMMAND_INSTALL:
if config.OS_NAME in ['fedora', 'arch']:
message = False
no_message = False
secondary = False
elif missing_packages and conflicting_packages:
message = f"Your {config.OS_NAME} computer requires installing and removing some software.\nProceed?" # noqa: E501
no_message = "User refused to install and remove software via the application" # noqa: E501
secondary = f"To continue, the program will attempt to install the following package(s) by using '{config.PACKAGE_MANAGER_COMMAND_INSTALL}':\n{missing_packages}\nand will remove the following package(s) by using '{config.PACKAGE_MANAGER_COMMAND_REMOVE}':\n{conflicting_packages}" # noqa: E501
elif missing_packages:
message = f"Your {config.OS_NAME} computer requires installing some software.\nProceed?" # noqa: E501
no_message = "User refused to install software via the application." # noqa: E501
secondary = f"To continue, the program will attempt to install the following package(s) by using '{config.PACKAGE_MANAGER_COMMAND_INSTALL}':\n{missing_packages}" # noqa: E501
elif conflicting_packages:
message = f"Your {config.OS_NAME} computer requires removing some software.\nProceed?" # noqa: E501
no_message = "User refused to remove software via the application." # noqa: E501
secondary = f"To continue, the program will attempt to remove the following package(s) by using '{config.PACKAGE_MANAGER_COMMAND_REMOVE}':\n{conflicting_packages}" # noqa: E501
else:
message = None
if message is None:
logging.debug("No missing or conflicting dependencies found.")
elif not message:
m = "Your distro requires manual dependency installation."
logging.error(m)
else:
msg.logos_continue_question(message, no_message, secondary, app)
if app:
if config.DIALOG == "curses":
app.confirm_e.wait()
# TODO: Need to send continue question to user based on DIALOG.
# All we do above is create a message that we never send.
# Do we need a TK continue question? I see we have a CLI and curses one
# in msg.py
preinstall_command = preinstall_dependencies()
# libfuse: for AppImage use. This is the only known needed library.
if config.OS_NAME == "fedora":
fuse = "fuse"
else:
fuse = "libfuse"
fuse_lib_installed = check_libs([f"{fuse}"], app=app)
logging.debug(f"{fuse_lib_installed=}")
# if not fuse_lib_installed:
# missing_packages.append(fuse)
if missing_packages:
install_command = config.PACKAGE_MANAGER_COMMAND_INSTALL + missing_packages # noqa: E501
else:
logging.debug("No missing packages detected.")
if conflicting_packages:
# TODO: Verify with user before executing
# AppImage Launcher is the only known conflicting package.
remove_command = config.PACKAGE_MANAGER_COMMAND_REMOVE + conflicting_packages # noqa: E501
config.REBOOT_REQUIRED = True
logging.info("System reboot required.")
else:
logging.debug("No conflicting packages detected.")
postinstall_command = postinstall_dependencies(app)
if preinstall_command:
command.extend(preinstall_command)
if install_command:
if command:
command.append('&&')
command.extend(install_command)
if remove_command:
if command:
command.append('&&')
command.extend(remove_command)
if postinstall_command:
if command:
command.append('&&')
command.extend(postinstall_command)
if not command: # nothing to run; avoid running empty pkexec command
if app:
msg.status("All dependencies are met.", app)
if config.DIALOG == "curses":
app.installdeps_e.set()
return
if app and config.DIALOG == 'tk':
app.root.event_generate('<<StartIndeterminateProgress>>')
msg.status("Installing dependencies…", app)
final_command = [
f"{config.SUPERUSER_COMMAND}", 'sh', '-c', "'", *command, "'"
]
command_str = ' '.join(final_command)
# TODO: Fix fedora/arch handling.
if config.OS_NAME in ['fedora', 'arch']:
manual_install_required = True
sudo_command = command_str.replace("pkexec", "sudo")
message = "The system needs to install/remove packages, but it requires manual intervention." # noqa: E501
detail = (
"Please run the following command in a terminal, then restart "
f"LogosLinuxInstaller:\n{sudo_command}\n"
)
if app:
if config.DIALOG == "tk":
if hasattr(app, 'root'):
detail += "\nThe command has been copied to the clipboard." # noqa: E501
app.root.clipboard_clear()
app.root.clipboard_append(sudo_command)
app.root.update()
msg.logos_error(
message,
detail=detail,
app=app,
parent='installer_win'
)
install_deps_failed = True
else:
msg.logos_error(message + "\n" + detail)
install_deps_failed = True
if manual_install_required and app and config.DIALOG == "curses":
app.screen_q.put(
app.stack_confirm(
17,
app.todo_q,
app.todo_e,
f"Please run the following command in a terminal, then select \"Continue\" when finished.\n\nLogosLinuxInstaller:\n{sudo_command}\n", # noqa: E501
"User cancelled dependency installation.", # noqa: E501
message,
options=["Continue", "Return to Main Menu"], dialog=config.use_python_dialog)) # noqa: E501
app.manualinstall_e.wait()
if not install_deps_failed and not manual_install_required:
try:
logging.debug(f"Attempting to run this command: {command_str}")
run_command(command_str, shell=True)
except subprocess.CalledProcessError as e:
if e.returncode == 127:
logging.error("User cancelled dependency installation.")
else:
logging.error(f"An error occurred in install_dependencies(): {e}") # noqa: E501
logging.error(f"Command output: {e.output}")
install_deps_failed = True
else:
msg.logos_error(
f"The script could not determine your {config.OS_NAME} install's package manager or it is unsupported. " # noqa: E501
f"Your computer is missing the command(s) {missing_packages}. "
f"Please install your distro's package(s) associated with {missing_packages} for {config.OS_NAME}.") # noqa: E501
if config.REBOOT_REQUIRED:
question = "Should the program reboot the host now?" # noqa: E501
no_text = "The user has chosen not to reboot."
secondary = "The system has installed or removed a package that requires a reboot." # noqa: E501
if msg.logos_continue_question(question, no_text, secondary):
reboot()
else:
logging.error("Cannot proceed until reboot. Exiting.")
sys.exit(1)
if install_deps_failed:
if app:
if config.DIALOG == "curses":
app.choice_q.put("Return to Main Menu")
else:
if app:
if config.DIALOG == "curses":
app.installdeps_e.set()
def have_lib(library, ld_library_path):
available_library_paths = ['/usr/lib', '/lib']
if ld_library_path is not None:
available_library_paths = [*ld_library_path.split(':'), *available_library_paths]
roots = [root for root in available_library_paths if not Path(root).is_symlink()]
logging.debug(f"Library Paths: {roots}")
for root in roots:
libs = []
logging.debug(f"Have lib? Checking {root}")
for lib in Path(root).rglob(f"{library}*"):
logging.debug(f"DEV: {lib}")
libs.append(lib)
break
if len(libs) > 0:
logging.debug(f"'{library}' found at '{libs[0]}'")
return True
return False
def check_libs(libraries, app=None):
ld_library_path = os.environ.get('LD_LIBRARY_PATH', '')
for library in libraries:
have_lib_result = have_lib(library, ld_library_path)
if have_lib_result:
logging.info(f"* {library} is installed!")
return True
else:
logging.info(f"* {library} is not installed!")
return False
def install_winetricks(
installdir,
app=None,
version=config.WINETRICKS_VERSION,
):
msg.status(f"Installing winetricks v{version}…")
base_url = "https://codeload.github.com/Winetricks/winetricks/zip/refs/tags" # noqa: E501
zip_name = f"{version}.zip"
network.logos_reuse_download(
f"{base_url}/{version}",
zip_name,
config.MYDOWNLOADS,
app=app,
)
wtzip = f"{config.MYDOWNLOADS}/{zip_name}"
logging.debug(f"Extracting winetricks script into {installdir}…")
with zipfile.ZipFile(wtzip) as z:
for zi in z.infolist():
if zi.is_dir():
continue
zi.filename = Path(zi.filename).name
if zi.filename == 'winetricks':
z.extract(zi, path=installdir)
break
os.chmod(f"{installdir}/winetricks", 0o755)
config.WINETRICKSBIN = f"{installdir}/winetricks"
logging.debug("Winetricks installed.")