# -*- coding: utf-8 -*- from setuphelpers import * import json uninstallkey = [] key='FusionInventory-Agent' def install(): print('Opening variable file') variables = json.loads(open(makepath(programfiles32,'wapt','variables.json'),'r').read()) if not 'fusinv_server' in variables: error('Missing fusinv_server variable') parameters = '/S /acceptlicense /server="%s" /execmode=service /runnow' % (variables['fusinv_server']) if 'fusinv_user' in variables and 'fusinv_pass' in variables: parameters = parameters + ' /user="%s" /password="%s"' % (variables['fusinv_user'],variables['fusinv_pass']) print('installing Fusion inventory agent') versionpaquet = control['version'].split('-',1)[0] if iswin64(): install_exe_if_needed("fusioninventory-agent_windows-x64_%s.exe" % versionpaquet,parameters,key=key,min_version=versionpaquet) else: install_exe_if_needed("fusioninventory-agent_windows-x86_%s.exe" % versionpaquet,parameters,key=key,min_version=versionpaquet) def update_package(): import BeautifulSoup,requests,re from waptpackage import PackageEntry verify=True pe = PackageEntry() pe.load_control_from_wapt(os.getcwd()) current_version = pe['version'].split('-',1)[0] verify=True url = 'https://github.com/fusioninventory/fusioninventory-agent/releases' import requests,BeautifulSoup page = requests.get(url + '/latest',headers={'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64)'},verify=verify).text bs = BeautifulSoup.BeautifulSoup(page) bs_raw_string = str(bs.find('span',{'class':'css-truncate-target'}).text) version = bs_raw_string url64 = url + "/download/" + version + "/fusioninventory-agent_windows-x64_%s.exe" % version url86 = url + "/download/" + version + "/fusioninventory-agent_windows-x86_%s.exe" % version filenamex86 = "fusioninventory-agent_windows-x86_%s.exe" % version filenamex64 = "fusioninventory-agent_windows-x64_%s.exe" % version if not isfile( filenamex64 ) : wget( url64 ) if not isfile( filenamex86 ) : wget( url86 ) for fileexe in glob.glob('fusioninventory-agent_windows-x64*.exe'): if fileexe != filenamex64 : print('Delete ' + fileexe) remove_file(fileexe) for fileexe in glob.glob('fusioninventory-agent_windows-x86*.exe'): if fileexe != filenamex86 : print('Delete ' + fileexe) remove_file(fileexe) if not isfile(filenamex64): print('Download ' + url64) wget(url64,filenamex64) if not isfile(filenamex86): print('Download ' + url86) wget(url86,filenamex86) if __name__ == '__main__': update_package()