1 from Screen import Screen
3 from enigma import eConsoleAppContainer
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
16 class PluginBrowser(Screen):
17 def __init__(self, session):
18 Screen.__init__(self, session)
20 self["red"] = Label(_("Remove Plugins"))
21 self["green"] = Label(_("Download Plugins"))
24 self["list"] = PluginList(self.list)
27 self["actions"] = ActionMap(["WizardActions", "ColorActions"],
32 "green": self.download
34 self.onExecBegin.append(self.checkWarnings)
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)
49 plugin = self["list"].l.getCurrentSelection()[0]
51 plugin(session=self.session)
55 self.pluginlist = plugins.getPlugins(PluginDescriptor.WHERE_PLUGINMENU)
56 for plugin in self.pluginlist:
57 self.list.append(PluginEntryComponent(plugin))
59 self["list"].l.setList(self.list)
62 self.session.openWithCallback(self.updateList, PluginDownloadBrowser, PluginDownloadBrowser.REMOVE)
65 self.session.openWithCallback(self.updateList, PluginDownloadBrowser, PluginDownloadBrowser.DOWNLOAD)
67 class PluginDownloadBrowser(Screen):
71 def __init__(self, session, type):
72 Screen.__init__(self, session)
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)
83 self["list"] = PluginList(self.list)
86 self.installedplugins = []
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..."))
95 self.remainingdata = ""
97 self["actions"] = ActionMap(["WizardActions"],
104 sel = self["list"].l.getCurrentSelection()
109 if type(sel[0]) is str: # category
110 if sel[0] in self.expanded:
111 self.expanded.remove(sel[0])
113 self.expanded.append(sel[0])
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 + "\"?"))
121 def runInstall(self, 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])
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"))
135 self["list"].instance.hide()
136 if self.type == self.DOWNLOAD:
137 self.container.execute("ipkg update")
138 elif self.type == self.REMOVE:
140 self.container.execute("ipkg list_installed enigma2-plugin-*")
142 def installFinished(self):
143 plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
146 def runFinished(self, retval):
147 self.remainingdata = ""
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:
154 self.container.execute("ipkg list enigma2-plugin-*")
156 if len(self.pluginlist) > 0:
158 self["list"].instance.show()
160 self["text"].setText("No new plugins found")
162 def dataAvail(self, str):
163 #prepend any remaining data from the previous call
164 str = self.remainingdata + str
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
169 #remember this data for next time
170 self.remainingdata = lines[-1]
173 self.remainingdata = ""
176 plugin = x.split(" - ")
178 if self.run == 1 and self.type == self.DOWNLOAD:
179 self.installedplugins.append(plugin[0])
181 if plugin[0] not in self.installedplugins:
182 plugin.append(plugin[0][15:])
184 self.pluginlist.append(plugin)
186 def updateList(self):
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"))
193 for x in self.pluginlist:
194 split = x[3].split('-')
197 if not self.plugins.has_key(split[0]):
198 self.plugins[split[0]] = []
200 self.plugins[split[0]].append((PluginDescriptor(name = x[3], description = x[2], icon = verticallineIcon), split[1]))
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]))
208 self.list.append(PluginCategoryComponent(x, expandableIcon))
209 self["list"].l.setList(self.list)