text edit patch #5 by Anders Holst
[vuplus_dvbapp] / lib / python / Screens / PluginBrowser.py
1 from Screen import Screen
2
3 from enigma import eConsoleAppContainer
4
5 from Components.ActionMap import ActionMap
6 from Components.PluginComponent import plugins
7 from Components.PluginList import *
8 from Components.Label import Label
9 from Screens.MessageBox import MessageBox
10 from Screens.Console import Console
11 from Plugins.Plugin import PluginDescriptor
12 from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_SKIN_IMAGE
13 from Tools.LoadPixmap import LoadPixmap
14
15
16 class PluginBrowser(Screen):
17         def __init__(self, session):
18                 Screen.__init__(self, session)
19                 
20                 self["red"] = Label(_("Remove Plugins"))
21                 self["green"] = Label(_("Download Plugins"))
22                 
23                 self.list = []
24                 self["list"] = PluginList(self.list)
25                 self.updateList()
26                 
27                 self["actions"] = ActionMap(["WizardActions", "ColorActions"],
28                 {
29                         "ok": self.save,
30                         "back": self.close,
31                         "red": self.delete,
32                         "green": self.download
33                 })
34                 self.onExecBegin.append(self.checkWarnings)
35         
36         def checkWarnings(self):
37                 if len(plugins.warnings):
38                         text = _("Some plugins are not available:\n")
39                         for (pluginname, error) in plugins.warnings:
40                                 text += _("%s (%s)\n") % (pluginname, error)
41                         plugins.resetWarnings()
42                         self.session.open(MessageBox, text = text, type = MessageBox.TYPE_WARNING)
43
44         def save(self):
45                 #self.close()
46                 self.run()
47         
48         def run(self):
49                 plugin = self["list"].l.getCurrentSelection()[0]
50                 
51                 plugin(session=self.session)
52                 
53         def updateList(self):
54                 self.list = [ ]
55                 self.pluginlist = plugins.getPlugins(PluginDescriptor.WHERE_PLUGINMENU)
56                 for plugin in self.pluginlist:
57                         self.list.append(PluginEntryComponent(plugin))
58                 
59                 self["list"].l.setList(self.list)
60
61         def delete(self):
62                 self.session.openWithCallback(self.updateList, PluginDownloadBrowser, PluginDownloadBrowser.REMOVE)
63         
64         def download(self):
65                 self.session.openWithCallback(self.updateList, PluginDownloadBrowser, PluginDownloadBrowser.DOWNLOAD)
66
67 class PluginDownloadBrowser(Screen):
68         DOWNLOAD = 0
69         REMOVE = 1
70         
71         def __init__(self, session, type):
72                 Screen.__init__(self, session)
73                 
74                 self.type = type
75                 
76                 self.container = eConsoleAppContainer()
77                 self.container.appClosed.get().append(self.runFinished)
78                 self.container.dataAvail.get().append(self.dataAvail)
79                 self.onLayoutFinish.append(self.startRun)
80                 self.onShown.append(self.setWindowTitle)
81                 
82                 self.list = []
83                 self["list"] = PluginList(self.list)
84                 self.pluginlist = []
85                 self.expanded = []
86                 self.installedplugins = []
87                 
88                 if self.type == self.DOWNLOAD:
89                         self["text"] = Label(_("Downloading plugin information. Please wait..."))
90                 elif self.type == self.REMOVE:
91                         self["text"] = Label(_("Getting plugin information. Please wait..."))
92                 
93                 self.run = 0
94
95                 self.remainingdata = ""
96
97                 self["actions"] = ActionMap(["WizardActions"], 
98                 {
99                         "ok": self.go,
100                         "back": self.close,
101                 })
102                 
103         def go(self):
104                 sel = self["list"].l.getCurrentSelection()
105
106                 if sel is None:
107                         return
108
109                 if type(sel[0]) is str: # category
110                         if sel[0] in self.expanded:
111                                 self.expanded.remove(sel[0])
112                         else:
113                                 self.expanded.append(sel[0])
114                         self.updateList()
115                 else:
116                         if self.type == self.DOWNLOAD:
117                                 self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"" + sel[0].name + "\"?"))
118                         elif self.type == self.REMOVE:
119                                 self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"" + sel[0].name + "\"?"))
120
121         def runInstall(self, val):
122                 if val:
123                         if self.type == self.DOWNLOAD:
124                                 self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg install " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
125                         elif self.type == self.REMOVE:
126                                 self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg remove " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
127
128         def setWindowTitle(self):
129                 if self.type == self.DOWNLOAD:
130                         self.setTitle(_("Downloadable new plugins"))
131                 elif self.type == self.REMOVE:
132                         self.setTitle(_("Remove plugins"))
133
134         def startRun(self):
135                 self["list"].instance.hide()
136                 if self.type == self.DOWNLOAD:
137                         self.container.execute("ipkg update")
138                 elif self.type == self.REMOVE:
139                         self.run = 1
140                         self.container.execute("ipkg list_installed enigma2-plugin-*")
141                 
142         def installFinished(self):
143                 plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
144                 self.close()
145                 
146         def runFinished(self, retval):
147                 self.remainingdata = ""
148                 if self.run == 0:
149                         self.run = 1
150                         if self.type == self.DOWNLOAD:
151                                 self.container.execute("ipkg list_installed enigma2-plugin-*")
152                 elif self.run == 1 and self.type == self.DOWNLOAD:
153                         self.run = 2
154                         self.container.execute("ipkg list enigma2-plugin-*")
155                 else:
156                         if len(self.pluginlist) > 0:
157                                 self.updateList()
158                                 self["list"].instance.show()
159                         else:
160                                 self["text"].setText("No new plugins found")
161
162         def dataAvail(self, str):
163                 #prepend any remaining data from the previous call
164                 str = self.remainingdata + str
165                 #split in lines
166                 lines = str.split('\n')
167                 #'str' should end with '\n', so when splitting, the last line should be empty. If this is not the case, we received an incomplete line
168                 if len(lines[-1]):
169                         #remember this data for next time
170                         self.remainingdata = lines[-1]
171                         lines = lines[0:-1]
172                 else:
173                         self.remainingdata = ""
174
175                 for x in lines:
176                         plugin = x.split(" - ")
177                         if len(plugin) == 3:
178                                 if self.run == 1 and self.type == self.DOWNLOAD:
179                                         self.installedplugins.append(plugin[0])
180                                 else:
181                                         if plugin[0] not in self.installedplugins:
182                                                 plugin.append(plugin[0][15:])
183
184                                                 self.pluginlist.append(plugin)
185         
186         def updateList(self):
187                 self.list = []
188                 expandableIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "expandable-plugins.png"))
189                 expandedIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "expanded-plugins.png"))
190                 verticallineIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "verticalline-plugins.png"))
191                 
192                 self.plugins = {}
193                 for x in self.pluginlist:
194                         split = x[3].split('-')
195                         if len(split) < 2:
196                                 continue
197                         if not self.plugins.has_key(split[0]):
198                                 self.plugins[split[0]] = []
199                                 
200                         self.plugins[split[0]].append((PluginDescriptor(name = x[3], description = x[2], icon = verticallineIcon), split[1]))
201                         
202                 for x in self.plugins.keys():
203                         if x in self.expanded:
204                                 self.list.append(PluginCategoryComponent(x, expandedIcon))
205                                 for plugin in self.plugins[x]:
206                                         self.list.append(PluginDownloadComponent(plugin[0], plugin[1]))
207                         else:
208                                 self.list.append(PluginCategoryComponent(x, expandableIcon))
209                 self["list"].l.setList(self.list)
210