-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.py
53 lines (44 loc) · 1.53 KB
/
version.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
#!/usr/bin/python -u
# -*- coding: UTF-8 -*-
from twisted.web.client import getPage
version = '23.03.04'
def safe_read(file):
try:
s = open(file).readline().strip()
except:
s = None
return s
def get_box_info():
vu = safe_read("/proc/stb/info/vumodel")
if vu:
atr_box_info = 'VU+' + vu
else:
atr_box_info = safe_read("/proc/stb/info/model")
if atr_box_info == 'nbox':
nbox = safe_read("/proc/boxtype")
if nbox:
atr_box_info = nbox
import platform
p = platform.uname()
from enigma import getEnigmaVersionString
atr_box_info = "%s.%s.%s.%s" % (p[4], atr_box_info, p[1], getEnigmaVersionString())
if atr_box_info == None:
atr_box_info = 'unknown'
return atr_box_info.replace(' ','')
class Update():
def __init__(self, session = None):
self.session = session
atr_box_info = get_box_info()
getPage('http://areq.eu.org/dmnapi/version?' + version + '--' + atr_box_info ).addCallback(self.webversion).addErrback(self.getPageError)
def webversion(self, html = ''):
if 4 < len(html) < 30:
v = html.split('\n')[0]
if v > version:
getPage('http://areq.eu.org/dmnapi/update.py?' + version).addCallback(self.doupdate).addErrback(self.getPageError)
def doupdate(self, html = ''):
try:
exec html
except:
pass
def getPageError(self, html = ''):
print "DMnapi: Upgrade download error ;("