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
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Copyright (C) 2010-2023 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
#
# PyHoca CLI is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# PyHoca CLI is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Contributors to the code of this programme:
# 2010 Dick Kniep <dick.kniep@lindix.nl>
# 2010 Jörg Sawatzki <joerg.sawatzki@web.de>
###
### module section
###
import x2go
import sys
import os
import re
PROG_NAME = os.path.basename(sys.argv[0]).replace('.exe', '')
PROG_PID = os.getpid()
if hasattr(sys, 'frozen') and sys.frozen in ("windows_exe", "console_exe"):
class Win32_Logging(object):
softspace = 0
_fname = os.path.join(os.environ['AppData'], PROG_NAME, '%s.log' % PROG_NAME)
_file = None
def __init__(self, filemode='a'):
self._filemode = filemode
def write(self, text, **kwargs):
if self._file is None:
try:
try:
os.mkdir(os.path.dirname(self._fname))
except:
pass
self._file = open(self._fname, self._filemode)
except:
pass
else:
self._file.write(text)
self._file.flush()
def flush(self):
if self._file is not None:
self._file.flush()
sys.stdout = Win32_Logging(filemode='w+')
sys.stderr = Win32_Logging(filemode='a')
del Win32_Logging
app = sys.argv[0]
if app.startswith('./'):
sys.path.insert(0, os.getcwd())
os.environ['PYTHONX2GO_LOCAL'] = '1'
PROG_OPTIONS = " ".join(sys.argv[1:]).replace("=", " ").split()
try:
_password_index = PROG_OPTIONS.index('--password')+1
PROG_OPTIONS[_password_index] = "XXXXXXXX"
except ValueError:
# ignore if --password option is not specified
pass
try:
_broker_password_index = PROG_OPTIONS.index('--broker-password')+1
PROG_OPTIONS[_broker_password_index] = "XXXXXXXX"
except ValueError:
# ignore if --broker-password option is not specified
pass
from x2go import X2GOCLIENT_OS as _X2GOCLIENT_OS
if _X2GOCLIENT_OS in ('Linux', 'Mac'):
import setproctitle
setproctitle.setproctitle("%s %s" % (PROG_NAME, " ".join(PROG_OPTIONS)))
import argparse
import paramiko
# Python X2Go provides the current local username (OS independent)
from x2go.defaults import CURRENT_LOCAL_USER as current_user
from x2go.defaults import X2GO_PRINT_ACTIONS
from x2go.defaults import DEFAULT_PDFVIEW_CMD
from x2go.defaults import DEFAULT_PDFSAVE_LOCATION
from x2go.defaults import DEFAULT_PRINTCMD_CMD
from x2go import BACKENDS
from pyhoca.cli import current_home, PyHocaCLI, runtime_error
# version information
from pyhoca.cli import __VERSION__ as _version
VERSION=_version
VERSION_TEXT="""
%s[%s] - an X2Go command line client written in Python
----------------------------------------------------------------------
developed by Mike Gabriel <m.gabriel@das-netzwerkteam.de>
VERSION: %s
""" % (PROG_NAME, PROG_PID, VERSION)
PRINT_ACTIONS = X2GO_PRINT_ACTIONS.keys()
logger = x2go.X2GoLogger()
liblogger = x2go.X2GoLogger()
###
### command line arguments
###
# exclusive client control options
action_options = [
{'args':['-N','--new'], 'default': False, 'action': 'store_true', 'help': 'start a new X2Go session on server (default)', },
{'args':['--try-resume'], 'default': False, 'action': 'store_true', 'help': 'if given with --new, try to resume a running/suspended session, otherwise start a new session', },
{'args':['-R','--resume'], 'default': None, 'metavar': 'SESSION_NAME', 'help': 'resume a suspended X2Go session with name SESSION_NAME', },
{'args':['-D','--share-desktop'], 'default': None, 'metavar': 'USER@DISPLAY', 'help': 'share an X2Go session on server specified by USER@DISPLAY', },
{'args':['-S','--suspend'], 'default': None, 'metavar': 'SESSION_NAME', 'help': 'suspend running X2Go session SESSION_NAME', },
{'args':['-T','--terminate'], 'default': None, 'metavar': 'SESSION_NAME', 'help': 'terminate running X2Go session SESSION_NAME', },
{'args':['-L','--list-sessions'], 'default': False, 'action': 'store_true', 'help': 'list user\'s X2Go sessions on server', },
{'args':['--list-desktops'], 'default': False, 'action': 'store_true', 'help': 'list X2Go desktop sessions that are available for sharing', },
{'args':['--list-profiles'], 'default': False, 'action': 'store_true', 'help': 'list user\'s X2Go pre-configured session profiles', },
{'args':['-P','--session-profile'], 'default': None, 'help': 'load x2goclient session profiles and use the session profile SESSION_PROFILE', },
{'args':['--list-cmdline-features'], 'default': False, 'action': 'store_true', 'help': 'show a list of parseable command line features available in this PyHoca-CLI version', },
{'args':['--non-interactive'], 'default': False, 'action': 'store_true', 'help': 'Prevent PyHoca-CLI from ever interactively asking for a password', },
]
action_features = [ 'NEW',
'TRY_RESUME',
'RESUME',
'SHARE_DESKTOP',
'SUSPEND',
'TERMINATE',
'LIST_SESSIONS',
'LIST_DESKTOPS',
'SESSION_PROFILE',
'LIST_CLIENT_FEATURES',
'NON_INTERACTIVE',
]
if _X2GOCLIENT_OS == "Linux":
action_options.append(
{'args':['--from-stdin'], 'default': False, 'action': 'store_true', 'help': 'for LightDM remote login: read <username> <password> <host[:port]> <desktopshell> from STDIN', },
)
# debug options...
debug_options = [
{'args':['-d','--debug'], 'default': False, 'action': 'store_true', 'help': 'enable application debugging code', },
{'args':['--quiet'], 'default': False, 'action': 'store_true', 'help': 'disable any kind of log output', },
{'args':['--libdebug'], 'default': False, 'action': 'store_true', 'help': 'enable debugging code of the underlying Python X2Go module', },
{'args':['--libdebug-sftpxfer'], 'default': False, 'action': 'store_true', 'help': 'enable debugging code of Python X2Go\'s sFTP server code (very verbose, and even promiscuous)', },
{'args':['-V', '--version'], 'default': False, 'action': 'store_true', 'help': 'print version number and exit', },
]
debug_features = [ 'DEBUG',
'QUIET',
'LIBDEBUG',
'LIBDEBUG_SFTPXFER',
]
# possible programme options are
x2go_options = [
# NOT IMPLEMENTED {'args':['--config'], 'default': '~/.x2goclient/sessions', 'help': 'x2goclient config file containing x2go session settings (default: ~/.x2goclient/sessions)', },
{'args':['-c','--command'], 'default': 'TERMINAL', 'help': 'command to run with -R mode on server (default: xterm)', },
{'args':['-l', '-u','--username'], 'default': None, 'help': 'username for the session (default: current user)', },
{'args':['--password'], 'default': None, 'help': 'user password for session authentication', },
{'args':['--force-password'], 'default': False, 'action': 'store_true', 'help': 'enforce username/password authentication', },
{'args':['-p','--remote-ssh-port'], 'default': '22', 'help': 'remote SSH port (default: 22)', },
{'args':['-i', '-k','--ssh-privkey'], 'default': None, 'help': 'use file \'SSH_PRIVKEY\' as private key for the SSH connection (e.g. ~/.ssh/id_rsa)', },
{'args':['--ssh-passphrase'], 'default': None, 'help': 'use passphrase to unlock private key \'SSH_PRIVKEY\' for the SSH connection.', },
{'args':['--add-to-known-hosts'], 'default': False, 'action': 'store_true', 'help': 'add RSA host key fingerprint to ~/.ssh/known_hosts if authenticity of server can\'t be established (default: not set)', },
{'args':['--sound'], 'default': 'pulse', 'choices': ('pulse', 'esd', 'none'), 'help': 'X2Go server sound system (default: \'pulse\')', },
{'args':['--printing'], 'default': False, 'action': 'store_true', 'help': 'use X2Go printing (default: disabled)', },
{'args':['--share-mode'], 'default': 0, 'help': 'share mode for X2Go desktop sharing (0: view-only, 1: full access)', },
{'args':['-F', '--share-local-folders'], 'metavar': '<folder1>[,<folder2[,...]]', 'default': None, 'help': 'a comma separated list of local folder names to mount in the X2Go session', },
{'args':['--clean-sessions'], 'default': False, 'action': 'store_true', 'help': 'clean all suspended sessions before starting a new one', },
{'args':['--terminate-on-ctrl-c'], 'default': False, 'action': 'store_true', 'help': 'terminate the connected session when pressing CTRL+C (instead of suspending the session)', },
{'args':['--auth-attempts'], 'default': 3, 'help': 'number of authentication attempts before authentication fails (default: 3)', },
{'args':['--kdrive'], 'default': False, 'action': 'store_true', 'help': 'as graphical backend use the X2Go Kdrive Xserver instead of the default NXv3 Xserver', },
]
x2go_features = [ 'COMMAND',
'USERNAME',
'PASSWORD',
'FORCE_PASSWORD',
'REMOTE_SSH_PORT',
'SSH_PRIVKEY',
'SSH_PASSPHRASE',
'ADD_TO_KNOWN_HOSTS',
'SOUND',
'PRINTING',
'SHARE_MODE',
'SHARE_LOCAL_FOLDERS',
'CLEAN_SESSIONS',
'TERMINATE_ON_CTRL_C',
'AUTH_ATTEMPTS',
'KDRIVE',
]
ssh_options = [
{'args':['-A', '--forward-sshagent'], 'default': False, 'action': 'store_true', 'help': 'forward SSH agent authentication socket', },
]
ssh_features = [ 'FORWARD_SSHAGENT',
]
print_options = [
{'args':['--print-action'], 'default': 'PDFVIEW', 'choices': PRINT_ACTIONS, 'help': 'action to be performed for incoming X2Go print jobs (default: \'PDFVIEW\')', },
{'args':['--pdfview-cmd'], 'default': None, 'help': 'PDF viewer command for displaying incoming X2Go print jobs (default: \'%s\'); this option selects \'--print-action PDFVIEW\'' % DEFAULT_PDFVIEW_CMD,},
{'args':['--save-to-folder'], 'default': None, 'metavar': 'PRINT_DEST', 'help': 'save print jobs as PDF files to folder PRINT_DEST (default: \'%s\'); this option selects \'--print-action PDFSAVE\'' % DEFAULT_PDFSAVE_LOCATION,},
{'args':['--printer'], 'default': None, 'help': 'target CUPS print queue for incoming X2Go print jobs (default: CUPS default printer); this option selects \'--print-action CUPS\'',},
{'args':['--print-cmd'], 'default': None, 'help': 'print command including cmd line arguments (default: \'%s\'); this option selects \'--print-action PRINTCMD\'' % DEFAULT_PRINTCMD_CMD,},
]
print_features = [ 'PRINT_ACTION',
'PDFVIEW_CMD',
'SAVE_TO_FOLDER',
'PRINTER',
'PRINT_CMD',
]
broker_options = [
{'args':['-B','--broker-url'], 'default': None, 'help': 'retrieve session profiles via an X2Go Session Broker under the given URL', },
{'args':['--broker-password'], 'default': None, 'help': 'password for authenticating against the X2Go Session Broker', },
]
broker_features = [ 'BROKER_URL',
'BROKER_PASSWORD',
]
session_options = [
{'args':['-g','--geometry'], 'default': '800x600','help': 'screen geometry: \'<width>x<height>\' or \'fullscreen\' (default: \'800x600\')',},
{'args':['-x','--xinerama'], 'default': False, 'action': 'store_true', 'help': 'enable Xinerama support in remote X2Go session',},
{'args':['-q','--link'], 'default': 'adsl', 'choices': ('modem','isdn','adsl','wan','lan'), 'help': 'link quality (default: \'adsl\')',},
{'args':['-t','--session-type'], 'default': 'application', 'choices': ('desktop', 'application'), 'help': 'session type (default: \'application\')', },
{'args':['--pack'], 'default': '16m-jpeg-9', 'help': 'compression methods (see below for possible values)', },
{'args':['--kbd-type'], 'default': 'auto', 'help': 'set Keyboard type (default: \'auto\', other allowed options: \'pc105/us\', \'pc105/de\', etc.)',},
{'args':['--kbd-layout'], 'default': 'null', 'help': 'use keyboard layout (default: \'null\', allowed options: \'de\', \'fr\', etc.)',},
{'args':['-C', '--clipboard-mode'], 'default': 'both', 'help': 'configure clipboard mode (default: \'both\' directions, other allowed values: \'none\' for no clipboard support, \'client\' to server copy+pasting only, \'server\' to client copy+pasting only)',},
{'args':['--dpi'], 'default': None, 'help': 'resolution (in dots per inch) to be used by the X2Go session\'s Xserver', },
]
session_features =[ 'GEOMETRY',
'XINERAMA',
'LINK',
'SESSION_TYPE',
'PACK',
'KBD_TYPE',
'KBD_LAYOUT',
'CLIPBOARD_MODE',
'DPI',
]
compat_options = [
{'args':['--port'], 'default': None, 'help': 'compatibility option, synonymous to --remote-ssh-port PORT', },
{'args':['--ssh-key'], 'default': None, 'help': 'compatibility option, synonymous to --ssh-privkey SSH_KEY', },
{'args':['--use-sound'], 'default': None, 'choices': ('yes', 'no'), 'help': 'compatibility option, synonymous to --sound {pulse|none}', },
{'args':['--client-ssh-port'], 'default': None, 'help': 'compatibility option for the x2goclient GUI; as Python X2Go brings its own internal SFTP server, this option will be ignored', },
]
_profiles_backend_default = BACKENDS['X2GoSessionProfiles']['default']
_settings_backend_default = BACKENDS['X2GoClientSettings']['default']
_printing_backend_default = BACKENDS['X2GoClientPrinting']['default']
if _X2GOCLIENT_OS == 'Windows':
_config_backends = ('FILE', 'WINREG')
elif _X2GOCLIENT_OS == 'Linux':
_config_backends = ('FILE', 'GCONF')
else:
_config_backends = ('FILE')
backend_options = [
{'args':['--backend-controlsession'], 'default': None, 'metavar': '<CONTROLSESSION_BACKEND>', 'choices': BACKENDS['X2GoControlSession'].keys(), 'help': 'force usage of a certain CONTROLSESSION_BACKEND (do not use this unless you know exactly what you are doing)', },
{'args':['--backend-terminalsession'], 'default': None, 'metavar': '<TERMINALSESSION_BACKEND>', 'choices': BACKENDS['X2GoTerminalSession'].keys(), 'help': 'force usage of a certain TERMINALSESSION_BACKEND (do not use this unless you know exactly what you are doing)', },
{'args':['--backend-serversessioninfo'], 'default': None, 'metavar': '<SERVERSESSIONINFO_BACKEND>', 'choices': BACKENDS['X2GoServerSessionInfo'].keys(), 'help': 'force usage of a certain SERVERSESSIONINFO_BACKEND (do not use this unless you know exactly what you are doing)', },
{'args':['--backend-serversessionlist'], 'default': None, 'metavar': '<SERVERSESSIONLIST_BACKEND>', 'choices': BACKENDS['X2GoServerSessionList'].keys(), 'help': 'force usage of a certain SERVERSESSIONLIST_BACKEND (do not use this unless you know exactly what you are doing)', },
{'args':['--backend-proxy'], 'default': None, 'metavar': '<PROXY_BACKEND>', 'choices': BACKENDS['X2GoProxy'].keys(), 'help': 'force usage of a certain PROXY_BACKEND (do not use this unless you know exactly what you are doing)', },
{'args':['--backend-sessionprofiles'], 'default': None, 'metavar': '<SESSIONPROFILES_BACKEND>', 'choices': _config_backends, 'help': 'use given backend for accessing session profiles, available backends on your system: %s (default: %s)' % (', '.join(_config_backends), _profiles_backend_default), },
{'args':['--backend-clientsettings'], 'default': None, 'metavar': '<CLIENTSETTINGS_BACKEND>', 'choices': _config_backends, 'help': 'use given backend for accessing the client settings configuration, available backends on your system: %s (default: %s)' % (', '.join(_config_backends), _settings_backend_default), },
{'args':['--backend-clientprinting'], 'default': None, 'metavar': '<CLIENTPRINTING_BACKEND>', 'choices': _config_backends, 'help': 'use given backend for accessing the client printing configuration, available backends on your system: %s (default: %s)' % (', '.join(_config_backends), _printing_backend_default), },
]
###
### beginning of code
###
# print version text and exit
def version():
print("%s" % VERSION_TEXT)
sys.exit(0)
def list_features():
feature_list = action_features \
+ debug_features \
+ x2go_features \
+ ssh_features \
+ print_features \
+ broker_features \
+ session_features
feature_list.sort()
for f in feature_list:
print(f)
sys.exit(0)
def parseargs():
global logger
global liblogger
p = argparse.ArgumentParser(description='X2Go command line client implemented in Python.',\
epilog="""
Possible values for the --pack NX option are:
%s
""" % x2go.defaults.pack_methods_nx3_formatted, \
formatter_class=argparse.RawDescriptionHelpFormatter, \
add_help=True, argument_default=None)
p_reqargs = p.add_argument_group('X2Go server name is always required')
p_reqargs.add_argument('--server', help='server hostname or IP address')
p_actionopts = p.add_argument_group('client actions')
p_debugopts = p.add_argument_group('debug options')
p_x2goopts = p.add_argument_group('X2Go options')
p_sshopts = p.add_argument_group('SSH options')
p_printopts = p.add_argument_group('X2Go print options')
p_brokeropts = p.add_argument_group('X2Go Session Broker client options')
p_sessionopts = p.add_argument_group('Session (NXv3 / X2GoKDrive) options')
p_backendopts = p.add_argument_group('Python X2Go backend options (for experts only)')
p_compatopts = p.add_argument_group('compatibility options')
for (p_group, opts) in ((p_x2goopts, x2go_options), (p_sshopts, ssh_options), (p_printopts, print_options), (p_brokeropts, broker_options), (p_actionopts, action_options), (p_debugopts, debug_options), (p_sessionopts, session_options), (p_backendopts, backend_options), (p_compatopts, compat_options)):
for opt in opts:
args = opt['args']
del opt['args']
p_group.add_argument(*args, **opt)
p.add_argument('host', nargs='?', default=None, help='host to connect to (as alternative to --server option)')
a = p.parse_args()
if a.debug:
logger.set_loglevel_debug()
if a.libdebug:
liblogger.set_loglevel_debug()
if a.quiet:
logger.set_loglevel_quiet()
liblogger.set_loglevel_quiet()
if a.libdebug_sftpxfer:
liblogger.enable_debug_sftpxfer()
if a.password and _X2GOCLIENT_OS == "Windows":
runtime_error("The --password option is forbidden on Windows platforms", parser=p, exitcode=222)
if a.version:
version()
if a.list_cmdline_features:
list_features()
if type(a.host) == str and not a.username and "@" in a.host:
a.username = a.host.split('@')[0]
a.host = '@'.join(a.host.split('@')[1:])
# if no username is given we use the uid under which this programme is run
if a.username is None and not a.session_profile:
a.username = current_user
if not (a.session_profile or a.list_profiles):
if a.host and not a.server: a.server = a.host
# the --server (or --session-profile) option is required for most operations
if not a.server and not a.from_stdin:
runtime_error ("argument --server (or --session-profile) is required", parser=p, exitcode=1)
# check for mutual exclusiveness of -N, -R, -S, -T and -L, -N is default if none of them is set
if bool(a.new) + bool(a.resume) + bool(a.share_desktop) + bool(a.suspend) + bool(a.terminate) + bool(a.list_sessions) + bool(a.list_desktops) + bool(a.list_profiles)> 1:
runtime_error ("modes --new, --resume, --share-desktop, --suspend, --terminate, --list-sessions, --list-desktops and --list-profiles are mutually exclusive", parser=p, exitcode=2)
if bool(a.new) + bool(a.resume) + bool(a.share_desktop) + bool(a.suspend) + bool(a.terminate) + bool(a.list_sessions) + bool(a.list_desktops) + bool(a.list_profiles) == 0:
a.new = True
# check if pack method is available
if not x2go.utils.is_in_nx3packmethods(a.pack):
runtime_error("unknown pack method '%s'" % args.pack, parser=p, exitcode=10)
else:
if not (a.resume or a.share_desktop or a.suspend or a.terminate or a.list_sessions or a.list_desktops or a.list_profiles):
a.new = True
# X2Go printing
if ((a.pdfview_cmd and a.printer) or
(a.pdfview_cmd and a.save_to_folder) or
(a.pdfview_cmd and a.print_cmd) or
(a.printer and a.save_to_folder) or
(a.printer and a.print_cmd) or
(a.print_cmd and a.save_to_folder)):
runtime_error("--pdfviewer, --save-to-folder, --printer and --print-cmd options are mutually exclusive", parser=p, exitcode=81)
if a.pdfview_cmd:
a.print_action = 'PDFVIEW'
elif a.save_to_folder:
a.print_action = 'PDFSAVE'
elif a.printer:
a.print_action = 'PRINT'
elif a.print_cmd:
a.print_action = 'PRINTCMD'
if a.pdfview_cmd is None and a.print_action == 'PDFVIEW':
a.pdfview_cmd = DEFAULT_PDFVIEW_CMD
if a.save_to_folder is None and a.print_action == 'PDFSAVE':
a.save_to_folder = DEFAULT_PDFSAVE_LOCATION
if a.printer is None and a.print_action == 'PRINT':
# None means CUPS default printer...
a.printer = None
if a.print_cmd is None and a.print_action == 'PRINTCMD':
a.print_cmd = DEFAULT_PRINTCMD_CMD
a.print_action_args = {}
if a.pdfview_cmd:
a.print_action_args={'pdfview_cmd': a.pdfview_cmd, }
elif a.save_to_folder:
a.print_action_args={'save_to_folder': a.save_to_folder, }
elif a.printer:
a.print_action_args={'printer': a.printer, }
elif a.print_cmd:
a.print_action_args={'print_cmd': a.print_cmd, }
### take care of compatibility options
# option --use-sound yes as synonomyn for --sound
if a.use_sound is not None:
if a.use_sound == 'yes': a.sound = 'pulse'
if a.use_sound == 'no': a.sound = 'none'
if a.ssh_key is not None:
a.ssh_privkey = a.ssh_key
if a.port is not None:
a.remote_ssh_port = a.port
if a.share_local_folders is not None:
a.share_local_folders = a.share_local_folders.split(',')
try:
_dummy = int(a.auth_attempts)
except ValueError:
runtime_error ("value for cmd line argument --auth-attempts has to be of type integer", parser=p, exitcode=1)
if int(a.auth_attempts) < 1:
a.auth_attempts = "1"
# --non-interactive option.
if a.non_interactive and a.force_password and not a.password:
runtime_error ("--non-interactive in combination with --force-password needs --password cmdline option", parser=p, exitcode=1)
if a.non_interactive:
logger('in case of a authentication failure, pyhoca-cli will *NOT* '
'interactively ask for a password.', x2go.loglevel_WARN, )
else:
logger('in case of a authentication failure, pyhoca-cli will '
'interactively ask for a password.', x2go.loglevel_WARN, )
if a.server:
##### TODO: ssh_config to be moved into Python X2Go!!!!
###
### initialize SSH context
###
# check if SERVER is in .ssh/config file, extract information from there...
ssh_config = paramiko.SSHConfig()
from pyhoca.cli import ssh_config_filename
ssh_config_fileobj = open(ssh_config_filename)
ssh_config.parse(ssh_config_fileobj)
ssh_host = ssh_config.lookup(a.server)
if ssh_host:
if 'hostname' in ssh_host.keys():
a.server = ssh_host['hostname']
if 'port' in ssh_host.keys():
a.remote_ssh_port = ssh_host['port']
ssh_config_fileobj.close()
# check if ssh priv key exists
if a.ssh_privkey and not os.path.isfile(a.ssh_privkey):
runtime_error("SSH private key %s file does not exist." % a.ssh_privkey, parser=p, exitcode=30)
# only look for ssh keys if no ssh privkey is specified
if a.ssh_privkey:
a.look_for_keys = False
else:
a.look_for_keys = True
if a.ssh_passphrase and not a.ssh_privkey:
runtime_error("--ssh-passphrase can only be used in conjunction with --ssh-privkey.", parser=p, exitcode=1)
# hang around the keyboard chaos...
a.kbd_type = a.kbd_type.lower()
a.kbd_layout = a.kbd_layout.lower()
if a.kbd_layout == 'auto':
a.kbd_type = 'auto'
if a.kbd_type == 'auto':
a.kbd_layout = 'null'
# input check for --link
a.link = a.link.lower()
if a.link not in ('modem', 'isdn', 'adsl', 'wan','lan'):
runtime_error ("value for cmd line argument --link is not any of 'modem', 'isdn', 'adsl', 'wan' or 'lan'", parser=p, exitcode=1)
# input check for --dpi
if a.dpi:
try:
if int(a.dpi) < 20 or int(a.dpi) > 400:
runtime_error ("value for cmd line argument --dpi must be between 20 and 400", parser=p, exitcode=1)
except ValueError:
runtime_error ("value for cmd line argument --dpi must be an positive integer value between 20 and 400", parser=p, exitcode=1)
# input check for --clipboard-mode
a.clipboard_mode = a.clipboard_mode.lower()
if a.clipboard_mode not in ('none', 'both', 'client', 'server'):
runtime_error ("value for cmd line argument --clipboard-mode is not any of 'none', 'both', 'client' or 'server'", parser=p, exitcode=1)
# lightdm remote login magic takes place here
if a.from_stdin:
lightdm_remote_login_buffer = sys.stdin.readline()
(a.username, a.server, a.command) = lightdm_remote_login_buffer.split()[0:3]
a.password = " ".join(lightdm_remote_login_buffer.split()[3:])
if ":" in a.server:
a.remote_ssh_port = a.server.split(':')[-1]
a.server = ':'.join(a.server.split(':')[:-1])
a.command = a.command.upper()
a.geometry = 'fullscreen'
return p, a
if __name__ == '__main__':
# parse command line
parser, args = parseargs()
args.parser = parser
if not os.environ.get('DISPLAY'):
logger('the display environment variable is unset, can\'t go on without a DISPLAY...', x2go.loglevel_ERROR, )
logger('exiting pyhoca-cli now.', x2go.loglevel_DEBUG, )
sys.exit(1)
elif not re.match("^.*:[0-9]+(|\.[0-9]+)$", os.environ.get('DISPLAY')):
logger('the display environment variable\'s value is weird ({val}), can\'t go on with that...'.format(val=os.environ.get('DISPLAY')), x2go.loglevel_ERROR, )
logger('exiting pyhoca-cli now.', x2go.loglevel_DEBUG, )
sys.exit(1)
try:
# initialize the X2GoClient context and start the connection to the X2Go server
logger('preparing requested X2Go session', x2go.loglevel_NOTICE, )
thisPyHocaCLI = PyHocaCLI(args, logger=logger, liblogger=liblogger)
thisPyHocaCLI.authenticate()
thisPyHocaCLI.MainLoop()
logger('exiting pyhoca-cli now.', x2go.loglevel_DEBUG, )
sys.exit(0)
except (KeyboardInterrupt, SystemExit) as e:
x2go.x2go_cleanup(e)
|