created fork of client for python3 version
4
client-py3/full/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
/bin
|
||||||
|
/udsclient_*
|
||||||
|
/udsclient-*.tar.gz
|
||||||
|
/*.rpm
|
17
client-py3/full/.project
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>UDSclient</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.python.pydev.PyDevBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.python.pydev.pythonNature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
14
client-py3/full/.pydevproject
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<?eclipse-pydev version="1.0"?><pydev_project>
|
||||||
|
|
||||||
|
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
|
||||||
|
|
||||||
|
<path>/${PROJECT_DIR_NAME}/src</path>
|
||||||
|
|
||||||
|
</pydev_pathproperty>
|
||||||
|
|
||||||
|
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
|
||||||
|
|
||||||
|
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">system-2.7</pydev_property>
|
||||||
|
|
||||||
|
</pydev_project>
|
4
client-py3/full/linux/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
/udsclient-opensuse-[0-9]*.spec
|
||||||
|
/udsclient-[0-9]*.spec
|
||||||
|
/debian/udsclient
|
||||||
|
/targz
|
51
client-py3/full/linux/Makefile
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
|
||||||
|
# Version
|
||||||
|
# VERSION := 1.7.5
|
||||||
|
|
||||||
|
# Directories
|
||||||
|
SOURCEDIR := ../src
|
||||||
|
LIBDIR := $(DESTDIR)/usr/lib/UDSClient
|
||||||
|
BINDIR := $(DESTDIR)/usr/bin
|
||||||
|
SBINDIR = $(DESTDIR)/usr/sbin
|
||||||
|
APPSDIR := $(DESTDIR)/usr/share/applications
|
||||||
|
|
||||||
|
PYC := $(shell find $(SOURCEDIR) -name '*.py[co]')
|
||||||
|
CACHES := $(shell find $(SOURCEDIR) -name '__pycache__')
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf $(PYC) $(CACHES) $(DESTDIR)
|
||||||
|
install:
|
||||||
|
rm -rf $(DESTDIR)
|
||||||
|
mkdir -p $(LIBDIR)
|
||||||
|
#mkdir -p $(BINDIR)
|
||||||
|
#mkdir -p $(SBINDIR)
|
||||||
|
mkdir -p $(APPSDIR)
|
||||||
|
|
||||||
|
mkdir $(LIBDIR)/uds
|
||||||
|
|
||||||
|
# Cleans up .pyc and cache folders
|
||||||
|
rm -f $(PYC) $(CACHES)
|
||||||
|
|
||||||
|
cp $(SOURCEDIR)/uds/*.py $(LIBDIR)/uds
|
||||||
|
|
||||||
|
cp $(SOURCEDIR)/UDS*.py $(LIBDIR)
|
||||||
|
|
||||||
|
|
||||||
|
# URL Catchers elements for gnome/kde
|
||||||
|
cp desktop/UDSClient.desktop $(APPSDIR)
|
||||||
|
|
||||||
|
chmod 755 $(LIBDIR)/UDSClient.py
|
||||||
|
|
||||||
|
ifeq ($(DISTRO),targz)
|
||||||
|
cp installer.sh $(DESTDIR)/install.sh
|
||||||
|
tar czvf ../udsclient-$(VERSION).tar.gz -C $(DESTDIR) .
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
# chmod 0755 $(BINDIR)/udsclient
|
||||||
|
uninstall:
|
||||||
|
rm -rf $(LIBDIR)
|
||||||
|
# rm -f $(BINDIR)/udsclient
|
||||||
|
# rm -rf $(CFGDIR)
|
36
client-py3/full/linux/build-packages.sh
Executable file
@ -0,0 +1,36 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
VERSION=`cat ../../../VERSION`
|
||||||
|
RELEASE=1
|
||||||
|
# Debian based
|
||||||
|
dpkg-buildpackage -b
|
||||||
|
|
||||||
|
# Now rpm based
|
||||||
|
top=`pwd`
|
||||||
|
|
||||||
|
cat udsclient-template.spec |
|
||||||
|
sed -e s/"version 0.0.0"/"version ${VERSION}"/g |
|
||||||
|
sed -e s/"release 1"/"release ${RELEASE}"/g > udsclient-$VERSION.spec
|
||||||
|
|
||||||
|
# Now fix dependencies for opensuse
|
||||||
|
cat udsclient-template.spec |
|
||||||
|
sed -e s/"version 0.0.0"/"version ${VERSION}"/g |
|
||||||
|
sed -e s/"name udsclient"/"name udsclient-opensuse"/g |
|
||||||
|
sed -e s/"PyQt4"/"python-qt4"/g |
|
||||||
|
sed -e s/"libXScrnSaver"/"libXss1"/g > udsclient-opensuse-$VERSION.spec
|
||||||
|
|
||||||
|
|
||||||
|
# Right now, udsactor-xrdp-.spec is not needed
|
||||||
|
for pkg in udsclient-$VERSION.spec udsclient-opensuse-$VERSION.spec; do
|
||||||
|
|
||||||
|
rm -rf rpm
|
||||||
|
for folder in SOURCES BUILD RPMS SPECS SRPMS; do
|
||||||
|
mkdir -p rpm/$folder
|
||||||
|
done
|
||||||
|
|
||||||
|
rpmbuild -v -bb --clean --buildroot=$top/rpm/BUILD/$pkg-root --target noarch $pkg 2>&1
|
||||||
|
done
|
||||||
|
|
||||||
|
#rm udsclient-$VERSION
|
||||||
|
|
||||||
|
make DESTDIR=targz DISTRO=targz VERSION=${VERSION} install
|
3
client-py3/full/linux/debian/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
/udsactor/
|
||||||
|
/udsactor-xrdp/
|
||||||
|
/udsactor-nx/
|
47
client-py3/full/linux/debian/changelog
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
udsclient (3.0.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Upgraded to 3.0.0 release
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Wed, 10 Jul 2019 9:24:10 +0200
|
||||||
|
|
||||||
|
udsclient (2.2.1) stable; urgency=medium
|
||||||
|
|
||||||
|
* Upgraded to 2.2.1 release
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Thu, 2 Oct 2018 12:44:12 +0200
|
||||||
|
|
||||||
|
udsclient (2.2.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Updated release
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Thu, 27 Aug 2017 14:18:18 +0200
|
||||||
|
|
||||||
|
udsclient (2.1.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Updated release
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Sun, 23 Oct 2016 21:12:23 +0200
|
||||||
|
|
||||||
|
udsclient (2.0.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Release upgrade
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Tue, 01 Mar 2016 09:33:18 +0100
|
||||||
|
|
||||||
|
udsclient (1.9.1) stable; urgency=medium
|
||||||
|
|
||||||
|
* Minor fixes & making version match UDS version
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Tue, 01 Mar 2016 03:02:37 +0100
|
||||||
|
|
||||||
|
udsclient (1.9.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* Minor fixes & making version match UDS version
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Tue, 05 May 2015 07:03:47 +0200
|
||||||
|
|
||||||
|
udsclient (1.7.5) stable; urgency=medium
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Adolfo Gómez García <agomez@virtualcable.es> Fri, 10 Apr 2015 05:32:41 +0100
|
1
client-py3/full/linux/debian/compat
Normal file
@ -0,0 +1 @@
|
|||||||
|
9
|
15
client-py3/full/linux/debian/control
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
Source: udsclient
|
||||||
|
Section: admin
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Adolfo Gómez García <agomez@virtualcable.es>
|
||||||
|
Build-Depends: debhelper (>= 7), po-debconf
|
||||||
|
Standards-Version: 3.9.2
|
||||||
|
Homepage: http://www.virtualcable.es
|
||||||
|
|
||||||
|
Package: udsclient
|
||||||
|
Section: admin
|
||||||
|
Priority: optional
|
||||||
|
Architecture: all
|
||||||
|
Depends: python-paramiko (>=0.8.2), python-qt4 (>=4.9), python-six(>=1.1), python (>=2.7), freerdp2-x11 | freerdp-x11, desktop-file-utils, ${misc:Depends}
|
||||||
|
Description: Client connector for Universal Desktop Services (UDS) Broker
|
||||||
|
This package provides the required components to allow this machine to connect to services provided by UDS Broker.
|
26
client-py3/full/linux/debian/copyright
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
|
||||||
|
Name: udsclient
|
||||||
|
Maintainer: Adolfo Gómez García
|
||||||
|
Source: http://www.udsenterprise.com/
|
||||||
|
|
||||||
|
Copyright: 2014 Virtual Cable S.L.U.
|
||||||
|
License: BSD-3-clause
|
||||||
|
|
||||||
|
License: GPL-2+
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
This program 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 General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
.
|
||||||
|
On Debian systems, the full text of the GNU General Public
|
||||||
|
License version 2 can be found in the file
|
||||||
|
`/usr/share/common-licenses/GPL-2'.
|
1
client-py3/full/linux/debian/docs
Normal file
@ -0,0 +1 @@
|
|||||||
|
readme.txt
|
2
client-py3/full/linux/debian/files
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
udsclient_3.0.0_all.deb admin optional
|
||||||
|
udsclient_3.0.0_amd64.buildinfo admin optional
|
44
client-py3/full/linux/debian/rules
Executable file
@ -0,0 +1,44 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
configure: configure-stamp
|
||||||
|
configure-stamp:
|
||||||
|
dh_testdir
|
||||||
|
touch configure-stamp
|
||||||
|
build: build-arch build-indep
|
||||||
|
build-arch: build-stamp
|
||||||
|
build-indep: build-stamp
|
||||||
|
build-stamp: configure-stamp
|
||||||
|
dh_testdir
|
||||||
|
$(MAKE)
|
||||||
|
touch $@
|
||||||
|
clean:
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
rm -f build-stamp configure-stamp
|
||||||
|
dh_clean
|
||||||
|
install: build
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_prep
|
||||||
|
dh_installdirs
|
||||||
|
$(MAKE) DESTDIR=$(CURDIR)/debian/udsclient install
|
||||||
|
binary-arch: build install
|
||||||
|
# emptyness
|
||||||
|
binary-indep: build install
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_installchangelogs
|
||||||
|
dh_installdocs
|
||||||
|
dh_installdebconf
|
||||||
|
dh_installinit --no-start
|
||||||
|
dh_python2=python
|
||||||
|
dh_compress
|
||||||
|
dh_link
|
||||||
|
dh_fixperms
|
||||||
|
dh_installdeb
|
||||||
|
dh_shlibdeps
|
||||||
|
dh_gencontrol
|
||||||
|
dh_md5sums
|
||||||
|
dh_builddeb
|
||||||
|
binary: binary-indep
|
||||||
|
.PHONY: build clean binary-indep binary install configure
|
17
client-py3/full/linux/debian/udsclient.log
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
dh_prep
|
||||||
|
dh_installdirs
|
||||||
|
dh_installchangelogs
|
||||||
|
dh_installdocs
|
||||||
|
dh_installdebconf
|
||||||
|
dh_installinit
|
||||||
|
dh_compress
|
||||||
|
dh_link
|
||||||
|
dh_fixperms
|
||||||
|
dh_installdeb
|
||||||
|
dh_shlibdeps
|
||||||
|
dh_gencontrol
|
||||||
|
dh_md5sums
|
||||||
|
dh_builddeb
|
||||||
|
dh_builddeb
|
||||||
|
dh_builddeb
|
||||||
|
dh_builddeb
|
21
client-py3/full/linux/debian/udsclient.postinst
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
. /usr/share/debconf/confmodule
|
||||||
|
|
||||||
|
set -e
|
||||||
|
case "$1" in
|
||||||
|
configure)
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade|abort-remove|abort-deconfigure)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "postinst called with unknown argument \`$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
exit 0
|
6
client-py3/full/linux/debian/udsclient.postrm
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. /usr/share/debconf/confmodule
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
1
client-py3/full/linux/debian/udsclient.prerm
Executable file
@ -0,0 +1 @@
|
|||||||
|
#! /bin/bash -e
|
20
client-py3/full/linux/debian/udsclient.templates
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
Template: udsactor/host
|
||||||
|
Type: string
|
||||||
|
Default:
|
||||||
|
Description: UDS Server address:
|
||||||
|
The actor needs the address of the server in order to communicate with it.
|
||||||
|
Provide here full address (or i) of the UDS server
|
||||||
|
|
||||||
|
Template: udsactor/secure
|
||||||
|
Type: boolean
|
||||||
|
Default: true
|
||||||
|
Description: Use secure (https) connection to communicate with UDS server?
|
||||||
|
If selected, the communication will be done using https.
|
||||||
|
If not selected, the communication will be done using http
|
||||||
|
|
||||||
|
Template: udsactor/masterKey
|
||||||
|
Type: string
|
||||||
|
Default:
|
||||||
|
Description: Master Key:
|
||||||
|
This key is available on UDS Administration interface.
|
||||||
|
Look for it under configuration, on Security tab.
|
11
client-py3/full/linux/desktop/UDSClient.desktop
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=UDSClient
|
||||||
|
Comment=UDS Helper
|
||||||
|
Keywords=uds;client;vdi;
|
||||||
|
Exec=/usr/lib/UDSClient/UDSClient.py %u
|
||||||
|
Icon=help-browser
|
||||||
|
StartupNotify=true
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=Utility;
|
||||||
|
MimeType=x-scheme-handler/uds;x-scheme-handler/udss;
|
14
client-py3/full/linux/installer.sh
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
cp -r usr/lib/UDSClient /usr/lib/UDSClient
|
||||||
|
cp -r usr/share/applications /usr/lib/applications -R
|
||||||
|
update-desktop-database
|
||||||
|
|
||||||
|
echo "Installation process done."
|
||||||
|
echo "Remembar that the following packages must be installed on system:"
|
||||||
|
echo "* Python paramiko"
|
||||||
|
echo "* Python pyqt4"
|
||||||
|
echo "Theese packages (as their names), are dependent on your platform, so you must locate and install them"
|
||||||
|
echo "You can install them directly on any platform with pip, using this simple command: "
|
||||||
|
echo "pip install PyQt4 paramiko"
|
||||||
|
|
3
client-py3/full/linux/readme.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
UDSClient is the client connector needed to get acccess to services managed by UDS Broker.
|
||||||
|
|
||||||
|
Please, visit http://www.udsenterprise.com for more information
|
51
client-py3/full/linux/udsclient-template.spec
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
%define _topdir %(echo $PWD)/rpm
|
||||||
|
%define name udsclient
|
||||||
|
%define version 0.0.0
|
||||||
|
%define release 1
|
||||||
|
%define buildroot %{_topdir}/%{name}-%{version}-%{release}-root
|
||||||
|
|
||||||
|
BuildRoot: %{buildroot}
|
||||||
|
Name: %{name}
|
||||||
|
Version: %{version}
|
||||||
|
Release: %{release}
|
||||||
|
Summary: Client for Universal Desktop Services (UDS) Broker
|
||||||
|
License: BSD3
|
||||||
|
Group: Applications/Productivity
|
||||||
|
Requires: python-six python-paramiko PyQt4
|
||||||
|
Vendor: Virtual Cable S.L.U.
|
||||||
|
URL: http://www.udsenterprise.com
|
||||||
|
Provides: udsclient
|
||||||
|
|
||||||
|
%define _rpmdir ../
|
||||||
|
%define _rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
curdir=`pwd`
|
||||||
|
cd ../..
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT DISTRO=rh install
|
||||||
|
cd $curdir
|
||||||
|
|
||||||
|
%post
|
||||||
|
/usr/bin/update-desktop-database
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
curdir=`pwd`
|
||||||
|
cd ../..
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT DISTRO=rh clean
|
||||||
|
cd $curdir
|
||||||
|
|
||||||
|
|
||||||
|
%postun
|
||||||
|
# And, posibly, the .pyc leaved behind on /usr/share/UDSActor
|
||||||
|
rm -rf /usr/share/UDClient > /dev/null 2>&1
|
||||||
|
/usr/bin/update-desktop-database
|
||||||
|
|
||||||
|
%description
|
||||||
|
This package provides the required components to allow connection to services offered by UDS Broker.
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
/usr/lib/UDSClient/*
|
||||||
|
/usr/share/applications/UDSClient.desktop
|
4
client-py3/full/src/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
/build
|
||||||
|
/dist
|
||||||
|
UDSClient.dmg
|
||||||
|
UDSClient.pkg
|
338
client-py3/full/src/UDSClient.py
Executable file
@ -0,0 +1,338 @@
|
|||||||
|
#!/usr/bin/env python2.7
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014-2017 Virtual Cable S.L.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this software
|
||||||
|
# without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
'''
|
||||||
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||||
|
'''
|
||||||
|
# pylint: disable=c-extension-no-member
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import sys
|
||||||
|
import webbrowser
|
||||||
|
import json
|
||||||
|
|
||||||
|
from PyQt4 import QtCore, QtGui # @UnresolvedImport
|
||||||
|
import six
|
||||||
|
|
||||||
|
from uds.rest import RestRequest
|
||||||
|
from uds.forward import forward # pylint: disable=unused-import
|
||||||
|
from uds.log import logger
|
||||||
|
from uds import tools
|
||||||
|
from uds import VERSION
|
||||||
|
|
||||||
|
from UDSWindow import Ui_MainWindow
|
||||||
|
|
||||||
|
# Server before this version uses "unsigned" scripts
|
||||||
|
OLD_METHOD_VERSION = '2.4.0'
|
||||||
|
|
||||||
|
class RetryException(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
class UDSClient(QtGui.QMainWindow):
|
||||||
|
|
||||||
|
ticket = None
|
||||||
|
scrambler = None
|
||||||
|
withError = False
|
||||||
|
animTimer = None
|
||||||
|
anim = 0
|
||||||
|
animInverted = False
|
||||||
|
serverVersion = 'X.Y.Z' # Will be overwriten on getVersion
|
||||||
|
req = None
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
QtGui.QMainWindow.__init__(self)
|
||||||
|
self.setWindowFlags(QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint)
|
||||||
|
|
||||||
|
self.ui = Ui_MainWindow()
|
||||||
|
self.ui.setupUi(self)
|
||||||
|
|
||||||
|
self.ui.progressBar.setValue(0)
|
||||||
|
self.ui.cancelButton.clicked.connect(self.cancelPushed)
|
||||||
|
|
||||||
|
self.ui.info.setText('Initializing...')
|
||||||
|
|
||||||
|
screen = QtGui.QDesktopWidget().screenGeometry()
|
||||||
|
mysize = self.geometry()
|
||||||
|
hpos = (screen.width() - mysize.width()) / 2
|
||||||
|
vpos = (screen.height() - mysize.height() - mysize.height()) / 2
|
||||||
|
self.move(hpos, vpos)
|
||||||
|
|
||||||
|
self.animTimer = QtCore.QTimer()
|
||||||
|
QtCore.QObject.connect(self.animTimer, QtCore.SIGNAL('timeout()'), self.updateAnim)
|
||||||
|
|
||||||
|
self.activateWindow()
|
||||||
|
|
||||||
|
self.startAnim()
|
||||||
|
|
||||||
|
|
||||||
|
def closeWindow(self):
|
||||||
|
self.close()
|
||||||
|
|
||||||
|
def processError(self, data):
|
||||||
|
if 'error' in data:
|
||||||
|
# QtGui.QMessageBox.critical(self, 'Request error {}'.format(data.get('retryable', '0')), data['error'], QtGui.QMessageBox.Ok)
|
||||||
|
if data.get('retryable', '0') == '1':
|
||||||
|
raise RetryException(data['error'])
|
||||||
|
|
||||||
|
raise Exception(data['error'])
|
||||||
|
# QtGui.QMessageBox.critical(self, 'Request error', rest.data['error'], QtGui.QMessageBox.Ok)
|
||||||
|
# self.closeWindow()
|
||||||
|
# return
|
||||||
|
|
||||||
|
def showError(self, error):
|
||||||
|
logger.error('got error: %s', error)
|
||||||
|
self.stopAnim()
|
||||||
|
self.ui.info.setText('UDS Plugin Error') # In fact, main window is hidden, so this is not visible... :)
|
||||||
|
self.closeWindow()
|
||||||
|
QtGui.QMessageBox.critical(None, 'UDS Plugin Error', '{}'.format(e), QtGui.QMessageBox.Ok)
|
||||||
|
self.withError = True
|
||||||
|
|
||||||
|
def cancelPushed(self):
|
||||||
|
self.close()
|
||||||
|
|
||||||
|
@QtCore.pyqtSlot()
|
||||||
|
def updateAnim(self):
|
||||||
|
self.anim += 2
|
||||||
|
if self.anim > 99:
|
||||||
|
self.animInverted = not self.animInverted
|
||||||
|
self.ui.progressBar.setInvertedAppearance(self.animInverted)
|
||||||
|
self.anim = 0
|
||||||
|
|
||||||
|
self.ui.progressBar.setValue(self.anim)
|
||||||
|
|
||||||
|
def startAnim(self):
|
||||||
|
self.ui.progressBar.invertedAppearance = False
|
||||||
|
self.anim = 0
|
||||||
|
self.animInverted = False
|
||||||
|
self.ui.progressBar.setInvertedAppearance(self.animInverted)
|
||||||
|
self.animTimer.start(40)
|
||||||
|
|
||||||
|
def stopAnim(self):
|
||||||
|
self.ui.progressBar.invertedAppearance = False
|
||||||
|
self.animTimer.stop()
|
||||||
|
|
||||||
|
@QtCore.pyqtSlot()
|
||||||
|
def getVersion(self):
|
||||||
|
self.req = RestRequest('', self, self.version)
|
||||||
|
self.req.get()
|
||||||
|
|
||||||
|
@QtCore.pyqtSlot(dict)
|
||||||
|
def version(self, data):
|
||||||
|
try:
|
||||||
|
self.processError(data)
|
||||||
|
self.ui.info.setText('Processing...')
|
||||||
|
|
||||||
|
if data['result']['requiredVersion'] > VERSION:
|
||||||
|
QtGui.QMessageBox.critical(self, 'Upgrade required', 'A newer connector version is required.\nA browser will be opened to download it.', QtGui.QMessageBox.Ok)
|
||||||
|
webbrowser.open(data['result']['downloadUrl'])
|
||||||
|
self.closeWindow()
|
||||||
|
return
|
||||||
|
|
||||||
|
self.serverVersion = data['result']['requiredVersion']
|
||||||
|
self.getTransportData()
|
||||||
|
|
||||||
|
except RetryException as e:
|
||||||
|
self.ui.info.setText(six.text_type(e))
|
||||||
|
QtCore.QTimer.singleShot(1000, self.getVersion)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
self.showError(e)
|
||||||
|
|
||||||
|
|
||||||
|
@QtCore.pyqtSlot()
|
||||||
|
def getTransportData(self):
|
||||||
|
try:
|
||||||
|
self.req = RestRequest('/{}/{}'.format(self.ticket, self.scrambler), self, self.transportDataReceived, params={'hostname': tools.getHostName(), 'version': VERSION})
|
||||||
|
self.req.get()
|
||||||
|
except Exception as e:
|
||||||
|
logger.exception('Got exception on getTransportData')
|
||||||
|
raise e
|
||||||
|
|
||||||
|
|
||||||
|
@QtCore.pyqtSlot(dict)
|
||||||
|
def transportDataReceived(self, data):
|
||||||
|
logger.debug('Transport data received')
|
||||||
|
try:
|
||||||
|
self.processError(data)
|
||||||
|
|
||||||
|
params = None
|
||||||
|
|
||||||
|
if self.serverVersion <= OLD_METHOD_VERSION:
|
||||||
|
script = data['result'].decode('base64').decode('bz2')
|
||||||
|
else:
|
||||||
|
res = data['result']
|
||||||
|
# We have three elements on result:
|
||||||
|
# * Script
|
||||||
|
# * Signature
|
||||||
|
# * Script data
|
||||||
|
# We test that the Script has correct signature, and them execute it with the parameters
|
||||||
|
script, signature, params = res['script'].decode('base64').decode('bz2'), res['signature'], json.loads(res['params'].decode('base64').decode('bz2'))
|
||||||
|
if tools.verifySignature(script, signature) is False:
|
||||||
|
logger.error('Signature is invalid')
|
||||||
|
|
||||||
|
raise Exception('Invalid UDS code signature. Please, report to administrator')
|
||||||
|
|
||||||
|
self.stopAnim()
|
||||||
|
|
||||||
|
if 'darwin' in sys.platform:
|
||||||
|
self.showMinimized()
|
||||||
|
|
||||||
|
QtCore.QTimer.singleShot(3000, self.endScript)
|
||||||
|
self.hide()
|
||||||
|
|
||||||
|
# if self.serverVersion <= OLD_METHOD_VERSION:
|
||||||
|
# errorString = '<p>The server <b>{}</b> runs an old version of UDS:</p>'.format(host)
|
||||||
|
# errorString += '<p>To avoid security issues, you must approve old UDS Version access.</p>'
|
||||||
|
#
|
||||||
|
# if QtGui.QMessageBox.warning(None, 'ACCESS Warning', errorString, QtGui.QMessageBox.Yes | QtGui.QMessageBox.No) == QtGui.QMessageBox.No:
|
||||||
|
# raise Exception('Server not approved. Access denied.')
|
||||||
|
|
||||||
|
six.exec_(script, globals(), {'parent': self, 'sp': params})
|
||||||
|
|
||||||
|
except RetryException as e:
|
||||||
|
self.ui.info.setText(six.text_type(e) + ', retrying access...')
|
||||||
|
# Retry operation in ten seconds
|
||||||
|
QtCore.QTimer.singleShot(10000, self.getTransportData)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
#logger.exception('Got exception executing script:')
|
||||||
|
self.showError(e)
|
||||||
|
|
||||||
|
def endScript(self):
|
||||||
|
# After running script, wait for stuff
|
||||||
|
try:
|
||||||
|
tools.waitForTasks()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
try:
|
||||||
|
tools.unlinkFiles()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
try:
|
||||||
|
tools.execBeforeExit()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
self.closeWindow()
|
||||||
|
|
||||||
|
def start(self):
|
||||||
|
'''
|
||||||
|
Starts proccess by requesting version info
|
||||||
|
'''
|
||||||
|
self.ui.info.setText('Initializing...')
|
||||||
|
QtCore.QTimer.singleShot(100, self.getVersion)
|
||||||
|
|
||||||
|
|
||||||
|
def done(data):
|
||||||
|
QtGui.QMessageBox.critical(None, 'Notice', six.text_type(data.data), QtGui.QMessageBox.Ok)
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
# Ask user to approve endpoint
|
||||||
|
def approveHost(hostName, parentWindow=None):
|
||||||
|
settings = QtCore.QSettings()
|
||||||
|
settings.beginGroup('endpoints')
|
||||||
|
|
||||||
|
approved = settings.value(hostName, False).toBool()
|
||||||
|
|
||||||
|
errorString = '<p>The server <b>{}</b> must be approved:</p>'.format(hostName)
|
||||||
|
errorString += '<p>Only approve UDS servers that you trust to avoid security issues.</p>'
|
||||||
|
|
||||||
|
if approved or QtGui.QMessageBox.warning(parentWindow, 'ACCESS Warning', errorString, QtGui.QMessageBox.Yes | QtGui.QMessageBox.No) == QtGui.QMessageBox.Yes:
|
||||||
|
settings.setValue(hostName, True)
|
||||||
|
approved = True
|
||||||
|
|
||||||
|
settings.endGroup()
|
||||||
|
return approved
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
logger.debug('Initializing connector')
|
||||||
|
# Initialize app
|
||||||
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
|
||||||
|
# Set several info for settings
|
||||||
|
QtCore.QCoreApplication.setOrganizationName('Virtual Cable S.L.U.')
|
||||||
|
QtCore.QCoreApplication.setApplicationName('UDS Connector')
|
||||||
|
|
||||||
|
if 'darwin' not in sys.platform:
|
||||||
|
logger.debug('Mac OS *NOT* Detected')
|
||||||
|
app.setStyle('plastique')
|
||||||
|
|
||||||
|
if six.PY3 is False:
|
||||||
|
logger.debug('Fixing threaded execution of commands')
|
||||||
|
import threading
|
||||||
|
threading._DummyThread._Thread__stop = lambda x: 42 # type: ignore, pylint: disable=protected-access
|
||||||
|
|
||||||
|
# First parameter must be url
|
||||||
|
try:
|
||||||
|
uri = sys.argv[1]
|
||||||
|
|
||||||
|
if uri == '--test':
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
logger.debug('URI: %s', uri)
|
||||||
|
if uri[:6] != 'uds://' and uri[:7] != 'udss://':
|
||||||
|
raise Exception()
|
||||||
|
|
||||||
|
ssl = uri[3] == 's'
|
||||||
|
host, UDSClient.ticket, UDSClient.scrambler = uri.split('//')[1].split('/') # type: ignore
|
||||||
|
logger.debug('ssl:%s, host:%s, ticket:%s, scrambler:%s', ssl, host, UDSClient.ticket, UDSClient.scrambler)
|
||||||
|
except Exception:
|
||||||
|
logger.debug('Detected execution without valid URI, exiting')
|
||||||
|
QtGui.QMessageBox.critical(None, 'Notice', 'UDS Client Version {}'.format(VERSION), QtGui.QMessageBox.Ok)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
# Setup REST api endpoint
|
||||||
|
RestRequest.restApiUrl = '{}://{}/rest/client'.format(['http', 'https'][ssl], host)
|
||||||
|
logger.debug('Setting request URL to %s', RestRequest.restApiUrl)
|
||||||
|
# RestRequest.restApiUrl = 'https://172.27.0.1/rest/client'
|
||||||
|
|
||||||
|
try:
|
||||||
|
logger.debug('Starting execution')
|
||||||
|
|
||||||
|
# Approbe before going on
|
||||||
|
if approveHost(host) is False:
|
||||||
|
raise Exception('Host {} was not approved'.format(host))
|
||||||
|
|
||||||
|
win = UDSClient()
|
||||||
|
win.show()
|
||||||
|
|
||||||
|
win.start()
|
||||||
|
|
||||||
|
exitVal = app.exec_()
|
||||||
|
logger.debug('Execution finished correctly')
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
logger.exception('Got an exception executing client:')
|
||||||
|
exitVal = 128
|
||||||
|
QtGui.QMessageBox.critical(None, 'Error', six.text_type(e), QtGui.QMessageBox.Ok)
|
||||||
|
|
||||||
|
logger.debug('Exiting')
|
||||||
|
sys.exit(exitVal)
|
6
client-py3/full/src/UDSResources.qrc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<RCC>
|
||||||
|
<qresource prefix="images">
|
||||||
|
<file alias="logo-uds-small">images/logo-uds-small.png</file>
|
||||||
|
<file alias="logo-uds-big">images/logo-uds.png</file>
|
||||||
|
</qresource>
|
||||||
|
</RCC>
|
2471
client-py3/full/src/UDSResources_rc.py
Normal file
105
client-py3/full/src/UDSWindow.py
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Form implementation generated from reading ui file 'UDSWindow.ui'
|
||||||
|
#
|
||||||
|
# Created: Mon Apr 27 21:41:43 2015
|
||||||
|
# by: PyQt4 UI code generator 4.11.2
|
||||||
|
#
|
||||||
|
# WARNING! All changes made in this file will be lost!
|
||||||
|
|
||||||
|
from PyQt4 import QtCore, QtGui
|
||||||
|
|
||||||
|
try:
|
||||||
|
_fromUtf8 = QtCore.QString.fromUtf8
|
||||||
|
except AttributeError:
|
||||||
|
def _fromUtf8(s):
|
||||||
|
return s
|
||||||
|
|
||||||
|
try:
|
||||||
|
_encoding = QtGui.QApplication.UnicodeUTF8
|
||||||
|
def _translate(context, text, disambig):
|
||||||
|
return QtGui.QApplication.translate(context, text, disambig, _encoding)
|
||||||
|
except AttributeError:
|
||||||
|
def _translate(context, text, disambig):
|
||||||
|
return QtGui.QApplication.translate(context, text, disambig)
|
||||||
|
|
||||||
|
class Ui_MainWindow(object):
|
||||||
|
def setupUi(self, MainWindow):
|
||||||
|
MainWindow.setObjectName(_fromUtf8("MainWindow"))
|
||||||
|
MainWindow.setWindowModality(QtCore.Qt.NonModal)
|
||||||
|
MainWindow.resize(259, 185)
|
||||||
|
MainWindow.setCursor(QtGui.QCursor(QtCore.Qt.BusyCursor))
|
||||||
|
icon = QtGui.QIcon()
|
||||||
|
icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/images/logo-uds-small")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
|
||||||
|
MainWindow.setWindowIcon(icon)
|
||||||
|
MainWindow.setWindowOpacity(1.0)
|
||||||
|
self.centralwidget = QtGui.QWidget(MainWindow)
|
||||||
|
self.centralwidget.setAutoFillBackground(True)
|
||||||
|
self.centralwidget.setObjectName(_fromUtf8("centralwidget"))
|
||||||
|
self.verticalLayout_2 = QtGui.QVBoxLayout(self.centralwidget)
|
||||||
|
self.verticalLayout_2.setSpacing(4)
|
||||||
|
self.verticalLayout_2.setMargin(4)
|
||||||
|
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
|
||||||
|
self.frame = QtGui.QFrame(self.centralwidget)
|
||||||
|
self.frame.setFrameShape(QtGui.QFrame.StyledPanel)
|
||||||
|
self.frame.setFrameShadow(QtGui.QFrame.Raised)
|
||||||
|
self.frame.setObjectName(_fromUtf8("frame"))
|
||||||
|
self.verticalLayout_3 = QtGui.QVBoxLayout(self.frame)
|
||||||
|
self.verticalLayout_3.setSpacing(4)
|
||||||
|
self.verticalLayout_3.setMargin(4)
|
||||||
|
self.verticalLayout_3.setObjectName(_fromUtf8("verticalLayout_3"))
|
||||||
|
self.verticalLayout = QtGui.QVBoxLayout()
|
||||||
|
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
|
||||||
|
self.image = QtGui.QLabel(self.frame)
|
||||||
|
self.image.setMinimumSize(QtCore.QSize(0, 24))
|
||||||
|
self.image.setAutoFillBackground(True)
|
||||||
|
self.image.setText(_fromUtf8(""))
|
||||||
|
self.image.setPixmap(QtGui.QPixmap(_fromUtf8(":/images/logo-uds-small")))
|
||||||
|
self.image.setScaledContents(False)
|
||||||
|
self.image.setAlignment(QtCore.Qt.AlignCenter)
|
||||||
|
self.image.setObjectName(_fromUtf8("image"))
|
||||||
|
self.verticalLayout.addWidget(self.image)
|
||||||
|
self.info = QtGui.QLabel(self.frame)
|
||||||
|
self.info.setMaximumSize(QtCore.QSize(16777215, 16))
|
||||||
|
self.info.setObjectName(_fromUtf8("info"))
|
||||||
|
self.verticalLayout.addWidget(self.info)
|
||||||
|
self.progressBar = QtGui.QProgressBar(self.frame)
|
||||||
|
self.progressBar.setProperty("value", 24)
|
||||||
|
self.progressBar.setTextVisible(False)
|
||||||
|
self.progressBar.setObjectName(_fromUtf8("progressBar"))
|
||||||
|
self.verticalLayout.addWidget(self.progressBar)
|
||||||
|
self.horizontalLayout = QtGui.QHBoxLayout()
|
||||||
|
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
|
||||||
|
spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
|
||||||
|
self.horizontalLayout.addItem(spacerItem)
|
||||||
|
self.cancelButton = QtGui.QPushButton(self.frame)
|
||||||
|
self.cancelButton.setDefault(True)
|
||||||
|
self.cancelButton.setFlat(False)
|
||||||
|
self.cancelButton.setObjectName(_fromUtf8("cancelButton"))
|
||||||
|
self.horizontalLayout.addWidget(self.cancelButton)
|
||||||
|
spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
|
||||||
|
self.horizontalLayout.addItem(spacerItem1)
|
||||||
|
self.verticalLayout.addLayout(self.horizontalLayout)
|
||||||
|
self.verticalLayout_3.addLayout(self.verticalLayout)
|
||||||
|
self.verticalLayout_2.addWidget(self.frame)
|
||||||
|
MainWindow.setCentralWidget(self.centralwidget)
|
||||||
|
|
||||||
|
self.retranslateUi(MainWindow)
|
||||||
|
QtCore.QMetaObject.connectSlotsByName(MainWindow)
|
||||||
|
|
||||||
|
def retranslateUi(self, MainWindow):
|
||||||
|
MainWindow.setWindowTitle(_translate("MainWindow", "UDS Connection", None))
|
||||||
|
self.info.setText(_translate("MainWindow", "TextLabel", None))
|
||||||
|
self.cancelButton.setText(_translate("MainWindow", "Cancel", None))
|
||||||
|
|
||||||
|
import UDSResources_rc
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import sys
|
||||||
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
MainWindow = QtGui.QMainWindow()
|
||||||
|
ui = Ui_MainWindow()
|
||||||
|
ui.setupUi(MainWindow)
|
||||||
|
MainWindow.show()
|
||||||
|
sys.exit(app.exec_())
|
||||||
|
|
160
client-py3/full/src/UDSWindow.ui
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>MainWindow</class>
|
||||||
|
<widget class="QMainWindow" name="MainWindow">
|
||||||
|
<property name="windowModality">
|
||||||
|
<enum>Qt::NonModal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>259</width>
|
||||||
|
<height>185</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="cursor">
|
||||||
|
<cursorShape>BusyCursor</cursorShape>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>UDS Connection</string>
|
||||||
|
</property>
|
||||||
|
<property name="windowIcon">
|
||||||
|
<iconset resource="UDSResources.qrc">
|
||||||
|
<normaloff>:/images/logo-uds-small</normaloff>:/images/logo-uds-small</iconset>
|
||||||
|
</property>
|
||||||
|
<property name="windowOpacity">
|
||||||
|
<double>1.000000000000000</double>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="centralwidget">
|
||||||
|
<property name="autoFillBackground">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="margin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QFrame" name="frame">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="margin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="image">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>24</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="autoFillBackground">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="pixmap">
|
||||||
|
<pixmap resource="UDSResources.qrc">:/images/logo-uds-small</pixmap>
|
||||||
|
</property>
|
||||||
|
<property name="scaledContents">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="info">
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>TextLabel</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QProgressBar" name="progressBar">
|
||||||
|
<property name="value">
|
||||||
|
<number>24</number>
|
||||||
|
</property>
|
||||||
|
<property name="textVisible">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="cancelButton">
|
||||||
|
<property name="text">
|
||||||
|
<string>Cancel</string>
|
||||||
|
</property>
|
||||||
|
<property name="default">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<property name="flat">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer_2">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<resources>
|
||||||
|
<include location="UDSResources.qrc"/>
|
||||||
|
</resources>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
BIN
client-py3/full/src/images/logo-512.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
client-py3/full/src/images/logo-uds-small.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
client-py3/full/src/images/logo-uds.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
client-py3/full/src/images/uds.ico
Normal file
After Width: | Height: | Size: 9.4 KiB |
BIN
client-py3/full/src/macosx/uds.icns
Normal file
BIN
client-py3/full/src/macosx/uds.iconset/icon_128x128.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_128x128@2x.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_16x16.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_16x16@2x.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_256x256.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_256x256@2x.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_32x32.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_32x32@2x.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_512x512.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
client-py3/full/src/macosx/uds.iconset/icon_512x512@2x.png
Normal file
After Width: | Height: | Size: 137 KiB |
41
client-py3/full/src/uds/__init__.py
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014-2017 Virtual Cable S.L.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this software
|
||||||
|
# without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
'''
|
||||||
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||||
|
'''
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
VERSION = '3.0.0'
|
||||||
|
|
||||||
|
__title__ = 'udclient'
|
||||||
|
__version__ = VERSION
|
||||||
|
__build__ = 0x010760
|
||||||
|
__author__ = 'Adolfo Gómez'
|
||||||
|
__license__ = "BSD 3-clause"
|
||||||
|
__copyright__ = "Copyright 2014-2017 VirtualCable S.L.U."
|
193
client-py3/full/src/uds/forward.py
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
# Based on forward.py from paramiko
|
||||||
|
# Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com>
|
||||||
|
# https://github.com/paramiko/paramiko/blob/master/demos/forward.py
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import threading
|
||||||
|
import random
|
||||||
|
import time
|
||||||
|
import select
|
||||||
|
|
||||||
|
import paramiko
|
||||||
|
import six
|
||||||
|
|
||||||
|
from .log import logger
|
||||||
|
|
||||||
|
if six.PY2:
|
||||||
|
import SocketServer as socketserver # pylint: disable=import-error
|
||||||
|
else:
|
||||||
|
import socketserver
|
||||||
|
|
||||||
|
|
||||||
|
class ForwardServer(socketserver.ThreadingTCPServer):
|
||||||
|
daemon_threads = True
|
||||||
|
allow_reuse_address = True
|
||||||
|
|
||||||
|
|
||||||
|
class Handler(socketserver.BaseRequestHandler):
|
||||||
|
|
||||||
|
def handle(self):
|
||||||
|
self.thread.currentConnections += 1
|
||||||
|
|
||||||
|
try:
|
||||||
|
chan = self.ssh_transport.open_channel('direct-tcpip',
|
||||||
|
(self.chain_host, self.chain_port),
|
||||||
|
self.request.getpeername())
|
||||||
|
except Exception as e:
|
||||||
|
logger.exception('Incoming request to %s:%d failed: %s', self.chain_host, self.chain_port, repr(e))
|
||||||
|
return
|
||||||
|
if chan is None:
|
||||||
|
logger.error('Incoming request to %s:%d was rejected by the SSH server.', self.chain_host, self.chain_port)
|
||||||
|
return
|
||||||
|
|
||||||
|
logger.debug('Connected! Tunnel open %r -> %r -> %r', self.request.getpeername(), chan.getpeername(), (self.chain_host, self.chain_port))
|
||||||
|
try:
|
||||||
|
while self.event.is_set() is False:
|
||||||
|
r, _w, _x = select.select([self.request, chan], [], [], 1) # pylint: disable=unused-variable
|
||||||
|
|
||||||
|
if self.request in r:
|
||||||
|
data = self.request.recv(1024)
|
||||||
|
if not data:
|
||||||
|
break
|
||||||
|
chan.send(data)
|
||||||
|
if chan in r:
|
||||||
|
data = chan.recv(1024)
|
||||||
|
if not data:
|
||||||
|
break
|
||||||
|
self.request.send(data)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
try:
|
||||||
|
peername = self.request.getpeername()
|
||||||
|
chan.close()
|
||||||
|
self.request.close()
|
||||||
|
logger.debug('Tunnel closed from %r', peername,)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
self.thread.currentConnections -= 1
|
||||||
|
|
||||||
|
if self.thread.stoppable is True and self.thread.currentConnections == 0:
|
||||||
|
self.thread.stop()
|
||||||
|
|
||||||
|
|
||||||
|
class ForwardThread(threading.Thread):
|
||||||
|
status = 0 # Connecting
|
||||||
|
|
||||||
|
def __init__(self, server, port, username, password, localPort, redirectHost, redirectPort, waitTime):
|
||||||
|
threading.Thread.__init__(self)
|
||||||
|
self.client = None
|
||||||
|
self.fs = None
|
||||||
|
|
||||||
|
self.server = server
|
||||||
|
self.port = int(port)
|
||||||
|
self.username = username
|
||||||
|
self.password = password
|
||||||
|
|
||||||
|
self.localPort = int(localPort)
|
||||||
|
self.redirectHost = redirectHost
|
||||||
|
self.redirectPort = redirectPort
|
||||||
|
|
||||||
|
self.waitTime = waitTime
|
||||||
|
|
||||||
|
self.stopEvent = threading.Event()
|
||||||
|
|
||||||
|
self.timer = None
|
||||||
|
self.currentConnections = 0
|
||||||
|
self.stoppable = False
|
||||||
|
self.client = None
|
||||||
|
|
||||||
|
def clone(self, redirectHost, redirectPort, localPort=None):
|
||||||
|
if localPort is None:
|
||||||
|
localPort = random.randrange(40000, 50000)
|
||||||
|
|
||||||
|
ft = ForwardThread(self.server, self.port, self.username, self.password, localPort, redirectHost, redirectPort, self.waitTime)
|
||||||
|
ft.client = self.client
|
||||||
|
self.client.useCount += 1 # One more using this client
|
||||||
|
ft.start()
|
||||||
|
|
||||||
|
while ft.status == 0:
|
||||||
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
return (ft, localPort)
|
||||||
|
|
||||||
|
|
||||||
|
def _timerFnc(self):
|
||||||
|
self.timer = None
|
||||||
|
logger.debug('Timer fnc: %s', self.currentConnections)
|
||||||
|
self.stoppable = True
|
||||||
|
if self.currentConnections <= 0:
|
||||||
|
self.stop()
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
if self.client is None:
|
||||||
|
self.client = paramiko.SSHClient()
|
||||||
|
self.client.useCount = 1 # Custom added variable, to keep track on when to close tunnel
|
||||||
|
self.client.load_system_host_keys()
|
||||||
|
self.client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||||
|
|
||||||
|
logger.debug('Connecting to ssh host %s:%d ...', self.server, self.port)
|
||||||
|
|
||||||
|
try:
|
||||||
|
self.client.connect(self.server, self.port, username=self.username, password=self.password, timeout=5)
|
||||||
|
except Exception:
|
||||||
|
logger.exception('Exception connecting: ')
|
||||||
|
self.status = 2 # Error
|
||||||
|
return
|
||||||
|
|
||||||
|
class SubHandler(Handler):
|
||||||
|
chain_host = self.redirectHost
|
||||||
|
chain_port = self.redirectPort
|
||||||
|
ssh_transport = self.client.get_transport()
|
||||||
|
event = self.stopEvent
|
||||||
|
thread = self
|
||||||
|
|
||||||
|
logger.debug('Wait Time: %s', self.waitTime)
|
||||||
|
self.timer = threading.Timer(self.waitTime, self._timerFnc)
|
||||||
|
self.timer.start()
|
||||||
|
|
||||||
|
self.status = 1 # Ok, listening
|
||||||
|
|
||||||
|
self.fs = ForwardServer(('', self.localPort), SubHandler)
|
||||||
|
self.fs.serve_forever()
|
||||||
|
|
||||||
|
def stop(self):
|
||||||
|
try:
|
||||||
|
if self.timer:
|
||||||
|
self.timer.cancel()
|
||||||
|
|
||||||
|
self.stopEvent.set()
|
||||||
|
self.fs.shutdown()
|
||||||
|
|
||||||
|
if self.client is not None:
|
||||||
|
self.client.useCount -= 1
|
||||||
|
if self.client.useCount == 0:
|
||||||
|
self.client.close()
|
||||||
|
self.client = None # Clean up
|
||||||
|
except Exception:
|
||||||
|
logger.exception('Exception stopping')
|
||||||
|
|
||||||
|
|
||||||
|
def forward(server, port, username, password, redirectHost, redirectPort, localPort=None, waitTime=10):
|
||||||
|
'''
|
||||||
|
Instantiates an ssh connection to server:port
|
||||||
|
Returns the Thread created and the local redirected port as a list: (thread, port)
|
||||||
|
'''
|
||||||
|
port, redirectPort = int(port), int(redirectPort)
|
||||||
|
|
||||||
|
if localPort is None:
|
||||||
|
localPort = random.randrange(40000, 50000)
|
||||||
|
|
||||||
|
logger.debug('Connecting to %s:%s using %s/%s redirecting to %s:%s, listening on 127.0.0.1:%s',
|
||||||
|
server, port, username, password, redirectHost, redirectPort, localPort)
|
||||||
|
|
||||||
|
ft = ForwardThread(server, port, username, password, localPort, redirectHost, redirectPort, waitTime)
|
||||||
|
|
||||||
|
ft.start()
|
||||||
|
|
||||||
|
while ft.status == 0:
|
||||||
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
return (ft, localPort)
|
55
client-py3/full/src/uds/log.py
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014 Virtual Cable S.L.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this software
|
||||||
|
# without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
'''
|
||||||
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||||
|
'''
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import tempfile
|
||||||
|
|
||||||
|
if sys.platform.startswith('linux'):
|
||||||
|
from os.path import expanduser # pylint: disable=ungrouped-imports
|
||||||
|
logFile = expanduser('~/udsclient.log')
|
||||||
|
else:
|
||||||
|
logFile = os.path.join(tempfile.gettempdir(), b'udsclient.log')
|
||||||
|
|
||||||
|
try:
|
||||||
|
logging.basicConfig(
|
||||||
|
filename=logFile,
|
||||||
|
filemode='a',
|
||||||
|
format='%(levelname)s %(asctime)s %(message)s',
|
||||||
|
level=logging.INFO
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
logging.basicConfig(format='%(levelname)s %(asctime)s %(message)s', level=logging.INFO)
|
||||||
|
|
||||||
|
logger = logging.getLogger('udsclient')
|
48
client-py3/full/src/uds/osDetector.py
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2017 Virtual Cable S.L.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this software
|
||||||
|
# without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
'''
|
||||||
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||||
|
'''
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
LINUX = 'Linux'
|
||||||
|
WINDOWS = 'Windows'
|
||||||
|
MAC_OS_X = 'Mac os x'
|
||||||
|
|
||||||
|
def getOs():
|
||||||
|
if sys.platform.startswith('linux'):
|
||||||
|
return LINUX
|
||||||
|
if sys.platform.startswith('win'):
|
||||||
|
return WINDOWS
|
||||||
|
if sys.platform.startswith('darwin'):
|
||||||
|
return MAC_OS_X
|
||||||
|
return 'other'
|
121
client-py3/full/src/uds/rest.py
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2017 Virtual Cable S.L.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this software
|
||||||
|
# without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
'''
|
||||||
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||||
|
'''
|
||||||
|
# pylint: disable=c-extension-no-member,no-name-in-module
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import json
|
||||||
|
import urllib
|
||||||
|
|
||||||
|
import six
|
||||||
|
|
||||||
|
from PyQt4.QtCore import pyqtSignal, pyqtSlot
|
||||||
|
from PyQt4.QtCore import QObject, QUrl, QSettings
|
||||||
|
from PyQt4.QtCore import Qt
|
||||||
|
from PyQt4.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply, QSslCertificate
|
||||||
|
from PyQt4.QtGui import QMessageBox
|
||||||
|
|
||||||
|
from . import osDetector
|
||||||
|
|
||||||
|
from . import VERSION
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class RestRequest(QObject):
|
||||||
|
|
||||||
|
restApiUrl = '' #
|
||||||
|
|
||||||
|
done = pyqtSignal(dict, name='done')
|
||||||
|
|
||||||
|
def __init__(self, url, parentWindow, done, params=None): # parent not used
|
||||||
|
super(RestRequest, self).__init__()
|
||||||
|
# private
|
||||||
|
self._manager = QNetworkAccessManager()
|
||||||
|
if params is not None:
|
||||||
|
url += '?' + '&'.join('{}={}'.format(k, urllib.quote(six.text_type(v).encode('utf8'))) for k, v in params.iteritems())
|
||||||
|
|
||||||
|
self.url = QUrl(RestRequest.restApiUrl + url)
|
||||||
|
|
||||||
|
# connect asynchronous result, when a request finishes
|
||||||
|
self._manager.finished.connect(self._finished)
|
||||||
|
self._manager.sslErrors.connect(self._sslError)
|
||||||
|
self._parentWindow = parentWindow
|
||||||
|
|
||||||
|
self.done.connect(done, Qt.QueuedConnection)
|
||||||
|
|
||||||
|
# private slot, no need to declare as slot
|
||||||
|
@pyqtSlot(QNetworkReply)
|
||||||
|
def _finished(self, reply):
|
||||||
|
'''
|
||||||
|
Handle signal 'finished'. A network request has finished.
|
||||||
|
'''
|
||||||
|
try:
|
||||||
|
if reply.error() != QNetworkReply.NoError:
|
||||||
|
raise Exception(reply.errorString())
|
||||||
|
data = six.text_type(reply.readAll())
|
||||||
|
data = json.loads(data)
|
||||||
|
except Exception as e:
|
||||||
|
data = {
|
||||||
|
'result': None,
|
||||||
|
'error': six.text_type(e)
|
||||||
|
}
|
||||||
|
|
||||||
|
self.done.emit(data)
|
||||||
|
|
||||||
|
reply.deleteLater() # schedule for delete from main event loop
|
||||||
|
|
||||||
|
@pyqtSlot(QNetworkReply, list)
|
||||||
|
def _sslError(self, reply, errors):
|
||||||
|
settings = QSettings()
|
||||||
|
settings.beginGroup('ssl')
|
||||||
|
cert = errors[0].certificate()
|
||||||
|
digest = six.text_type(cert.digest().toHex())
|
||||||
|
|
||||||
|
approved = settings.value(digest, False).toBool()
|
||||||
|
|
||||||
|
errorString = '<p>The certificate for <b>{}</b> has the following errors:</p><ul>'.format(cert.subjectInfo(QSslCertificate.CommonName))
|
||||||
|
|
||||||
|
for err in errors:
|
||||||
|
errorString += '<li>' + err.errorString() + '</li>'
|
||||||
|
|
||||||
|
errorString += '</ul>'
|
||||||
|
|
||||||
|
if approved or QMessageBox.warning(self._parentWindow, 'SSL Warning', errorString, QMessageBox.Yes | QMessageBox.No) == QMessageBox.Yes:
|
||||||
|
settings.setValue(digest, True)
|
||||||
|
reply.ignoreSslErrors()
|
||||||
|
|
||||||
|
settings.endGroup()
|
||||||
|
|
||||||
|
def get(self):
|
||||||
|
request = QNetworkRequest(self.url)
|
||||||
|
request.setRawHeader('User-Agent', osDetector.getOs() + " - UDS Connector " + VERSION)
|
||||||
|
self._manager.get(request)
|
205
client-py3/full/src/uds/tools.py
Normal file
@ -0,0 +1,205 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright (c) 2015 Virtual Cable S.L.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
||||||
|
# may be used to endorse or promote products derived from this software
|
||||||
|
# without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||||
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||||
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||||
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||||
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
'''
|
||||||
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||||
|
'''
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from base64 import b64decode
|
||||||
|
|
||||||
|
import tempfile
|
||||||
|
import string
|
||||||
|
import random
|
||||||
|
import os
|
||||||
|
import socket
|
||||||
|
import stat
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
|
||||||
|
import six
|
||||||
|
|
||||||
|
from .log import logger
|
||||||
|
|
||||||
|
_unlinkFiles = []
|
||||||
|
_tasksToWait = []
|
||||||
|
_execBeforeExit = []
|
||||||
|
|
||||||
|
sys_fs_enc = sys.getfilesystemencoding() or 'mbcs'
|
||||||
|
|
||||||
|
# Public key for scripts
|
||||||
|
PUBLIC_KEY = '''-----BEGIN PUBLIC KEY-----
|
||||||
|
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuNURlGjBpqbglkTTg2lh
|
||||||
|
dU5qPbg9Q+RofoDDucGfrbY0pjB9ULgWXUetUWDZhFG241tNeKw+aYFTEorK5P+g
|
||||||
|
ud7h9KfyJ6huhzln9eyDu3k+kjKUIB1PLtA3lZLZnBx7nmrHRody1u5lRaLVplsb
|
||||||
|
FmcnptwYD+3jtJ2eK9ih935DYAkYS4vJFi2FO+npUQdYBZHPG/KwXLjP4oGOuZp0
|
||||||
|
pCTLiCXWGjqh2GWsTECby2upGS/ZNZ1r4Ymp4V2A6DZnN0C0xenHIY34FWYahbXF
|
||||||
|
ZGdr4DFBPdYde5Rb5aVKJQc/pWK0CV7LK6Krx0/PFc7OGg7ItdEuC7GSfPNV/ANt
|
||||||
|
5BEQNF5w2nUUsyN8ziOrNih+z6fWQujAAUZfpCCeV9ekbwXGhbRtdNkbAryE5vH6
|
||||||
|
eCE0iZ+cFsk72VScwLRiOhGNelMQ7mIMotNck3a0P15eaGJVE2JV0M/ag/Cnk0Lp
|
||||||
|
wI1uJQRAVqz9ZAwvF2SxM45vnrBn6TqqxbKnHCeiwstLDYG4fIhBwFxP3iMH9EqV
|
||||||
|
2+QXqdJW/wLenFjmXfxrjTRr+z9aYMIdtIkSpADIlbaJyTtuQpEdWnrlDS2b1IGd
|
||||||
|
Okbm65EebVzOxfje+8dRq9Uqwip8f/qmzFsIIsx3wPSvkKawFwb0G5h2HX5oJrk0
|
||||||
|
nVgtClKcDDlSaBsO875WDR0CAwEAAQ==
|
||||||
|
-----END PUBLIC KEY-----'''
|
||||||
|
|
||||||
|
|
||||||
|
def saveTempFile(content, filename=None):
|
||||||
|
if filename is None:
|
||||||
|
filename = b''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(16))
|
||||||
|
filename = filename + '.uds'
|
||||||
|
|
||||||
|
if 'win32' in sys.platform:
|
||||||
|
logger.info('Fixing for win32')
|
||||||
|
filename = filename.encode(sys_fs_enc)
|
||||||
|
|
||||||
|
filename = os.path.join(tempfile.gettempdir(), filename)
|
||||||
|
|
||||||
|
with open(filename, 'w') as f:
|
||||||
|
f.write(content)
|
||||||
|
|
||||||
|
logger.info('Returning filename')
|
||||||
|
return filename
|
||||||
|
|
||||||
|
|
||||||
|
def readTempFile(filename):
|
||||||
|
if 'win32' in sys.platform:
|
||||||
|
filename = filename.encode('utf-8')
|
||||||
|
|
||||||
|
filename = os.path.join(tempfile.gettempdir(), filename)
|
||||||
|
try:
|
||||||
|
with open(filename, 'r') as f:
|
||||||
|
return f.read()
|
||||||
|
except Exception:
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def testServer(host, port, timeOut=4):
|
||||||
|
try:
|
||||||
|
sock = socket.create_connection((host, int(port)), timeOut)
|
||||||
|
sock.close()
|
||||||
|
except Exception:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def findApp(appName, extraPath=None):
|
||||||
|
if 'win32' in sys.platform and isinstance(appName, six.text_type):
|
||||||
|
appName = appName.encode(sys_fs_enc)
|
||||||
|
searchPath = os.environ['PATH'].split(os.pathsep)
|
||||||
|
if extraPath is not None:
|
||||||
|
searchPath += list(extraPath)
|
||||||
|
|
||||||
|
for path in searchPath:
|
||||||
|
fileName = os.path.join(path, appName)
|
||||||
|
if os.path.isfile(fileName) and (os.stat(fileName).st_mode & stat.S_IXUSR) != 0:
|
||||||
|
return fileName
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def getHostName():
|
||||||
|
'''
|
||||||
|
Returns current host name
|
||||||
|
In fact, it's a wrapper for socket.gethostname()
|
||||||
|
'''
|
||||||
|
hostname = socket.gethostname()
|
||||||
|
if 'win32' in sys.platform:
|
||||||
|
hostname = hostname.decode(sys_fs_enc)
|
||||||
|
|
||||||
|
hostname = six.text_type(hostname)
|
||||||
|
logger.info('Hostname: %s', hostname)
|
||||||
|
return hostname
|
||||||
|
|
||||||
|
# Queing operations (to be executed before exit)
|
||||||
|
|
||||||
|
|
||||||
|
def addFileToUnlink(filename):
|
||||||
|
'''
|
||||||
|
Adds a file to the wait-and-unlink list
|
||||||
|
'''
|
||||||
|
_unlinkFiles.append(filename)
|
||||||
|
|
||||||
|
|
||||||
|
def unlinkFiles():
|
||||||
|
'''
|
||||||
|
Removes all wait-and-unlink files
|
||||||
|
'''
|
||||||
|
if _unlinkFiles:
|
||||||
|
time.sleep(5) # Wait 5 seconds before deleting anything
|
||||||
|
|
||||||
|
for f in _unlinkFiles:
|
||||||
|
try:
|
||||||
|
os.unlink(f)
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def addTaskToWait(taks):
|
||||||
|
_tasksToWait.append(taks)
|
||||||
|
|
||||||
|
|
||||||
|
def waitForTasks():
|
||||||
|
for t in _tasksToWait:
|
||||||
|
try:
|
||||||
|
if hasattr(t, 'join'):
|
||||||
|
t.join()
|
||||||
|
elif hasattr(t, 'wait'):
|
||||||
|
t.wait()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def addExecBeforeExit(fnc):
|
||||||
|
_execBeforeExit.append(fnc)
|
||||||
|
|
||||||
|
|
||||||
|
def execBeforeExit():
|
||||||
|
for fnc in _execBeforeExit:
|
||||||
|
fnc.__call__()
|
||||||
|
|
||||||
|
|
||||||
|
def verifySignature(script, signature):
|
||||||
|
'''
|
||||||
|
Verifies with a public key from whom the data came that it was indeed
|
||||||
|
signed by their private key
|
||||||
|
param: public_key_loc Path to public key
|
||||||
|
param: signature String signature to be verified
|
||||||
|
return: Boolean. True if the signature is valid; False otherwise.
|
||||||
|
'''
|
||||||
|
# For signature checking
|
||||||
|
from Crypto.PublicKey import RSA
|
||||||
|
from Crypto.Signature import PKCS1_v1_5
|
||||||
|
from Crypto.Hash import SHA256
|
||||||
|
|
||||||
|
rsakey = RSA.importKey(PUBLIC_KEY)
|
||||||
|
signer = PKCS1_v1_5.new(rsakey)
|
||||||
|
digest = SHA256.new(script) # Script is "binary string" here
|
||||||
|
if signer.verify(digest, b64decode(signature)):
|
||||||
|
return True
|
||||||
|
return False
|
15
client-py3/full/src/update.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
|
||||||
|
function process {
|
||||||
|
for a in *.ui; do
|
||||||
|
pyuic4 $a -o `basename $a .ui`.py -x
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
pyrcc4 -py3 UDSResources.qrc -o UDSResources_rc.py
|
||||||
|
|
||||||
|
|
||||||
|
# process current directory ui's
|
||||||
|
process
|
||||||
|
|