show search results for currently playing service by default
[vuplus_dvbapp-plugin] / epgsearch / src / plugin.py
1 # for localized messages
2 from . import _
3
4 from enigma import eServiceCenter
5
6 # Config
7 from Components.config import config, ConfigSet, ConfigSubsection, ConfigText
8
9 config.plugins.epgsearch = ConfigSubsection()
10 config.plugins.epgsearch.history = ConfigSet(choices = [])
11 # XXX: configtext is more flexible but we cannot use this for a (not yet created) gui config
12 config.plugins.epgsearch.encoding = ConfigText(default = 'ISO8859-15', fixed_size = False)
13
14 # Plugin
15 from EPGSearch import EPGSearch
16
17 # Plugin definition
18 from Plugins.Plugin import PluginDescriptor
19
20 # Mainfunction
21 def main(session, *args, **kwargs):
22         s = session.nav.getCurrentService()
23         info = s.info()
24         event = info.getEvent(0) # 0 = now, 1 = next
25         name = event and event.getEventName() or ''
26         session.open(EPGSearch, name, False)
27
28 # Movielist
29 def movielist(session, service, **kwargs):
30         serviceHandler = eServiceCenter.getInstance()
31         info = serviceHandler.info(service)
32         name = info and info.getName(service) or ''
33
34         session.open(EPGSearch, name)
35
36 def Plugins(**kwargs):
37         return [
38                 PluginDescriptor(
39                         name = "EPGSearch",
40                         description = _("Search EPG"),
41                         where = PluginDescriptor.WHERE_PLUGINMENU,
42                         fnc = main,
43                 ),
44                 PluginDescriptor(
45                         name = _("Search EPG..."),
46                         where = PluginDescriptor.WHERE_EVENTINFO,
47                         fnc = main,
48                 ),
49                 PluginDescriptor(
50                         name = "EPGSearch",
51                         description = _("Search EPG..."),
52                         where = PluginDescriptor.WHERE_MOVIELIST,
53                         fnc = movielist,
54                 ),
55         ]