anki/qt/aqt/update.py

79 lines
2.2 KiB
Python
Raw Normal View History

2019-02-05 04:59:03 +01:00
# Copyright: Ankitects Pty Ltd and contributors
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import time
import requests
import aqt
2019-03-04 02:58:34 +01:00
from anki.lang import _
2019-12-20 10:19:03 +01:00
from anki.utils import platDesc, versionWithBuild
from aqt.qt import *
from aqt.utils import openLink, showText
class LatestVersionFinder(QThread):
newVerAvail = pyqtSignal(str)
newMsg = pyqtSignal(dict)
clockIsOff = pyqtSignal(float)
def __init__(self, main):
QThread.__init__(self)
self.main = main
self.config = main.pm.meta
def _data(self):
2019-12-23 01:34:10 +01:00
d = {
"ver": versionWithBuild(),
"os": platDesc(),
"id": self.config["id"],
"lm": self.config["lastMsg"],
"crt": self.config["created"],
}
return d
def run(self):
2019-12-23 01:34:10 +01:00
if not self.config["updates"]:
return
d = self._data()
2019-12-23 01:34:10 +01:00
d["proto"] = 1
try:
r = requests.post(aqt.appUpdate, data=d)
r.raise_for_status()
resp = r.json()
except:
# behind proxy, corrupt message, etc
print("update check failed")
return
2019-12-23 01:34:10 +01:00
if resp["msg"]:
self.newMsg.emit(resp)
2019-12-23 01:34:10 +01:00
if resp["ver"]:
self.newVerAvail.emit(resp["ver"])
diff = resp["time"] - time.time()
if abs(diff) > 300:
self.clockIsOff.emit(diff)
2019-12-23 01:34:10 +01:00
def askAndUpdate(mw, ver):
2019-12-23 01:34:10 +01:00
baseStr = _("""<h1>Anki Updated</h1>Anki %s has been released.<br><br>""") % ver
msg = QMessageBox(mw)
msg.setStandardButtons(QMessageBox.Yes | QMessageBox.No)
msg.setIcon(QMessageBox.Information)
msg.setText(baseStr + _("Would you like to download it now?"))
button = QPushButton(_("Ignore this update"))
msg.addButton(button, QMessageBox.RejectRole)
msg.setDefaultButton(QMessageBox.Yes)
ret = msg.exec_()
if msg.clickedButton() == button:
# ignore this update
2019-12-23 01:34:10 +01:00
mw.pm.meta["suppressUpdate"] = ver
elif ret == QMessageBox.Yes:
openLink(aqt.appWebsite)
2019-12-23 01:34:10 +01:00
def showMessages(mw, data):
2019-12-23 01:34:10 +01:00
showText(data["msg"], parent=mw, type="html")
mw.pm.meta["lastMsg"] = data["msgId"]