-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsession_command.py
More file actions
734 lines (628 loc) · 26.3 KB
/
session_command.py
File metadata and controls
734 lines (628 loc) · 26.3 KB
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
"""
session_command.py - Costruisce i comandi shell per ogni tipo di sessione PCM.
Supporta: SSH, Telnet, SFTP, RDP, VNC, SSH Tunnel, Mosh, Seriale.
"""
import os
import shutil
import subprocess
from typing import Optional, Tuple
import config_manager
# ---------------------------------------------------------------------------
# Helper per il recupero dei percorsi personalizzati
# ---------------------------------------------------------------------------
def _get_tool(cmd_id: str) -> str:
"""
Recupera il comando da eseguire:
1. Controlla se l'utente ha impostato un percorso custom (tool_paths).
2. Altrimenti usa shutil.which per trovare il path assoluto.
3. Fallback sul nome del comando stesso.
"""
settings = config_manager.load_settings()
custom_paths = settings.get("tool_paths", {})
# Mappa gli alias: se PCM cerca "tigervnc", controlla se l'utente ha configurato "xtigervncviewer"
alias_map = {
"tigervnc": "xtigervncviewer",
"vncviewer": "xtigervncviewer"
}
lookup_id = alias_map.get(cmd_id, cmd_id)
if lookup_id in custom_paths and custom_paths[lookup_id].strip():
return custom_paths[lookup_id].strip()
if cmd_id in custom_paths and custom_paths[cmd_id].strip():
return custom_paths[cmd_id].strip()
return shutil.which(cmd_id) or cmd_id
def _tool_exists(cmd_id: str) -> bool:
"""Controlla se lo strumento esiste (sia esso custom o di sistema)."""
tool = _get_tool(cmd_id)
if os.path.isabs(tool) and os.path.exists(tool):
return True
return shutil.which(tool) is not None
# ---------------------------------------------------------------------------
# Builders pubblici
# ---------------------------------------------------------------------------
def build_command(profilo: dict) -> Tuple[Optional[str], str]:
"""
Restituisce (comando, modalità) dove modalità è:
'embedded' -> aprire in TerminalWidget interno
'external' -> lanciare in background (RDP, VNC standalone, ecc.)
'sftp_gui' -> aprire con file manager grafico (thunar, nautilus…)
'sftp_panel' -> aprire SFTP browser interno via paramiko
'tunnel' -> gestire come tunnel SSH
'serial' -> connessione seriale
None -> errore (comando None)
Se il profilo contiene 'pre_cmd' (comando locale), il comando finale viene
wrappato in: bash -c 'pre_cmd && cmd_connessione'
così il terminale mostra anche l'output del pre-comando.
"""
proto = profilo.get("protocol", "ssh").lower()
if proto == "ssh":
mode = profilo.get("ssh_open_mode", "Terminale interno")
if mode.startswith("Terminale esterno"):
return _wrap_pre(_build_ssh(profilo), profilo), "ssh_term_ext"
return _wrap_pre(_build_ssh(profilo), profilo), "embedded"
elif proto == "mosh":
mode = profilo.get("ssh_open_mode", "Terminale interno")
if mode.startswith("Terminale esterno"):
return _wrap_pre(_build_mosh(profilo), profilo), "ssh_term_ext"
return _wrap_pre(_build_mosh(profilo), profilo), "embedded"
elif proto == "telnet":
return _wrap_pre(_build_telnet(profilo), profilo), "embedded"
elif proto == "sftp":
mode = profilo.get("sftp_open_mode", "Browser interno")
if mode.startswith("Browser esterno"):
return _build_sftp_uri(profilo, "browser_ext"), "sftp_external"
elif mode.startswith("Terminale interno"):
return _wrap_pre(_build_sftp_cli(profilo), profilo), "embedded"
elif mode.startswith("Terminale esterno"):
return _wrap_pre(_build_sftp_cli(profilo), profilo), "sftp_term_ext"
else: # Browser interno (default)
return _build_sftp(profilo), "sftp_panel"
elif proto == "ftp":
mode = profilo.get("ftp_open_mode", "Browser interno")
if mode.startswith("Browser esterno"):
return _build_ftp(profilo, modalita="browser_ext"), "ftp_external"
elif mode.startswith("Terminale interno"):
return _wrap_pre(_build_ftp(profilo, modalita="term_int"), profilo), "embedded"
elif mode.startswith("Terminale esterno"):
return _wrap_pre(_build_ftp(profilo, modalita="term_ext"), profilo), "ftp_term_ext"
else: # Browser interno (default)
return _build_ftp(profilo, modalita="browser_int"), "ftp_panel"
elif proto == "rdp":
mode = profilo.get("rdp_open_mode", "external")
# Supporta sia il valore canonico che i vecchi testi tradotti
if mode == "internal" or "intern" in mode.lower() or "panel" in mode.lower():
# cmd=None: RdpEmbedWidget costruisce il comando internamente
return None, "rdp_embedded"
return _build_rdp(profilo), "external"
elif proto == "vnc":
return _build_vnc(profilo), "external"
elif proto == "serial":
return _wrap_pre(_build_serial(profilo), profilo), "serial"
else:
return None, "embedded"
# ---------------------------------------------------------------------------
# Helper: wrap comando con pre_cmd locale
# ---------------------------------------------------------------------------
def _wrap_pre(cmd: Optional[str], profilo: dict) -> Optional[str]:
"""
Se il profilo ha 'pre_cmd', avvolge il comando in:
bash -c 'echo ">>> pre_cmd..."; pre_cmd && cmd_connessione'
In questo modo il terminale mostra l'output del pre-comando prima
di avviare la connessione. Se pre_cmd esce con codice != 0, la
connessione non parte e viene mostrato un messaggio di errore.
"""
if not cmd:
return cmd
pre = profilo.get("pre_cmd", "").strip()
if not pre:
return cmd
pre_esc = pre.replace("'", r"'\''")
cmd_esc = cmd.replace("'", r"'\''")
return (
"bash -c '"
"echo \">>> Eseguo pre-connessione: " + pre_esc + "\"; "
+ pre_esc + " && "
"echo \">>> Pre-connessione completata. Connetto...\"; "
+ cmd_esc +
" || (echo \">>> Pre-connessione fallita. Connessione annullata.\"; sleep 5)'"
)
# ---------------------------------------------------------------------------
# SSH
# ---------------------------------------------------------------------------
def _build_ssh(p: dict) -> str:
host = p.get("host", "")
user = p.get("user", "")
port = p.get("port", "22")
pwd = p.get("password", "")
pkey = p.get("private_key", "")
x11 = p.get("x11", False)
comp = p.get("compression", False)
ka = p.get("keepalive", False)
scmd = p.get("startup_cmd", "")
jump = p.get("jump_host", "")
juser = p.get("jump_user", "")
jport = p.get("jump_port", "22")
args = [f"-p {port}", "-o StrictHostKeyChecking=accept-new",
"-o ServerAliveInterval=15", "-o ServerAliveCountMax=3"]
if pkey and os.path.exists(pkey):
args.append(f"-i '{pkey}'")
if x11:
args.append("-X")
if comp:
args.append("-C")
if ka:
args.append("-o ServerAliveInterval=60")
if jump:
ju = f"{juser}@" if juser else ""
args.append(f"-J {ju}{jump}:{jport}")
# Compatibilità SSH legacy (server datati, router, NAS, Cisco, ecc.)
if p.get("legacy_kex"):
args.append("-o KexAlgorithms=+diffie-hellman-group1-sha1,diffie-hellman-group14-sha1")
if p.get("legacy_cipher"):
args.append("-o Ciphers=+aes128-cbc,aes256-cbc,3des-cbc")
if p.get("legacy_hostkey"):
args.append("-o HostKeyAlgorithms=+ssh-rsa,ssh-dss")
if p.get("legacy_mac"):
args.append("-o MACs=+hmac-sha1,hmac-md5")
if p.get("legacy_pubkey"):
args.append("-o PubkeyAcceptedAlgorithms=+ssh-rsa")
args_str = " ".join(args)
target = f"{user}@{host}" if user else host
# comando base
if pwd and not pkey:
if shutil.which("sshpass"):
base = f"SSHPASS='{_esc(pwd)}' sshpass -e ssh {args_str} {target}"
else:
# fallback: ssh chiederà la password interattivamente
base = f"ssh {args_str} {target}"
else:
base = f"ssh {args_str} {target}"
# comando di avvio remoto
if scmd:
base += f" -t '{_esc(scmd)}; exec $SHELL -l'"
return base
# ---------------------------------------------------------------------------
# Telnet
# ---------------------------------------------------------------------------
def _build_telnet(p: dict) -> str:
host = p.get("host", "")
port = p.get("port", "23")
user = p.get("user", "")
if not shutil.which("telnet"):
return f"bash -c 'echo \"telnet non trovato. Installa telnet.\"; sleep 5'"
cmd = f"telnet {host} {port}"
# alcuni server accettano -l per il login automatico
if user:
cmd = f"telnet -l {user} {host} {port}"
return cmd
# ---------------------------------------------------------------------------
# SFTP (panel interno – paramiko)
# ---------------------------------------------------------------------------
def _build_sftp(p: dict) -> str:
"""Per SFTP il pannello laterale usa paramiko; qui restituiamo un cmd di info."""
host = p.get("host", "")
port = p.get("port", "22")
user = p.get("user", "")
return f"sftp://{user}@{host}:{port}"
# ---------------------------------------------------------------------------
# FTP / FTPS (browser interno via ftplib — comando usato solo come fallback CLI)
# ---------------------------------------------------------------------------
def _build_ftp(p: dict, modalita: str = "browser_int") -> str:
"""
Costruisce il comando/URI FTP in base alla modalità scelta:
browser_int → URI ftp:// (usato da PCM per FtpWinScpWidget)
browser_ext → comando file manager (nautilus/thunar/dolphin) con URI ftp://
term_int → comando lftp/ftp per terminale interno (embedded xterm)
term_ext → comando terminale esterno con lftp/ftp
"""
host = p.get("host", "")
port = p.get("port", "21")
user = p.get("user", "")
pwd = p.get("password", "")
tls = p.get("ftp_tls", False)
schema = "ftps" if tls else "ftp"
if user:
uri = f"{schema}://{user}@{host}:{port}"
else:
uri = f"{schema}://{host}:{port}"
if modalita == "browser_ext":
for fm in ("nautilus", "thunar", "dolphin", "nemo", "pcmanfm", "xdg-open"):
if shutil.which(fm):
return f"{fm} '{uri}'"
return f"xdg-open '{uri}'"
if modalita in ("term_int", "term_ext"):
# lftp con -e "open URI" si connette e autentica in automatico,
# poi cede il controllo alla shell interattiva di lftp.
if shutil.which("lftp"):
schema = "ftps" if tls else "ftp"
if user and pwd:
uri_cred = f"{schema}://{_esc(user)}:{_esc(pwd)}@{host}:{port}"
elif user:
uri_cred = f"{schema}://{_esc(user)}@{host}:{port}"
else:
uri_cred = f"{schema}://{host}:{port}"
return f"lftp -e 'open {uri_cred}' {host}"
elif shutil.which("ftp"):
if user and pwd:
# ftp non supporta password inline — avvisa e lascia prompt
return f"bash -c 'printf \"open {host} {port}\\nuser {_esc(user)} {_esc(pwd)}\\nbinary\\n\" | ftp -n'"
return f"ftp {host} {port}"
else:
return "bash -c 'echo \"lftp non trovato. Installa: sudo pacman -S lftp\"; sleep 5'"
# browser_int (default): restituisce l'URI — PCM aprirà FtpWinScpWidget
return uri
# ---------------------------------------------------------------------------
# SFTP esteso (browser esterno e CLI)
# ---------------------------------------------------------------------------
def _build_sftp_uri(p: dict, modalita: str = "browser_ext") -> str:
"""URI sftp:// per il file manager di sistema."""
host = p.get("host", "")
port = p.get("port", "22")
user = p.get("user", "")
if user:
uri = f"sftp://{user}@{host}:{port}"
else:
uri = f"sftp://{host}:{port}"
if modalita == "browser_ext":
for fm in ("nautilus", "thunar", "dolphin", "nemo", "pcmanfm", "xdg-open"):
if shutil.which(fm):
return f"{fm} '{uri}'"
return f"xdg-open '{uri}'"
return uri
def _build_sftp_cli(p: dict) -> str:
"""
Comando sftp CLI per terminale interno/esterno.
Priorità autenticazione:
1. Chiave privata → sftp -i chiave user@host
2. sshpass → SSHPASS=pwd sshpass -e sftp user@host
3. lftp (fallback) → lftp -e 'open sftp://user:pwd@host:port' host
4. sftp plain → chiede password interattivamente
"""
host = p.get("host", "")
port = p.get("port", "22")
user = p.get("user", "")
pkey = p.get("private_key", "").strip()
pwd = p.get("password", "")
args = [f"-P {port}", "-o StrictHostKeyChecking=accept-new"]
if pkey and os.path.exists(pkey):
args.append(f"-i '{pkey}'")
args_str = " ".join(args)
target = f"{user}@{host}" if user else host
if pkey and os.path.exists(pkey):
# Chiave privata: sftp la usa direttamente, nessuna password necessaria
return f"sftp {args_str} {target}"
if pwd:
if shutil.which("sshpass"):
return f"SSHPASS='{_esc(pwd)}' sshpass -e sftp {args_str} {target}"
elif shutil.which("lftp"):
# lftp supporta sftp con credenziali inline
uri_cred = f"sftp://{_esc(user)}:{_esc(pwd)}@{host}:{port}" if user else f"sftp://{host}:{port}"
return f"lftp -e 'open {uri_cred}' {host}"
# Fallback: sftp chiede la password interattivamente
return f"sftp {args_str} {target}"
# ---------------------------------------------------------------------------
# RDP
# ---------------------------------------------------------------------------
def _build_rdp(p: dict) -> str:
host = p.get("host", "")
port = p.get("port", "3389")
user = p.get("user", "")
pwd = p.get("password", "")
domain = p.get("rdp_domain", "").strip()
client = p.get("rdp_client", "xfreerdp3") # xfreerdp3 è il default attuale
fs = p.get("fullscreen", False)
clips = p.get("redirect_clipboard", True)
drives = p.get("redirect_drives", False)
if client in ("xfreerdp", "xfreerdp3"):
args = [f"/v:{host}:{port}"]
if user:
args.append(f"/u:{user}")
if domain:
args.append(f"/d:{domain}")
if pwd:
args.append(f"/p:'{_esc(pwd)}'")
args.append("/cert:ignore")
if fs:
args.append("/f")
if clips:
args.append("/clipboard")
if drives:
args.append("/drive:home,/home")
return f"{client} {' '.join(args)}"
elif client == "rdesktop":
args = ["-a 16"]
if user:
args.append(f"-u {user}")
if domain:
args.append(f"-d {domain}")
if pwd:
args.append(f"-p '{_esc(pwd)}'")
if fs:
args.append("-f")
return f"rdesktop {' '.join(args)} {host}:{port}"
# --- Tool personalizzato RDP ---
custom = _get_custom_tool("rdp", client)
if custom:
exe = custom["path"]
syntax = custom["syntax"]
if syntax == "xfreerdp":
args = [f"/v:{host}:{port}"]
if user:
args.append(f"/u:{user}")
if domain:
args.append(f"/d:{domain}")
if pwd:
args.append(f"/p:'{_esc(pwd)}'")
args.append("/cert:ignore")
if fs:
args.append("/f")
if clips:
args.append("/clipboard")
if drives:
args.append("/drive:home,/home")
return f'"{exe}" {" ".join(args)}'
elif syntax == "rdesktop":
args = ["-a 16"]
if user:
args.append(f"-u {user}")
if domain:
args.append(f"-d {domain}")
if pwd:
args.append(f"-p '{_esc(pwd)}'")
if fs:
args.append("-f")
return f'"{exe}" {" ".join(args)} {host}:{port}'
else: # Generico
return f'"{exe}" {host}:{port}'
else:
return f"{client} {host}:{port}"
# ---------------------------------------------------------------------------
# VNC
# ---------------------------------------------------------------------------
# Path noti di RealVNC Viewer su Linux
_REALVNC_PATHS = [
"/usr/bin/realvnc-viewer",
"/usr/bin/vncviewer-real", # alcuni pacchetti AUR
"/opt/realvnc/VNC-Viewer/vncviewer",
"/opt/VNC/bin/vncviewer",
"/snap/bin/realvnc-viewer",
]
def _get_custom_tool(category: str, label: str) -> dict | None:
"""Restituisce il dizionario {label, path, syntax} del tool personalizzato, o None."""
ct = config_manager.load_custom_tools()
for entry in ct.get(category, []):
if entry.get("label") == label:
return entry
return None
def _build_vnc(p: dict) -> str:
host = p.get("host", "")
port = p.get("port", "5900")
pwd = p.get("password", "")
client = p.get("vnc_client", "vncviewer") # valore esatto dal combo
# --- Tool personalizzato ---
custom = _get_custom_tool("vnc", client)
if custom:
exe = custom["path"]
syntax = custom["syntax"]
if syntax == "TigerVNC":
if pwd:
return (
f"bash -c '"
f"TMP=$(mktemp); "
f"printf \"%s\" \"{_esc(pwd)}\" | vncpasswd -f > \"$TMP\"; "
f"\"{exe}\" -passwd \"$TMP\" {host}::{port}; "
f"rm -f \"$TMP\"'"
)
return f'"{exe}" {host}::{port}'
elif syntax == "RealVNC":
return f'"{exe}" {host}::{port}'
elif syntax == "Remmina":
return f'"{exe}" -c vnc://{host}:{port}'
else: # Generico
return f'"{exe}" {host}:{port}'
# --- RealVNC Viewer ---
if client == "realvnc-viewer":
exe = _trova_realvnc()
cmd = f'"{exe}" {host}::{port}'
return cmd
# --- TigerVNC ---
elif client == "tigervnc":
exe = shutil.which("vncviewer") or "vncviewer"
if pwd:
return (
f"bash -c '"
f"TMP=$(mktemp); "
f"printf \"%s\" \"{_esc(pwd)}\" | vncpasswd -f > \"$TMP\"; "
f"{exe} -passwd \"$TMP\" {host}::{port}; "
f"rm -f \"$TMP\"'"
)
return f"{exe} {host}::{port}"
# --- Remmina ---
elif client == "remmina":
exe = shutil.which("remmina") or "remmina"
return f"{exe} -c vnc://{host}:{port}"
# --- KRDC ---
elif client == "krdc":
exe = shutil.which("krdc") or "krdc"
return f"{exe} vnc://{host}:{port}"
# --- vncviewer generico (default) ---
else:
exe = shutil.which(client) or client
return f"{exe} {host}::{port}"
def _trova_realvnc() -> str:
"""
Cerca il binario di RealVNC Viewer nell'ordine:
1. Il nome 'realvnc-viewer' nel PATH (symlink da pacchetti AUR/deb)
2. Path noti di installazione
3. Fallback: 'realvnc-viewer' così com'è (darà errore chiaro se mancante)
"""
# Prima prova: nome esatto nel PATH
found = shutil.which("realvnc-viewer")
if found:
return found
# Seconda prova: path fissi
for p in _REALVNC_PATHS:
if os.path.isfile(p) and os.access(p, os.X_OK):
return p
# Ultima spiaggia: restituisce il nome e lascia che la shell dia errore leggibile
return "realvnc-viewer"
# ---------------------------------------------------------------------------
# Mosh
# ---------------------------------------------------------------------------
def _build_mosh(p: dict) -> str:
host = p.get("host", "")
port = p.get("port", "22")
user = p.get("user", "")
pkey = p.get("private_key", "")
if not shutil.which("mosh"):
return f"bash -c 'echo \"mosh non trovato. Installa mosh.\"; sleep 5'"
if pkey and os.path.exists(pkey):
args = [f"--ssh='ssh -p {port} -i {pkey}'"]
else:
args = [f"--ssh='ssh -p {port}'"]
target = f"{user}@{host}" if user else host
return f"mosh {' '.join(args)} {target}"
# ---------------------------------------------------------------------------
# Seriale (minicom / picocom / screen)
# ---------------------------------------------------------------------------
def _build_serial(p: dict) -> str:
device = p.get("device", "/dev/ttyUSB0")
baud = p.get("baud", "115200")
if shutil.which("picocom"):
return f"picocom -b {baud} {device}"
elif shutil.which("minicom"):
return f"minicom -b {baud} -D {device}"
elif shutil.which("screen"):
return f"screen {device} {baud}"
else:
return f"bash -c 'echo \"Nessun client seriale trovato (picocom/minicom/screen).\"; sleep 5'"
# ---------------------------------------------------------------------------
# Utility
# ---------------------------------------------------------------------------
def _esc(s: str) -> str:
"""Escape semplice per singoli apici in shell."""
return s.replace("'", "'\\''")
def check_dipendenze() -> dict:
"""
Controlla la disponibilita degli strumenti necessari.
Restituisce {nome: True/False} per tutti gli strumenti.
"""
# Strumenti obbligatori / fortemente consigliati
tools = {
"ssh": shutil.which("ssh") is not None,
"sshpass": shutil.which("sshpass") is not None,
"xdotool": shutil.which("xdotool") is not None,
"xwininfo": shutil.which("xwininfo") is not None,
"mosh": shutil.which("mosh") is not None,
"telnet": shutil.which("telnet") is not None,
"picocom": shutil.which("picocom") is not None,
}
# Terminali grafici: almeno uno necessario per sessioni embedded
_terminali = ["xterm", "xfce4-terminal", "gnome-terminal", "konsole",
"alacritty", "kitty", "terminator", "wezterm",
"foot", "tilix", "lxterminal", "mate-terminal", "st"]
for t in _terminali:
tools[t] = shutil.which(t) is not None
# Client RDP
for c in ["xfreerdp3", "xfreerdp", "rdesktop"]:
tools[c] = shutil.which(c) is not None
# Client VNC
for c in ["vncviewer", "realvnc-viewer", "tigervnc", "remmina", "krdc"]:
tools[c] = shutil.which(c) is not None
try:
import paramiko
tools["paramiko"] = True
except ImportError:
tools["paramiko"] = False
try:
import cryptography
tools["cryptography"] = True
except ImportError:
tools["cryptography"] = False
return tools
def check_dipendenze_categorizzate() -> dict:
"""
Controlla le dipendenze categorizzandole per importanza.
Restituisce un dizionario con le categorie:
- 'core': dipendenze essenziali per il funzionamento base
- 'recommended': dipendenze fortemente consigliate
- 'optional': dipendenze opzionali per funzionalità specifiche
- 'missing_core': lista delle dipendenze core mancanti
- 'missing_recommended': lista delle dipendenze consigliate mancanti
"""
# Dipendenze core (essenziali)
core_deps = {
"ssh": shutil.which("ssh") is not None,
"paramiko": True,
"cryptography": True
}
# Verifica librerie Python
try:
import paramiko
core_deps["paramiko"] = True
except ImportError:
core_deps["paramiko"] = False
try:
import cryptography
core_deps["cryptography"] = True
except ImportError:
core_deps["cryptography"] = False
# Dipendenze fortemente consigliate
recommended_deps = {
"xdotool": shutil.which("xdotool") is not None,
"terminal": False # Almeno un terminale grafico
}
# Controlla se c'è almeno un terminale disponibile
_terminali = ["xterm", "xfce4-terminal", "gnome-terminal", "konsole",
"alacritty", "kitty", "terminator", "wezterm",
"foot", "tilix", "lxterminal", "mate-terminal", "st"]
recommended_deps["terminal"] = any(shutil.which(t) for t in _terminali)
# Dipendenze opzionali (per protocolli specifici)
optional_deps = {
"sshpass": shutil.which("sshpass") is not None,
"xwininfo": shutil.which("xwininfo") is not None,
"mosh": shutil.which("mosh") is not None,
"telnet": shutil.which("telnet") is not None,
"picocom": shutil.which("picocom") is not None,
"rdp_client": False, # Almeno un client RDP
"vnc_client": False # Almeno un client VNC
}
# Controlla client RDP
rdp_clients = ["xfreerdp3", "xfreerdp", "rdesktop"]
optional_deps["rdp_client"] = any(shutil.which(c) for c in rdp_clients)
# Controlla client VNC
vnc_clients = ["vncviewer", "realvnc-viewer", "tigervnc", "remmina", "krdc"]
optional_deps["vnc_client"] = any(shutil.which(c) for c in vnc_clients)
# Calcola dipendenze mancanti
missing_core = [k for k, v in core_deps.items() if not v]
missing_recommended = [k for k, v in recommended_deps.items() if not v]
return {
"core": core_deps,
"recommended": recommended_deps,
"optional": optional_deps,
"missing_core": missing_core,
"missing_recommended": missing_recommended
}
def installed_tools(category: str) -> list[str]:
"""
Restituisce la lista degli strumenti installati per categoria,
più i client personalizzati configurati dall'utente.
category: "terminal" | "rdp" | "vnc"
"""
_map = {
"terminal": ["xterm", "xfce4-terminal", "gnome-terminal", "konsole",
"alacritty", "kitty", "terminator", "wezterm",
"foot", "tilix", "lxterminal", "mate-terminal", "st"],
"rdp": ["xfreerdp3", "xfreerdp", "rdesktop"],
"vnc": ["vncviewer", "realvnc-viewer", "tigervnc", "remmina", "krdc"],
}
candidates = _map.get(category, [])
result = [c for c in candidates if shutil.which(c)]
# Aggiungi client personalizzati (sono identificati dalla loro etichetta)
if category in ("vnc", "rdp"):
ct = config_manager.load_custom_tools()
for entry in ct.get(category, []):
label = entry.get("label", "").strip()
path = entry.get("path", "").strip()
if label and path and label not in result:
result.append(label)
return result