tis-plantronics-hub
3.24.53463.35855-5
Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device.
7903 downloads
View on


Description
- package : tis-plantronics-hub
- version : 3.24.53463.35855-5
- architecture : all
- categories : Drivers,Utilities
- maintainer : WAPT Team, Tranquil IT, Jimmy PELÉ
- description : Plantronics Hub is a client application that allows users to control the settings on their Plantronics audio device.
- locale : all
- target_os : windows
- min_wapt_version : 1.8
- sources : https://www.poly.com/us/en/support/downloads-apps/hub-desktop
- installed_size :
- impacted_process : PLTHub, SpokesUpdateService, CsrDfu, PlantronicsLync2013COM
- description_fr : Plantronics Hub est une application client permettant aux utilisateurs finaux de contrôler les paramètres de leur périphérique audio Plantronics.
- description_pl :
- description_de :
- description_es :
- description_pt :
- description_it :
- description_nl :
- description_ru :
- editor : Plantronics, Inc.
- licence : Freeware
- signature_date : 2022-01-19T04:00:29.570706
- Homepage : https://www.poly.com/
Setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import platform
# Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = 'PlantronicsHubInstaller'
silent_args = '/install /quiet /norestart'
app_uninstallkey = ''
def install():
# Declaring local variables
package_version = control.get_software_version()
bin_name = glob.glob('*%s*.exe' % bin_contains)[0]
# Installing the package
print("Installing: %s" % bin_name)
install_exe_if_needed(bin_name,
silentflags=silent_args,
key=app_uninstallkey,
min_version=package_version,
)
def uninstall():
# Uninstalling the package
for uninstall in installed_softwares(name="Plantronics Hub Software"):
print('Removing: %s' % (uninstall['name']))
run(uninstall_cmd(uninstall['key']))
for uninstall in installed_softwares(name="OldMHUUninstallerMSI"):
print('Removing: %s' % (uninstall['name']))
run(uninstall_cmd(uninstall['key']))
break
for uninstall in installed_softwares(name="OldMHUUninstaller"):
print('Removing: %s' % (uninstall['name']))
run(uninstall_cmd(uninstall['key']))
break
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
bin_temp = 'PlantronicsHubInstaller.exe'
bin_name_sub = 'PlantronicsHubInstaller_%s.exe'
url_dl = 'https://www.poly.com/content/dam/www/software/PlantronicsHubInstaller.exe'
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if isfile(bin_temp):
remove_file(bin_temp)
if not isfile(bin_temp):
print("Downloading: %s" % bin_temp)
wget(url_dl, bin_temp, proxies=proxies)
# Getting version from binary and renaming binary
version = get_version_from_binary(bin_temp)
latest_bin = bin_name_sub % version
if not isfile(latest_bin):
print("Renaming binary with the version number of the binary (%s)" % latest_bin)
os.rename(bin_temp, latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
result = True
control.version = '%s-%s' % (Version(version), control.version.split('-', 1)[-1])
#control.set_software_version(Version(version))
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(version)
# Validating update-package-sources
return result
def get_proxies():
r"""Return system proxy with the urllib python library
>>> get_proxies()
{'http': 'http://srvproxy.ad.domain.lan:8080',
'https': 'http://srvproxy.ad.domain.lan:8080'}
"""
if platform.python_version_tuple()[0] == '3':
from urllib.request import getproxies
else:
from urllib import getproxies
return getproxies()
def get_proxies_from_wapt_console():
r"""Return proxy information from the current user WAPT console
>>> get_proxies_from_wapt_console()
{'http': 'http://srvproxy.ad.domain.lan:8080',
'https': 'http://srvproxy.ad.domain.lan:8080'}
"""
proxies = {}
if platform.system() == 'Windows':
waptconsole_ini_path = makepath(user_local_appdata(), 'waptconsole', 'waptconsole.ini')
else:
waptconsole_ini_path = makepath(user_home_directory(), '.config', 'waptconsole', 'waptconsole.ini')
if isfile(waptconsole_ini_path):
proxy_wapt = inifile_readstring(waptconsole_ini_path, 'global', 'http_proxy')
if proxy_wapt:
proxies = {'http': proxy_wapt, 'https': proxy_wapt}
return proxies
def get_version_from_binary(filename, property_name='ProductVersion'):
r""" Get installer version from file informations, for now, only exe and msi files are compatibles
Args:
filename (str): path to the file
property_name (str): selected property
Returns:
str: version number
"""
if filename.endswith('.msi'):
return get_msi_properties(filename)[property_name]
else:
return get_file_properties(filename)[property_name]
def remove_outdated_binaries(version, filename_contains=None, list_extensions=['exe','msi','deb','rpm','dmg','pkg']):
r"""Remove files based on the version contained in his filename
Args:
version (str): version number of keeped files
filename_contains (str or list of str): Part of the filename that must be contained (useful for distinguishing architecture and os)
list_extensions (str or list of str): file extensions of verified files
Returns:
None
.. versionadded:: 2.0
"""
if type(list_extensions) != list:
list_extensions = [list_extensions]
if filename_contains:
if type(filename_contains) != list:
filename_contains = [filename_contains]
list_extensions = ['.' + ext for ext in list_extensions if ext[0] != '.']
for file_ext in list_extensions:
for bin_in_dir in glob.glob('*%s' % file_ext):
if not version in bin_in_dir:
remove_file(bin_in_dir)
if filename_contains:
for filename_contain in filename_contains:
if not filename_contain in bin_in_dir:
remove_file(bin_in_dir)
Changelog
Changelog software url : https://www.plantronics.com/us/en/support/knowledge-base/kb-article-page?type=Product_Information__kav&lang=en_US&urlName=Hub-Release-Notes&t=All&k=hub%20release%20notes
No changelog.txt.