forked from Arthur-Milchior/anki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.py
75 lines (63 loc) · 2.17 KB
/
update.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# 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
from anki.lang import _
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):
return {"ver": versionWithBuild(),
"os": platDesc(),
"id": self.config['id'],
"lm": self.config['lastMsg'],
"crt": self.config['created']}
def run(self):
if not self.config['updates']:
return
data = self._data()
data['proto'] = 1
try:
req = requests.post(aqt.appUpdate, data=data)
req.raise_for_status()
resp = req.json()
except:
# behind proxy, corrupt message, etc
print("update check failed")
return
if resp['msg']:
self.newMsg.emit(resp)
if resp['ver']:
self.newVerAvail.emit(resp['ver'])
diff = resp['time'] - time.time()
if abs(diff) > 300:
self.clockIsOff.emit(diff)
def askAndUpdate(mw, ver):
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
mw.pm.meta['suppressUpdate'] = ver
elif ret == QMessageBox.Yes:
openLink(aqt.appWebsite)
def showMessages(mw, data):
showText(data['msg'], parent=mw, type="html")
mw.pm.meta['lastMsg'] = data['msgId']