VuplusEvent : add 'MSA' to the first letters of SN
[vuplus_dvbapp] / lib / python / Plugins / Extensions / VuplusEvent / plugin.py
1 from Screens.Screen import Screen
2 from Components.ActionMap import ActionMap
3 from Components.ConfigList import ConfigListScreen
4 from Components.config import config, getConfigListEntry, ConfigSubsection, ConfigSelection, ConfigText, ConfigInteger,NoSave
5 from Components.Sources.StaticText import StaticText
6 from Components.Label import Label
7 from Plugins.Plugin import PluginDescriptor
8 from Tools.Directories import resolveFilename, SCOPE_PLUGINS, fileExists
9 from Screens.MessageBox import MessageBox
10 from enigma import eTimer
11 import vuplusauthenticity
12 import os
13 import socket
14 import urllib2
15
16 default_email_address = "Please input your E-mail address"
17 config.plugins.vuplusauthenticity = ConfigSubsection()
18 config.plugins.vuplusauthenticity.sn_a = NoSave(ConfigSelection(default = "MSA", choices = [ ("MSA", _("MSA")), ("MA", _("MA")), ("MB", _("MB")), ("MC", _("MC")), ("MD", _("MD")), ("ME", _("ME")), ("MF", _("MF")), ("MG", _("MG")), ("MH", _("MH"))] ))
19 config.plugins.vuplusauthenticity.sn_b = NoSave(ConfigInteger(default = 0,  limits = (1, 999999999)))
20 config.plugins.vuplusauthenticity.email = NoSave(ConfigText(default = default_email_address, visible_width = 50, fixed_size = False))
21
22 GENUINE_MESSAGES={
23                 -6 : "UNEXPECTED ERROR(2).",
24                 -5 : "INVALID SERIAL NUMBER.",
25                 -4 : " Connect to server failed, \nplease check your network configuration and retry.",
26                 -3 : "UNEXPECTED ERROR(1).",
27                 -2 : "DEVICE OPEN ERROR.",
28                 -1 : "AUTHENTICATION FAILED.",
29                 0 : "AUTHENTICATION SUCCESS."
30 }
31
32 class VuplusAuthenticity(Screen, ConfigListScreen):
33         def __init__(self,session):
34                 if session.desktop.size().width() > 720:
35                         self.skin = """
36                         <screen name="VuplusAuthenticity" position="center,center" size="800,370" title="Return the Love Event (only for genuine box)">
37                         <ePixmap pixmap="Vu_HD/buttons/red.png" position="250,15" size="25,25" alphatest="on" />
38                         <ePixmap pixmap="Vu_HD/buttons/green.png" position="435,15" size="25,25" alphatest="on" />
39                         <widget source="key_red" render="Label" position="265,15" zPosition="1" size="140,25" font="Regular;24" halign="center" valign="center" transparent="1" />
40                         <widget source="key_green" render="Label" position="450,15" zPosition="1" size="140,25" font="Regular;24" halign="center" valign="center" transparent="1" />
41                         <widget name="config" zPosition="2" position="80,70" size="640,80" scrollbarMode="showOnDemand" transparent="1" />
42                         <widget name="text1" position="0,165" size="800,90" font="Regular;32" halign="center" valign="center"/>
43                         <widget name="text2" position="100,260" size="600,110" font="Regular;24" halign="center" valign="center"/>
44                         </screen>"""
45
46                 else:
47                         self.skin="""<screen name="VuplusAuthenticity" position="center,center" size="600,320" title="Return the Love Event (only for genuine box)">
48                         <ePixmap pixmap="Vu_HD/buttons/red.png" position="170,15" size="25,25" alphatest="on" />
49                         <ePixmap pixmap="Vu_HD/buttons/green.png" position="355,15" size="25,25" alphatest="on" />
50                         <widget source="key_red" render="Label" position="185,15" zPosition="1" size="140,25" font="Regular;24" halign="center" valign="center" transparent="1" />
51                         <widget source="key_green" render="Label" position="370,15" zPosition="1" size="140,25" font="Regular;24" halign="center" valign="center" transparent="1" />
52                         <widget name="config" zPosition="2" position="10,70" size="580,80" scrollbarMode="showOnDemand" transparent="1" />
53                         <widget name="text1" position="10,160" size="580,50" font="Regular;32" halign="center" valign="center"/>
54                         <widget name="text2" position="10,220" size="580,100" font="Regular;18" halign="center" valign="center"/>
55                         </screen>"""
56                 Screen.__init__(self,session)
57                 self.session = session
58                 self["shortcuts"] = ActionMap(["ShortcutActions", "SetupActions" ],
59                 {
60                         "ok": self.Start,
61                         "cancel": self.keyExit,
62                         "red": self.keyExit,
63                         "green": self.Start,
64                 }, -2)
65                 self.genuine = None
66                 self.list = []
67                 ConfigListScreen.__init__(self, self.list, session = self.session)
68                 self["key_red"] = StaticText(_("Exit"))
69                 self["key_green"] = StaticText(_("Start"))
70                 self["text1"]=Label("Press green button to start")
71                 self["text2"]=Label("With this plugin you can verify the authenticity of your Vu+.\nFor more information, please visit our website \nhttp://vuplus.com")
72                 self.createSetup()
73                 self.onLayoutFinish.append(self.checkKernelVer)
74                 self.checkTimer = eTimer()
75                 self.checkTimer.callback.append(self.invalidKVer)
76                 self.requestauth_timer = eTimer()
77                 self.requestauth_timer.callback.append(self.requestauth)
78
79         def checkKernelVer(self):
80                 KVer = os.uname()[2]
81                 if float(KVer[:3]) < 3.1:
82                         self.checkTimer.start(0,True)
83
84         def invalidKVer(self):
85                 self.session.openWithCallback(self.close, MessageBox, _("For use this plugin, you must update the kernel version to 3.1 or later"), MessageBox.TYPE_ERROR)
86
87         def createSetup(self):
88                 self.list = []
89                 self.sn_aEntry = getConfigListEntry(_("1-1. Serial Number (The first two or three letters of SN)"), config.plugins.vuplusauthenticity.sn_a)
90                 self.sn_bEntry = getConfigListEntry(_("1-2. Serial Number (The remaining numbers of SN)"), config.plugins.vuplusauthenticity.sn_b)
91                 self.emailEntry = getConfigListEntry(_("2. Contact"), config.plugins.vuplusauthenticity.email)
92                 self.list.append( self.sn_aEntry )
93                 self.list.append( self.sn_bEntry )
94                 self.list.append( self.emailEntry )
95                 self["config"].list = self.list
96                 self["config"].l.setList(self.list)
97
98         def confirmValidSN(self):
99                 sn = str(config.plugins.vuplusauthenticity.sn_b.value)
100                 if len(sn) > 9:
101                         return False
102                 elif sn == '0':
103                         return False
104                 else:
105                         while(len(sn)<9):
106                                 sn = '0'+sn
107                         if int(sn[:2]) not in range(28):
108                                 return False
109                         elif int(sn[2:4]) not in range(1,53):
110                                 return False
111                         elif int(sn[-5:]) == 0:
112                                 return False
113                         else:
114                                 return True
115
116         def displayResult(self, ret = -5):
117                 global GENUINE_MESSAGES
118                 self["text1"].setText(GENUINE_MESSAGES[ret])
119                 self["key_green"].text = _("Restart")
120
121         def Start(self):
122                 self["text1"].setText("WAITING......")
123                 msg = "Please note that you agree to send software information of the box by applying the event.\nThe collected data will be used in a form that does not personally identify you."
124                 self.session.openWithCallback(self.userConfirmCallback, MessageBoxGenuine, _(msg), MessageBox.TYPE_YESNO)
125
126         def userConfirmCallback(self,ret):
127                 if ret:
128                         self.requestauth_timer.start(0,True)
129                 else:
130                         self["text1"].setText("Press green button to start")
131
132         def getModel(self):
133                 if fileExists("/proc/stb/info/vumodel"):
134                         vumodel = open("/proc/stb/info/vumodel")
135                         info=vumodel.read().strip()
136                         vumodel.close()
137                         return info
138                 else:
139                         return "unknown"
140
141         def requestauth(self):
142                 if(not self.confirmValidSN()):
143                         self.displayResult(-5)
144                         return
145                 sn_b = str(config.plugins.vuplusauthenticity.sn_b.value)
146                 while(len(sn_b)<9):
147                         sn_b = '0'+sn_b
148                 serial_number = config.plugins.vuplusauthenticity.sn_a.value + sn_b
149                 model =self.getModel()
150                 email = config.plugins.vuplusauthenticity.email.value
151                 if len(email) == 0 or email == default_email_address:
152                         email = "none"
153                 try:
154                         ret=vuplusauthenticity.requestauth(serial_number, model, email)
155                         self.displayResult(ret)
156                 except :
157                         self.displayResult(-6)
158
159         def keyExit(self):
160                 self.close()
161
162 class MessageBoxGenuine(MessageBox):
163         skin = """
164                 <screen position="center,center" size="600,10" title="Message">
165                 <widget name="text" position="65,8" size="420,0" font="Regular;22" />
166                 <widget name="ErrorPixmap" pixmap="Vu_HD/icons/input_error.png" position="5,5" size="53,53" alphatest="blend" />
167                 <widget name="QuestionPixmap" pixmap="Vu_HD/icons/input_question.png" position="5,5" size="53,53" alphatest="blend" />
168                 <widget name="InfoPixmap" pixmap="Vu_HD/icons/input_info.png" position="5,5" size="53,53" alphatest="blend" />
169                 <widget name="list" position="100,100" size="380,375" transparent="1" backgroundColor="darkgrey" />
170                 <applet type="onLayoutFinish">
171 # this should be factored out into some helper code, but currently demonstrates applets.
172 from enigma import eSize, ePoint
173
174 orgwidth = self.instance.size().width()
175 orgpos = self.instance.position()
176 textsize = self[&quot;text&quot;].getSize()
177
178 # y size still must be fixed in font stuff...
179 textsize = (textsize[0] + 50, textsize[1] + 50)
180 offset = 0
181 if self.type == self.TYPE_YESNO:
182         offset = 60
183 wsizex = textsize[0] + 60
184 wsizey = textsize[1] + offset
185 if (280 &gt; wsizex):
186         wsizex = 280
187 wsize = (wsizex, wsizey)
188
189
190 # resize
191 self.instance.resize(eSize(*wsize))
192
193 # resize label
194 self[&quot;text&quot;].instance.resize(eSize(*textsize))
195
196 # move list
197 listsize = (wsizex, 50)
198 self[&quot;list&quot;].instance.move(ePoint(0, textsize[1]))
199 self[&quot;list&quot;].instance.resize(eSize(*listsize))
200
201 # center window
202 newwidth = wsize[0]
203 self.instance.move(ePoint(orgpos.x() + (orgwidth - newwidth)/2, orgpos.y()))
204                 </applet>
205         </screen>"""
206         def __init__(self, session, text, type = MessageBox.TYPE_YESNO, timeout = -1, close_on_any_key = False, default = True, enable_input = True, msgBoxID = None):
207                 MessageBox.__init__(self,session, text, type, timeout, close_on_any_key, default, enable_input,msgBoxID)
208                 if type == MessageBox.TYPE_YESNO:
209                         self.list = [ (_("Agree"), 0), (_("Exit"), 1) ]
210                         self["list"].setList(self.list)
211
212 def main(session, **kwargs):
213         session.open(VuplusAuthenticity)
214
215 def Plugins(**kwargs):
216         return [PluginDescriptor(name=_("Return the Love Event"), description="Don't lose the chance to get the gift.", where = PluginDescriptor.WHERE_PLUGINMENU, needsRestart = False, fnc=main)]
217