Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d7540248b | ||
|
|
cd83be7680 | ||
|
|
2bac614194 | ||
|
|
3762af5d8c | ||
|
|
ed2b8220f1 | ||
|
|
4a4f8df5f6 | ||
|
|
ff44f186c2 | ||
|
|
e8bdbdf67c | ||
|
|
c2fe33eda5 | ||
|
|
fb981b8a51 | ||
|
|
8dff999823 | ||
|
|
48c1e6f9d3 |
@@ -10,7 +10,7 @@ This project's focus is to create a simple VDI client intended for mass deployme
|
|||||||
|
|
||||||
## Windows Installation
|
## Windows Installation
|
||||||
|
|
||||||
You **MUST** install virt-viewer prior to using PVE VDI client, you may download it from the [official Virtual Machine Manager](https://virt-manager.org/download) site.
|
You **MUST** install virt-viewer prior to using PVE VDI client, you may download it from the [official Virtual Machine Manager](https://virt-manager.org/download.html) site.
|
||||||
|
|
||||||
Please visit the [releases](https://github.com/joshpatten/PVE-VDIClient/releases) section to download a prebuilt MSI package
|
Please visit the [releases](https://github.com/joshpatten/PVE-VDIClient/releases) section to download a prebuilt MSI package
|
||||||
|
|
||||||
|
|||||||
2
dist/vdiclient.json
vendored
2
dist/vdiclient.json
vendored
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"upgrade_guid" : "46cbad92-353e-4b28-9bee-83950991dad8",
|
"upgrade_guid" : "46cbad92-353e-4b28-9bee-83950991dad8",
|
||||||
"version" : "1.2.03",
|
"version" : "1.2.06",
|
||||||
"product_name" : "VDI Client",
|
"product_name" : "VDI Client",
|
||||||
"manufacturer" : "Josh Patten",
|
"manufacturer" : "Josh Patten",
|
||||||
"name" : "VDI Client",
|
"name" : "VDI Client",
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ logo = vdiclient.png
|
|||||||
kiosk = False
|
kiosk = False
|
||||||
# Enable/Disable Fullscreen mode (not applicable in Kiosk mode)
|
# Enable/Disable Fullscreen mode (not applicable in Kiosk mode)
|
||||||
fullscreen = True
|
fullscreen = True
|
||||||
|
# Disable viewer_kiosk mode if kiosk is set to true, this allows overriding remote_viewer kiosk mode
|
||||||
|
#viewer_kiosk = False
|
||||||
# Enable displaying SPICE ini file before opening virt-viewer
|
# Enable displaying SPICE ini file before opening virt-viewer
|
||||||
inidebug = False
|
inidebug = False
|
||||||
# Select which guest types to display. Acceptable values: both, lxc, qemu
|
# Select which guest types to display. Acceptable values: both, lxc, qemu
|
||||||
@@ -34,6 +36,10 @@ tls_verify = false
|
|||||||
#token_name = dvi
|
#token_name = dvi
|
||||||
# API Token Value
|
# API Token Value
|
||||||
#token_value = xxx-x-x-x-xxx
|
#token_value = xxx-x-x-x-xxx
|
||||||
|
# Password Reset Command Launch. Has to be full executable Command
|
||||||
|
#pwresetcmd = start chrome --app=http://pwreset.example.com
|
||||||
|
# Automatically connect to a VMID upon authentication
|
||||||
|
#auto_vmid = 100
|
||||||
|
|
||||||
[Hosts]
|
[Hosts]
|
||||||
# Hosts are entered as `IP/FQDN = Port`
|
# Hosts are entered as `IP/FQDN = Port`
|
||||||
|
|||||||
36
vdiclient.py
36
vdiclient.py
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
import proxmoxer # pip install proxmoxer
|
import proxmoxer # pip install proxmoxer
|
||||||
import PySimpleGUI as sg # pip install PySimpleGUI
|
import PySimpleGUI as sg # pip install PySimpleGUI
|
||||||
gui = 'TK'
|
gui = 'TK'
|
||||||
@@ -30,6 +30,7 @@ class G:
|
|||||||
totp = False
|
totp = False
|
||||||
imagefile = None
|
imagefile = None
|
||||||
kiosk = False
|
kiosk = False
|
||||||
|
viewer_kiosk = True
|
||||||
fullscreen = True
|
fullscreen = True
|
||||||
verify_ssl = True
|
verify_ssl = True
|
||||||
icon = None
|
icon = None
|
||||||
@@ -41,6 +42,8 @@ class G:
|
|||||||
guest_type = 'both'
|
guest_type = 'both'
|
||||||
width = None
|
width = None
|
||||||
height = None
|
height = None
|
||||||
|
pwresetcmd = None
|
||||||
|
auto_vmid = None
|
||||||
|
|
||||||
def loadconfig(config_location = None):
|
def loadconfig(config_location = None):
|
||||||
if config_location:
|
if config_location:
|
||||||
@@ -94,6 +97,8 @@ def loadconfig(config_location = None):
|
|||||||
G.imagefile = config['General']['logo']
|
G.imagefile = config['General']['logo']
|
||||||
if 'kiosk' in config['General']:
|
if 'kiosk' in config['General']:
|
||||||
G.kiosk = config['General'].getboolean('kiosk')
|
G.kiosk = config['General'].getboolean('kiosk')
|
||||||
|
if 'viewer_kiosk' in config['General']:
|
||||||
|
G.viewer_kiosk = config['General'].getboolean('viewer_kiosk')
|
||||||
if 'fullscreen' in config['General']:
|
if 'fullscreen' in config['General']:
|
||||||
G.fullscreen = config['General'].getboolean('fullscreen')
|
G.fullscreen = config['General'].getboolean('fullscreen')
|
||||||
if 'inidebug' in config['General']:
|
if 'inidebug' in config['General']:
|
||||||
@@ -117,11 +122,15 @@ def loadconfig(config_location = None):
|
|||||||
if 'tls_verify' in config['Authentication']:
|
if 'tls_verify' in config['Authentication']:
|
||||||
G.verify_ssl = config['Authentication'].getboolean('tls_verify')
|
G.verify_ssl = config['Authentication'].getboolean('tls_verify')
|
||||||
if 'user' in config['Authentication']:
|
if 'user' in config['Authentication']:
|
||||||
G.user = config['Authentication']['user']
|
G.user = config['Authentication']['user']
|
||||||
if 'token_name' in config['Authentication']:
|
if 'token_name' in config['Authentication']:
|
||||||
G.token_name = config['Authentication']['token_name']
|
G.token_name = config['Authentication']['token_name']
|
||||||
if 'token_value' in config['Authentication']:
|
if 'token_value' in config['Authentication']:
|
||||||
G.token_value = config['Authentication']['token_value']
|
G.token_value = config['Authentication']['token_value']
|
||||||
|
if 'pwresetcmd' in config['Authentication']:
|
||||||
|
G.pwresetcmd = config['Authentication']['pwresetcmd']
|
||||||
|
if 'auto_vmid' in config['Authentication']:
|
||||||
|
G.auto_vmid = config['Authentication'].getint('auto_vmid')
|
||||||
if not 'Hosts' in config:
|
if not 'Hosts' in config:
|
||||||
win_popup_button(f'Unable to read supplied configuration:\nNo `Hosts` section defined!', 'OK')
|
win_popup_button(f'Unable to read supplied configuration:\nNo `Hosts` section defined!', 'OK')
|
||||||
return False
|
return False
|
||||||
@@ -180,6 +189,8 @@ def setmainlayout():
|
|||||||
layout.append([sg.Button("Log In", font=["Helvetica", 14], bind_return_key=True)])
|
layout.append([sg.Button("Log In", font=["Helvetica", 14], bind_return_key=True)])
|
||||||
else:
|
else:
|
||||||
layout.append([sg.Button("Log In", font=["Helvetica", 14], bind_return_key=True), sg.Button("Cancel", font=["Helvetica", 14])])
|
layout.append([sg.Button("Log In", font=["Helvetica", 14], bind_return_key=True), sg.Button("Cancel", font=["Helvetica", 14])])
|
||||||
|
if G.pwresetcmd:
|
||||||
|
layout[-1].append(sg.Button('Password Reset', font=["Helvetica", 14]))
|
||||||
return layout
|
return layout
|
||||||
|
|
||||||
def getvms(listonly = False):
|
def getvms(listonly = False):
|
||||||
@@ -255,7 +266,7 @@ def setvmlayout(vms):
|
|||||||
layoutcolumn.append(tmplayout)
|
layoutcolumn.append(tmplayout)
|
||||||
layoutcolumn.append([sg.HorizontalSeparator()])
|
layoutcolumn.append([sg.HorizontalSeparator()])
|
||||||
if len(vms) > 5: # We need a scrollbar
|
if len(vms) > 5: # We need a scrollbar
|
||||||
layout.append([sg.Column(layoutcolumn, scrollable = True, size = [450*G.scaling, None] )])
|
layout.append([sg.Column(layoutcolumn, scrollable = True, size = [None, None] )])
|
||||||
else:
|
else:
|
||||||
for row in layoutcolumn:
|
for row in layoutcolumn:
|
||||||
layout.append(row)
|
layout.append(row)
|
||||||
@@ -388,7 +399,7 @@ def vmaction(vmnode, vmid, vmtype, action='connect'):
|
|||||||
closed = iniwin(inistring)
|
closed = iniwin(inistring)
|
||||||
connpop = win_popup(f'Connecting to {vmstatus["name"]}...')
|
connpop = win_popup(f'Connecting to {vmstatus["name"]}...')
|
||||||
pcmd = [G.vvcmd]
|
pcmd = [G.vvcmd]
|
||||||
if G.kiosk:
|
if G.kiosk and G.viewer_kiosk:
|
||||||
pcmd.append('--kiosk')
|
pcmd.append('--kiosk')
|
||||||
pcmd.append('--kiosk-quit')
|
pcmd.append('--kiosk-quit')
|
||||||
pcmd.append('on-disconnect')
|
pcmd.append('on-disconnect')
|
||||||
@@ -483,6 +494,11 @@ def loginwindow():
|
|||||||
if event == 'Cancel' or event == sg.WIN_CLOSED:
|
if event == 'Cancel' or event == sg.WIN_CLOSED:
|
||||||
window.close()
|
window.close()
|
||||||
return False
|
return False
|
||||||
|
elif event == 'Password Reset':
|
||||||
|
try:
|
||||||
|
subprocess.check_call(G.pwresetcmd, shell=True)
|
||||||
|
except Exception as e:
|
||||||
|
win_popup_button(f'Unable to open password reset command.\n\nError Info:\n{e}', 'OK')
|
||||||
else:
|
else:
|
||||||
if event in ('Log In', '\r', 'special 16777220', 'special 16777221'):
|
if event in ('Log In', '\r', 'special 16777220', 'special 16777221'):
|
||||||
popwin = win_popup("Please wait, authenticating...")
|
popwin = win_popup("Please wait, authenticating...")
|
||||||
@@ -513,7 +529,6 @@ def showvms():
|
|||||||
win_popup_button('No desktop instances found, please consult with your system administrator', 'OK')
|
win_popup_button('No desktop instances found, please consult with your system administrator', 'OK')
|
||||||
return False
|
return False
|
||||||
layout = setvmlayout(vms)
|
layout = setvmlayout(vms)
|
||||||
|
|
||||||
if G.icon:
|
if G.icon:
|
||||||
window = sg.Window(G.title, layout, return_keyboard_events=True, finalize=True, resizable=False, no_titlebar=G.kiosk, size=(G.width, G.height), icon=G.icon)
|
window = sg.Window(G.title, layout, return_keyboard_events=True, finalize=True, resizable=False, no_titlebar=G.kiosk, size=(G.width, G.height), icon=G.icon)
|
||||||
else:
|
else:
|
||||||
@@ -608,6 +623,13 @@ def main():
|
|||||||
return 1
|
return 1
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
if G.auto_vmid:
|
||||||
|
vms = getvms()
|
||||||
|
for row in vms:
|
||||||
|
if row['vmid'] == G.auto_vmid:
|
||||||
|
vmaction(row['node'], row['vmid'], row['type'], action='connect')
|
||||||
|
return 0
|
||||||
|
win_popup_button(f'No VDI instance with ID {G.auto_vmid} found!', 'OK')
|
||||||
vmstat = showvms()
|
vmstat = showvms()
|
||||||
if not vmstat:
|
if not vmstat:
|
||||||
G.proxmox = None
|
G.proxmox = None
|
||||||
|
|||||||
Reference in New Issue
Block a user