1 from Screen import Screen
3 from enigma import eConsoleAppContainer, loadPNG
5 from Components.MenuList import MenuList
6 from Components.ActionMap import ActionMap
7 from Components.PluginComponent import plugins
8 from Components.PluginList import *
9 from Components.config import config
10 from Components.Label import Label
11 from Screens.MessageBox import MessageBox
12 from Screens.Console import Console
13 from Plugins.Plugin import PluginDescriptor
14 from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_SKIN_IMAGE
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)
87 if self.type == self.DOWNLOAD:
88 self["text"] = Label(_("Downloading plugin information. Please wait..."))
89 elif self.type == self.REMOVE:
90 self["text"] = Label(_("Getting plugin information. Please wait..."))
94 self["actions"] = ActionMap(["WizardActions"],
101 if type(self["list"].l.getCurrentSelection()[0]) is str: # category
102 if self["list"].l.getCurrentSelection()[0] in self.expanded:
103 self.expanded.remove(self["list"].l.getCurrentSelection()[0])
105 self.expanded.append(self["list"].l.getCurrentSelection()[0])
108 if self.type == self.DOWNLOAD:
109 self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"" + self["list"].l.getCurrentSelection()[0].name + "\"?"))
110 elif self.type == self.REMOVE:
111 self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"" + self["list"].l.getCurrentSelection()[0].name + "\"?"))
113 def runInstall(self, val):
115 if self.type == self.DOWNLOAD:
116 self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg install " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
117 elif self.type == self.REMOVE:
118 self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg remove " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
120 def setWindowTitle(self):
121 if self.type == self.DOWNLOAD:
122 self.setTitle(_("Downloadable new plugins"))
123 elif self.type == self.REMOVE:
124 self.setTitle(_("Remove plugins"))
127 self["list"].instance.hide()
128 if self.type == self.DOWNLOAD:
129 self.container.execute("ipkg update")
130 elif self.type == self.REMOVE:
132 self.container.execute("ipkg list_installed enigma2-plugin-*")
134 def installFinished(self):
135 plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
138 def runFinished(self, retval):
141 if self.type == self.DOWNLOAD:
142 self.container.execute("ipkg list enigma2-plugin-*")
144 if len(self.pluginlist) > 0:
146 self["list"].instance.show()
148 self["text"].setText("No plugins found")
150 def dataAvail(self, str):
151 for x in str.split('\n'):
152 plugin = x.split(" - ")
154 plugin.append(plugin[0][15:])
156 self.pluginlist.append(plugin)
158 def updateList(self):
160 expandableIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "expandable-plugins.png"))
161 expandedIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "expanded-plugins.png"))
162 verticallineIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "verticalline-plugins.png"))
165 for x in self.pluginlist:
166 split = x[3].split('-')
169 if not self.plugins.has_key(split[0]):
170 self.plugins[split[0]] = []
172 self.plugins[split[0]].append((PluginDescriptor(name = x[3], description = x[2], icon = verticallineIcon), split[1]))
174 for x in self.plugins.keys():
175 if x in self.expanded:
176 self.list.append(PluginCategoryComponent(x, expandedIcon))
177 for plugin in self.plugins[x]:
178 self.list.append(PluginDownloadComponent(plugin[0], plugin[1]))
180 self.list.append(PluginCategoryComponent(x, expandableIcon))
181 self["list"].l.setList(self.list)