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))
144 self.container.appClosed.get().remove(self.runFinished)
145 self.container.dataAvail.get().remove(self.dataAvail)
148 def runFinished(self, retval):
149 self.remainingdata = ""
152 if self.type == self.DOWNLOAD:
153 self.container.execute("ipkg list_installed enigma2-plugin-*")
154 elif self.run == 1 and self.type == self.DOWNLOAD:
156 self.container.execute("ipkg list enigma2-plugin-*")
158 if len(self.pluginlist) > 0:
160 self["list"].instance.show()
162 self["text"].setText("No new plugins found")
164 def dataAvail(self, str):
165 #prepend any remaining data from the previous call
166 str = self.remainingdata + str
168 lines = str.split('\n')
169 #'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
171 #remember this data for next time
172 self.remainingdata = lines[-1]
175 self.remainingdata = ""
178 plugin = x.split(" - ")
180 if self.run == 1 and self.type == self.DOWNLOAD:
181 self.installedplugins.append(plugin[0])
183 if plugin[0] not in self.installedplugins:
184 plugin.append(plugin[0][15:])
186 self.pluginlist.append(plugin)
188 def updateList(self):
190 expandableIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/expandable-plugins.png"))
191 expandedIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/expanded-plugins.png"))
192 verticallineIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/verticalline-plugins.png"))
195 for x in self.pluginlist:
196 split = x[3].split('-')
199 if not self.plugins.has_key(split[0]):
200 self.plugins[split[0]] = []
202 self.plugins[split[0]].append((PluginDescriptor(name = x[3], description = x[2], icon = verticallineIcon), split[1]))
204 for x in self.plugins.keys():
205 if x in self.expanded:
206 self.list.append(PluginCategoryComponent(x, expandedIcon))
207 for plugin in self.plugins[x]:
208 self.list.append(PluginDownloadComponent(plugin[0], plugin[1]))
210 self.list.append(PluginCategoryComponent(x, expandableIcon))
211 self["list"].l.setList(self.list)