#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
**onlineUpdater.py**
**Platform:**
Windows, Linux, Mac Os X.
**Description:**
Defines the :class:`OnlineUpdater` Component Interface class and others online update related objects.
**Others:**
"""
#**********************************************************************************************************************
#*** Future imports.
#**********************************************************************************************************************
from __future__ import unicode_literals
#**********************************************************************************************************************
#*** External imports.
#**********************************************************************************************************************
import os
from PyQt4.QtCore import QUrl
from PyQt4.QtCore import Qt
from PyQt4.QtNetwork import QNetworkAccessManager
from PyQt4.QtNetwork import QNetworkRequest
#**********************************************************************************************************************
#*** Internal imports.
#**********************************************************************************************************************
import foundations.common
import foundations.exceptions
import foundations.strings
import foundations.verbose
import sibl_gui.components.core.database.operations
import sibl_gui.exceptions
import umbra.exceptions
from foundations.parsers import SectionsFileParser
from manager.qwidgetComponent import QWidgetComponentFactory
from sibl_gui.components.addons.onlineUpdater.remoteUpdater import ReleaseObject
from sibl_gui.components.addons.onlineUpdater.remoteUpdater import RemoteUpdater
from umbra.globals.constants import Constants
#**********************************************************************************************************************
#*** Module attributes.
#**********************************************************************************************************************
__author__ = "Thomas Mansencal"
__copyright__ = "Copyright (C) 2008 - 2014 - Thomas Mansencal"
__license__ = "GPL V3.0 - http://www.gnu.org/licenses/"
__maintainer__ = "Thomas Mansencal"
__email__ = "thomas.mansencal@gmail.com"
__status__ = "Production"
__all__ = ["LOGGER", "COMPONENT_UI_FILE", "REPOSITORY_URL", "OnlineUpdater"]
LOGGER = foundations.verbose.installLogger()
COMPONENT_UI_FILE = os.path.join(os.path.dirname(__file__), "ui", "Online_Updater.ui")
REPOSITORY_URL = "http://kelsolaar.hdrlabs.com/sIBL_GUI/Repository/"
#**********************************************************************************************************************
#*** Module classes and definitions.
#**********************************************************************************************************************
[docs]class OnlineUpdater(QWidgetComponentFactory(uiFile=COMPONENT_UI_FILE)):
"""
| Defines the :mod:`sibl_gui.components.addons.onlineUpdater.onlineUpdater` Component Interface class.
| This Component provides online updating capabilities to the Application available through options exposed in
the :mod:`sibl_gui.components.core.preferencesManager.preferencesManager` Component ui.
"""
def __init__(self, parent=None, name=None, *args, **kwargs):
"""
Initializes the class.
:param parent: Object parent.
:type parent: QObject
:param name: Component name.
:type name: unicode
:param \*args: Arguments.
:type \*args: \*
:param \*\*kwargs: Keywords arguments.
:type \*\*kwargs: \*\*
"""
LOGGER.debug("> Initializing '{0}()' class.".format(self.__class__.__name__))
super(OnlineUpdater, self).__init__(parent, name, *args, **kwargs)
# --- Setting class attributes. ---
self.deactivatable = True
self.__engine = None
self.__settings = None
self.__settingsSection = None
self.__preferencesManager = None
self.__templatesOutliner = None
self.__locationsBrowser = None
self.__ioDirectory = "remote/"
self.__repositoryUrl = REPOSITORY_URL
self.__releasesFileUrl = "sIBL_GUI_Releases.rc"
self.__networkAccessManager = None
self.__releasesFileReply = None
self.__remoteUpdater = None
self.__reportUpdateStatus = None
#******************************************************************************************************************
#*** Attributes properties.
#******************************************************************************************************************
@property
def engine(self):
"""
Property for **self.__engine** attribute.
:return: self.__engine.
:rtype: QObject
"""
return self.__engine
@engine.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def engine(self, value):
"""
Setter for **self.__engine** attribute.
:param value: Attribute value.
:type value: QObject
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "engine"))
@engine.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def engine(self):
"""
Deleter for **self.__engine** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "engine"))
@property
def settings(self):
"""
Property for **self.__settings** attribute.
:return: self.__settings.
:rtype: QSettings
"""
return self.__settings
@settings.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def settings(self, value):
"""
Setter for **self.__settings** attribute.
:param value: Attribute value.
:type value: QSettings
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "settings"))
@settings.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def settings(self):
"""
Deleter for **self.__settings** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "settings"))
@property
def settingsSection(self):
"""
Property for **self.__settingsSection** attribute.
:return: self.__settingsSection.
:rtype: unicode
"""
return self.__settingsSection
@settingsSection.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def settingsSection(self, value):
"""
Setter for **self.__settingsSection** attribute.
:param value: Attribute value.
:type value: unicode
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "settingsSection"))
@settingsSection.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def settingsSection(self):
"""
Deleter for **self.__settingsSection** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "settingsSection"))
@property
def preferencesManager(self):
"""
Property for **self.__preferencesManager** attribute.
:return: self.__preferencesManager.
:rtype: QWidget
"""
return self.__preferencesManager
@preferencesManager.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def preferencesManager(self, value):
"""
Setter for **self.__preferencesManager** attribute.
:param value: Attribute value.
:type value: QWidget
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "preferencesManager"))
@preferencesManager.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def preferencesManager(self):
"""
Deleter for **self.__preferencesManager** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "preferencesManager"))
@property
def templatesOutliner(self):
"""
Property for **self.__templatesOutliner** attribute.
:return: self.__templatesOutliner.
:rtype: QWidget
"""
return self.__templatesOutliner
@templatesOutliner.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def templatesOutliner(self, value):
"""
Setter for **self.__templatesOutliner** attribute.
:param value: Attribute value.
:type value: QWidget
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "templatesOutliner"))
@templatesOutliner.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def templatesOutliner(self):
"""
Deleter for **self.__templatesOutliner** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "templatesOutliner"))
@property
def locationsBrowser(self):
"""
Property for **self.__locationsBrowser** attribute.
:return: self.__locationsBrowser.
:rtype: QWidget
"""
return self.__locationsBrowser
@locationsBrowser.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def locationsBrowser(self, value):
"""
Setter for **self.__locationsBrowser** attribute.
:param value: Attribute value.
:type value: QWidget
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "locationsBrowser"))
@locationsBrowser.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def locationsBrowser(self):
"""
Deleter for **self.__locationsBrowser** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "locationsBrowser"))
@property
def ioDirectory(self):
"""
Property for **self.__ioDirectory** attribute.
:return: self.__ioDirectory.
:rtype: unicode
"""
return self.__ioDirectory
@ioDirectory.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def ioDirectory(self, value):
"""
Setter for **self.__ioDirectory** attribute.
:param value: Attribute value.
:type value: unicode
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "ioDirectory"))
@ioDirectory.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def ioDirectory(self):
"""
Deleter for **self.__ioDirectory** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "ioDirectory"))
@property
def repositoryUrl(self):
"""
Property for **self.__repositoryUrl** attribute.
:return: self.__repositoryUrl.
:rtype: unicode
"""
return self.__repositoryUrl
@repositoryUrl.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def repositoryUrl(self, value):
"""
Setter for **self.__repositoryUrl** attribute.
:param value: Attribute value.
:type value: unicode
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "repositoryUrl"))
@repositoryUrl.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def repositoryUrl(self):
"""
Deleter for **self.__repositoryUrl** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "repositoryUrl"))
@property
def releasesFileUrl(self):
"""
Property for **self.__releasesFileUrl** attribute.
:return: self.__releasesFileUrl.
:rtype: unicode
"""
return self.__releasesFileUrl
@releasesFileUrl.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def releasesFileUrl(self, value):
"""
Setter for **self.__releasesFileUrl** attribute.
:param value: Attribute value.
:type value: unicode
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "releasesFileUrl"))
@releasesFileUrl.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def releasesFileUrl(self):
"""
Deleter for **self.__releasesFileUrl** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "releasesFileUrl"))
@property
def networkAccessManager(self):
"""
Property for **self.__networkAccessManager** attribute.
:return: self.__networkAccessManager.
:rtype: QNetworkAccessManager
"""
return self.__networkAccessManager
@networkAccessManager.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def networkAccessManager(self, value):
"""
Setter for **self.__networkAccessManager** attribute.
:param value: Attribute value.
:type value: QNetworkAccessManager
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "networkAccessManager"))
@networkAccessManager.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def networkAccessManager(self):
"""
Deleter for **self.__networkAccessManager** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "networkAccessManager"))
@property
def releaseReply(self):
"""
Property for **self.__releasesFileReply** attribute.
:return: self.__releasesFileReply.
:rtype: QNetworkReply
"""
return self.__releasesFileReply
@releaseReply.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def releaseReply(self, value):
"""
Setter for **self.__releasesFileReply** attribute.
:param value: Attribute value.
:type value: QNetworkReply
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "releaseReply"))
@releaseReply.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def releaseReply(self):
"""
Deleter for **self.__releasesFileReply** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "releaseReply"))
@property
def remoteUpdater(self):
"""
Property for **self.__remoteUpdater** attribute.
:return: self.__remoteUpdater.
:rtype: object
"""
return self.__remoteUpdater
@remoteUpdater.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def remoteUpdater(self, value):
"""
Setter for **self.__remoteUpdater** attribute.
:param value: Attribute value.
:type value: object
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "remoteUpdater"))
@remoteUpdater.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def remoteUpdater(self):
"""
Deleter for **self.__remoteUpdater** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "remoteUpdater"))
@property
def reportUpdateStatus(self):
"""
Property for **self.__reportUpdateStatus** attribute.
:return: self.__reportUpdateStatus.
:rtype: bool
"""
return self.__reportUpdateStatus
@reportUpdateStatus.setter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
def reportUpdateStatus(self, value):
"""
Setter for **self.__reportUpdateStatus** attribute.
:param value: Attribute value.
:type value: bool
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is read only!".format(self.__class__.__name__, "reportUpdateStatus"))
@reportUpdateStatus.deleter
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(foundations.exceptions.ProgrammingError)
[docs] def reportUpdateStatus(self):
"""
Deleter for **self.__reportUpdateStatus** attribute.
"""
raise foundations.exceptions.ProgrammingError(
"{0} | '{1}' attribute is not deletable!".format(self.__class__.__name__, "reportUpdateStatus"))
#******************************************************************************************************************
#*** Class methods.
#******************************************************************************************************************
[docs] def activate(self, engine):
"""
Activates the Component.
:param engine: Engine to attach the Component to.
:type engine: QObject
:return: Method success.
:rtype: bool
"""
LOGGER.debug("> Activating '{0}' Component.".format(self.__class__.__name__))
self.__engine = engine
self.__settings = self.__engine.settings
self.__settingsSection = self.name
self.__preferencesManager = self.__engine.componentsManager["factory.preferencesManager"]
self.__templatesOutliner = self.__engine.componentsManager["core.templatesOutliner"]
self.__locationsBrowser = self.__engine.componentsManager["addons.locationsBrowser"]
self.__ioDirectory = os.path.join(self.__engine.userApplicationDataDirectory,
Constants.ioDirectory, self.__ioDirectory)
not foundations.common.pathExists(self.__ioDirectory) and os.makedirs(self.__ioDirectory)
self.__networkAccessManager = QNetworkAccessManager()
self.__reportUpdateStatus = True
self.activated = True
return True
[docs] def deactivate(self):
"""
Deactivates the Component.
:return: Method success.
:rtype: bool
"""
LOGGER.debug("> Deactivating '{0}' Component.".format(self.__class__.__name__))
self.__engine = None
self.__settings = None
self.__settingsSection = None
self.__preferencesManager = None
self.__templatesOutliner = None
self.__locationsBrowser = None
self.__ioDirectory = os.path.basename(os.path.abspath(self.__ioDirectory))
self.__networkAccessManager = None
self.__reportUpdateStatus = None
self.activated = False
return True
[docs] def initializeUi(self):
"""
Initializes the Component ui.
:return: Method success.
:rtype: bool
"""
LOGGER.debug("> Initializing '{0}' Component ui.".format(self.__class__.__name__))
self.__engine.parameters.deactivateWorkerThreads and \
LOGGER.info(
"{0} | 'OnStartup' Online Updater worker thread deactivated by '{1}' command line parameter value!".format(
self.__class__.__name__, "deactivateWorkerThreads"))
self.__Check_For_New_Releases_On_Startup_checkBox_setUi()
self.__Ignore_Non_Existing_Templates_checkBox_setUi()
# Signals / Slots.
self.Check_For_New_Releases_pushButton.clicked.connect(self.__Check_For_New_Releases_pushButton__clicked)
self.Check_For_New_Releases_On_Startup_checkBox.stateChanged.connect(
self.__Check_For_New_Releases_On_Startup_checkBox__stateChanged)
self.Ignore_Non_Existing_Templates_checkBox.stateChanged.connect(
self.__Ignore_Non_Existing_Templates_checkBox__stateChanged)
self.initializedUi = True
return True
[docs] def uninitializeUi(self):
"""
Uninitializes the Component ui.
:return: Method success.
:rtype: bool
"""
LOGGER.debug("> Uninitializing '{0}' Component ui.".format(self.__class__.__name__))
# Signals / Slots.
self.Check_For_New_Releases_pushButton.clicked.disconnect(self.__Check_For_New_Releases_pushButton__clicked)
self.Check_For_New_Releases_On_Startup_checkBox.stateChanged.disconnect(
self.__Check_For_New_Releases_On_Startup_checkBox__stateChanged)
self.Ignore_Non_Existing_Templates_checkBox.stateChanged.disconnect(
self.__Ignore_Non_Existing_Templates_checkBox__stateChanged)
self.initializedUi = False
return True
[docs] def onStartup(self):
"""
Defines the slot triggered on Framework startup.
:return: Method success.
:rtype: bool
"""
LOGGER.debug("> Calling '{0}' Component Framework 'onStartup' method.".format(self.__class__.__name__))
self.__reportUpdateStatus = False
if not self.__engine.parameters.deactivateWorkerThreads and \
self.Check_For_New_Releases_On_Startup_checkBox.isChecked():
self.checkForNewReleases()
return True
def __Check_For_New_Releases_On_Startup_checkBox_setUi(self):
"""
Sets the **Check_For_New_Releases_On_Startup_checkBox** Widget.
"""
# Adding settings key if it doesn't exists.
self.__settings.getKey(self.__settingsSection, "checkForNewReleasesOnStartup").isNull() and \
self.__settings.setKey(self.__settingsSection, "checkForNewReleasesOnStartup", Qt.Checked)
checkForNewReleasesOnStartup = self.__settings.getKey(self.__settingsSection, "checkForNewReleasesOnStartup")
LOGGER.debug("> Setting '{0}' with value '{1}'.".format("Check_For_New_Releases_On_Startup_checkBox",
foundations.common.getFirstItem(checkForNewReleasesOnStartup.toInt())))
self.Check_For_New_Releases_On_Startup_checkBox.setCheckState(
foundations.common.getFirstItem(checkForNewReleasesOnStartup.toInt()))
def __Check_For_New_Releases_On_Startup_checkBox__stateChanged(self, state):
"""
Defines the slot triggered by **Check_For_New_Releases_On_Startup_checkBox** Widget when state changed.
:param state: Checkbox state.
:type state: int
"""
LOGGER.debug("> Check for new releases on startup state: '{0}'.".format(state))
self.__settings.setKey(self.__settingsSection, "checkForNewReleasesOnStartup", state)
def __Ignore_Non_Existing_Templates_checkBox_setUi(self):
"""
Sets the **Ignore_Non_Existing_Templates_checkBox** Widget.
"""
# Adding settings key if it doesn't exists.
self.__settings.getKey(self.__settingsSection, "ignoreNonExistingTemplates").isNull() and \
self.__settings.setKey(self.__settingsSection, "ignoreNonExistingTemplates", Qt.Checked)
ignoreNonExistingTemplates = self.__settings.getKey(self.__settingsSection, "ignoreNonExistingTemplates")
LOGGER.debug("> Setting '{0}' with value '{1}'.".format("Ignore_Non_Existing_Templates_checkBox",
foundations.common.getFirstItem(ignoreNonExistingTemplates.toInt())))
self.Ignore_Non_Existing_Templates_checkBox.setCheckState(
foundations.common.getFirstItem(ignoreNonExistingTemplates.toInt()))
def __Ignore_Non_Existing_Templates_checkBox__stateChanged(self, state):
"""
Defines the slot triggered by **Ignore_Non_Existing_Templates_checkBox** Widget when state changed.
:param state: Checkbox state.
:type state: int
"""
LOGGER.debug("> Ignore non existing Templates state: '{0}'.".format(state))
self.__settings.setKey(self.__settingsSection, "ignoreNonExistingTemplates", state)
def __Check_For_New_Releases_pushButton__clicked(self, checked):
"""
Defines the slot triggered by **Check_For_New_Releases_pushButton** Widget when clicked.
:param checked: Checked state.
:type checked: bool
"""
self.checkForNewReleasesUi()
# Oncilla: Statement commented by auto-documentation process:
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(sibl_gui.exceptions.NetworkError)
def __releasesFileReply__finished(self):
"""
Defines the slot triggered by the releases file reply when finished.
"""
self.__engine.stopProcessing()
if not self.__releasesFileReply.error():
content = []
while not self.__releasesFileReply.atEnd ():
content.append(foundations.strings.toString(self.__releasesFileReply.readLine()))
LOGGER.debug("> Parsing releases file content.")
sectionsFileParser = SectionsFileParser()
sectionsFileParser.content = content
sectionsFileParser.parse()
releases = {}
for remoteObject in sectionsFileParser.sections:
if remoteObject != Constants.applicationName:
databaseTemplates = \
sibl_gui.components.core.database.operations.filterTemplates("^{0}$".format(remoteObject), "name")
databaseTemplate = foundations.common.getFirstItem([foundations.common.getFirstItem(databaseTemplate)
for databaseTemplate in sorted(((databaseTemplate, databaseTemplate.release)
for databaseTemplate in databaseTemplates),
reverse=True,
key=lambda x:(foundations.strings.getVersionRank(x[1])))])
if not self.__engine.parameters.databaseReadOnly:
if databaseTemplate:
if databaseTemplate.release != sectionsFileParser.getValue("Release", remoteObject):
releases[remoteObject] = ReleaseObject(name=remoteObject,
repositoryVersion=sectionsFileParser.getValue(
"Release", remoteObject),
localVersion=databaseTemplate.release,
type=sectionsFileParser.getValue("Type",
remoteObject),
url=sectionsFileParser.getValue("Url",
remoteObject),
comment=sectionsFileParser.getValue("Comment",
remoteObject))
else:
if not self.Ignore_Non_Existing_Templates_checkBox.isChecked():
releases[remoteObject] = ReleaseObject(name=remoteObject,
repositoryVersion=sectionsFileParser.getValue(
"Release", remoteObject),
localVersion=None,
type=sectionsFileParser.getValue("Type",
remoteObject),
url=sectionsFileParser.getValue("Url",
remoteObject),
comment=sectionsFileParser.getValue("Comment",
remoteObject))
else:
LOGGER.info("{0} | '{1}' repository remote object skipped by '{2}' command line parameter value!".format(
self.__class__.__name__, remoteObject, "databaseReadOnly"))
else:
if Constants.version != sectionsFileParser.getValue("Release", remoteObject):
releases[remoteObject] = ReleaseObject(name=remoteObject,
repositoryVersion=sectionsFileParser.getValue("Release",
remoteObject),
localVersion=Constants.version,
url=sectionsFileParser.getValue("Url", remoteObject),
type=sectionsFileParser.getValue("Type", remoteObject),
comment=None)
if releases:
LOGGER.debug("> Initializing Remote Updater.")
self.__remoteUpdater = RemoteUpdater(self, releases, Qt.Window)
self.__remoteUpdater.show()
else:
self.__reportUpdateStatus and self.__engine.notificationsManager.notify(
"{0} | '{1}' is up to date!".format(self.__class__.__name__, Constants.applicationName))
else:
raise sibl_gui.exceptions.NetworkError("{0} | QNetworkAccessManager error code: '{1}'.".format(
self.__class__.__name__, self.__releasesFileReply.error()))
def __getReleasesFile(self, url):
"""
Gets the releases file.
"""
LOGGER.debug("> Downloading '{0}' releases file.".format(url.path()))
self.__engine.startProcessing("Retrieving Releases File ...")
self.__releasesFileReply = self.__networkAccessManager.get(QNetworkRequest(url))
self.__releasesFileReply.finished.connect(self.__releasesFileReply__finished)
# Oncilla: Statement commented by auto-documentation process:
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(umbra.exceptions.notifyExceptionHandler,
# Oncilla: Statement commented by auto-documentation process: sibl_gui.exceptions.NetworkError,
# Oncilla: Statement commented by auto-documentation process: Exception)
[docs] def checkForNewReleasesUi(self):
"""
Checks for new releases.
:return: Method success.
:rtype: bool
:note: May require user interaction.
"""
if not self.__networkAccessManager.networkAccessible():
raise sibl_gui.exceptions.NetworkError("{0} | Network is not accessible!".format(self.__class__.__name__))
self.__reportUpdateStatus = True
if self.checkForNewReleases():
return True
else:
raise Exception("{0} | Exception raised while checking for new releases!".format(self.__class__.__name__))
# Oncilla: Statement commented by auto-documentation process:
# Oncilla: Statement commented by auto-documentation process: @foundations.exceptions.handleExceptions(sibl_gui.exceptions.NetworkError, Exception)
[docs] def checkForNewReleases(self):
"""
Checks for new releases.
:return: Method success.
:rtype: bool
"""
if not self.__networkAccessManager.networkAccessible():
raise sibl_gui.exceptions.NetworkError("{0} | Network is not accessible!".format(self.__class__.__name__))
self.__getReleasesFile(QUrl(os.path.join(self.__repositoryUrl, self.__releasesFileUrl)))
return True