Ad5001
c15da47743
All checks were successful
continuous-integration/drone/push Build is passing
Also implementing file type association for Windows.
82 lines
3.3 KiB
Python
82 lines
3.3 KiB
Python
"""
|
|
* LogarithmPlotter - Create graphs with logarithm scales.
|
|
* Copyright (C) 2021 Ad5001
|
|
*
|
|
* 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
from PySide2.QtCore import Qt, QRunnable, QThreadPool, QThread, QObject, Signal
|
|
from urllib.request import urlopen
|
|
from urllib.error import HTTPError, URLError
|
|
|
|
class UpdateInformation(QObject):
|
|
got_update_info = Signal(bool, str, bool)
|
|
|
|
class UpdateCheckerRunnable(QRunnable):
|
|
def __init__(self, current_version, callback):
|
|
QRunnable.__init__(self)
|
|
self.current_version = current_version
|
|
self.callback = callback
|
|
|
|
def run(self):
|
|
msg_text = "Unknown update error."
|
|
show_alert = True
|
|
update_available = False
|
|
try:
|
|
# Fetching version
|
|
r = urlopen("https://api.ad5001.eu/update/v1/LogarithmPlotter")
|
|
lines = r.readlines()
|
|
r.close()
|
|
# Parsing version
|
|
version = "".join(map(chr, lines[0])).strip() # Converts byte to string.
|
|
version_tuple = version.split(".")
|
|
is_version_newer = False
|
|
if "dev" in self.current_version:
|
|
# We're on a dev version
|
|
current_version_tuple = self.current_version.split(".")[:-1] # Removing the dev0+git bit.
|
|
is_version_newer = version_tuple >= current_version_tuple # If equals, that means we got out of testing phase.
|
|
else:
|
|
current_version_tuple = self.current_version.split(".")
|
|
is_version_newer = version_tuple > current_version_tuple
|
|
if is_version_newer:
|
|
msg_text = "An update for LogarithPlotter (v" + version + ") is available."
|
|
update_available = True
|
|
else:
|
|
show_alert = False
|
|
msg_text = "No update available."
|
|
|
|
except HTTPError as e:
|
|
msg_text = "Could not fetch update information: Server error " + str(e.code) + "."
|
|
except URLError as e:
|
|
msg_text = "Could not fetch update information: Could not connect to the update server. " + str(e.reason) + "."
|
|
print(msg_text)
|
|
self.callback.got_update_info.emit(show_alert, msg_text,update_available)
|
|
|
|
def check_for_updates(current_version, window):
|
|
"""
|
|
Checks for updates in the background, and sends an alert with information.
|
|
"""
|
|
|
|
def cb(show_alert, msg_text, update_available):
|
|
pass
|
|
if show_alert:
|
|
window.showAlert(msg_text)
|
|
if update_available:
|
|
window.showUpdateMenu()
|
|
|
|
update_info = UpdateInformation()
|
|
update_info.got_update_info.connect(cb)
|
|
|
|
runnable = UpdateCheckerRunnable(current_version, update_info)
|
|
QThreadPool.globalInstance().start(runnable)
|