whitespace cleanup
[enigma2.git] / lib / python / Screens / PluginBrowser.py
1 from Screen import Screen
2
3 from enigma import eConsoleAppContainer, loadPNG
4
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
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["actions"] = ActionMap(["WizardActions"], 
96                 {
97                         "ok": self.go,
98                         "back": self.close,
99                 })
100                 
101         def go(self):
102                 if type(self["list"].l.getCurrentSelection()[0]) is str: # category
103                         if self["list"].l.getCurrentSelection()[0] in self.expanded:
104                                 self.expanded.remove(self["list"].l.getCurrentSelection()[0])
105                         else:
106                                 self.expanded.append(self["list"].l.getCurrentSelection()[0])
107                         self.updateList()
108                 else:
109                         if self.type == self.DOWNLOAD:
110                                 self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"" + self["list"].l.getCurrentSelection()[0].name + "\"?"))
111                         elif self.type == self.REMOVE:
112                                 self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"" + self["list"].l.getCurrentSelection()[0].name + "\"?"))
113
114         def runInstall(self, val):
115                 if val:
116                         if self.type == self.DOWNLOAD:
117                                 self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg install " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
118                         elif self.type == self.REMOVE:
119                                 self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg remove " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
120
121         def setWindowTitle(self):
122                 if self.type == self.DOWNLOAD:
123                         self.setTitle(_("Downloadable new plugins"))
124                 elif self.type == self.REMOVE:
125                         self.setTitle(_("Remove plugins"))
126
127         def startRun(self):
128                 self["list"].instance.hide()
129                 if self.type == self.DOWNLOAD:
130                         self.container.execute("ipkg update")
131                 elif self.type == self.REMOVE:
132                         self.run = 1
133                         self.container.execute("ipkg list_installed enigma2-plugin-*")
134                 
135         def installFinished(self):
136                 plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
137                 self.close()
138                 
139         def runFinished(self, retval):
140                 if self.run == 0:
141                         self.run = 1
142                         if self.type == self.DOWNLOAD:
143                                 self.container.execute("ipkg list_installed enigma2-plugin-*")
144                 elif self.run == 1 and self.type == self.DOWNLOAD:
145                         self.run = 2
146                         self.container.execute("ipkg list enigma2-plugin-*")
147                 else:
148                         if len(self.pluginlist) > 0:
149                                 self.updateList()
150                                 self["list"].instance.show()
151                         else:
152                                 self["text"].setText("No new plugins found")
153
154         def dataAvail(self, str):
155                 for x in str.split('\n'):
156                         plugin = x.split(" - ")
157                         if len(plugin) == 3:
158                                 if self.run == 1 and self.type == self.DOWNLOAD:
159                                         self.installedplugins.append(plugin[0])
160                                 else:
161                                         if plugin[0] not in self.installedplugins:
162                                                 plugin.append(plugin[0][15:])
163
164                                                 self.pluginlist.append(plugin)
165         
166         def updateList(self):
167                 self.list = []
168                 expandableIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "expandable-plugins.png"))
169                 expandedIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "expanded-plugins.png"))
170                 verticallineIcon = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "verticalline-plugins.png"))
171                 
172                 self.plugins = {}
173                 for x in self.pluginlist:
174                         split = x[3].split('-')
175                         if len(split) < 2:
176                                 continue
177                         if not self.plugins.has_key(split[0]):
178                                 self.plugins[split[0]] = []
179                                 
180                         self.plugins[split[0]].append((PluginDescriptor(name = x[3], description = x[2], icon = verticallineIcon), split[1]))
181                         
182                 for x in self.plugins.keys():
183                         if x in self.expanded:
184                                 self.list.append(PluginCategoryComponent(x, expandedIcon))
185                                 for plugin in self.plugins[x]:
186                                         self.list.append(PluginDownloadComponent(plugin[0], plugin[1]))
187                         else:
188                                 self.list.append(PluginCategoryComponent(x, expandableIcon))
189                 self["list"].l.setList(self.list)
190