first work on page import via atom feed
[enigma2-curlytx.git] / src / CurlyTxSettings.py
1 from . import _
2
3 from Screens.Screen import Screen
4 from Screens.HelpMenu import HelpableScreen
5 from Components.ActionMap import ActionMap, NumberActionMap
6 from Components.Sources.StaticText import StaticText
7
8 from . import config
9 from config import createPage, loadDefaultPageOptions
10 from Components.config import config, getConfigListEntry, ConfigSelection
11 from Components.ConfigList import ConfigList, ConfigListScreen
12
13 class CurlyTxSettings(ConfigListScreen, HelpableScreen, Screen):
14     skin = """
15         <screen name="Setup" position="center,center" size="560,430" title="Setup">
16           <ePixmap pixmap="skin_default/buttons/red.png"    position="0,0"   size="140,40" transparent="1" alphatest="on" />
17           <ePixmap pixmap="skin_default/buttons/green.png"  position="140,0" size="140,40" transparent="1" alphatest="on" />
18           <ePixmap pixmap="skin_default/buttons/yellow.png" position="280,0" size="140,40" transparent="1" alphatest="on" />
19           <ePixmap pixmap="skin_default/buttons/blue.png"   position="420,0" size="140,40" transparent="1" alphatest="on" />
20           <widget source="key_red"    render="Label" position="0,0"   zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#9f1313" transparent="1" />
21           <widget source="key_green"  render="Label" position="140,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#1f771f" transparent="1" />
22           <widget source="key_yellow" render="Label" position="280,0" zPosition="1" size="140,40" font="Regular;20" valign="center" halign="center" backgroundColor="#a08500" transparent="1" />
23           <widget source="key_blue"   render="Label" position="420,0" zPosition="1" size="140,40" font="Regular;20" valign="center" halign="center" backgroundColor="#18188b" transparent="1" />
24           <widget name="config" position="5,50" size="550,325" scrollbarMode="showOnDemand" />
25         </screen>"""
26
27     def __init__(self, session):
28         self.skin = CurlyTxSettings.skin
29         Screen.__init__(self, session)
30         HelpableScreen.__init__(self)
31         #self.skinName = [ "CurlyTxSettings", "Setup" ]
32         self.setup_title = _("Settings")
33
34         self["actions"] = ActionMap(["SetupActions","ColorActions"],
35             {
36                 "cancel": self.keyCancel,
37                 "save": self.keySave,
38                 "ok": self.editPage,
39                 "yellow": self.newPage,
40                 "blue": self.deletePage
41             }, -2)
42
43         self["key_red"]    = StaticText(_("Cancel"))
44         self["key_green"]  = StaticText(_("OK"))
45         self["key_yellow"] = StaticText(_("New"))
46         self["key_blue"]   = StaticText(_("Delete"))
47
48         ConfigListScreen.__init__(self, self.getConfigList(), session = self.session)
49
50         self.loadHelp()
51         self.onClose.append(self.abort)
52
53     def getConfigList(self):
54         #reload titles
55         loadDefaultPageOptions()
56
57         list = [
58             getConfigListEntry(_("Page:") + " " + x.title.value, x.uri)
59                 for x in config.plugins.CurlyTx.pages
60             ]
61         if len(config.plugins.CurlyTx.pages):
62             list.append(getConfigListEntry(_("Default page"), config.plugins.CurlyTx.defaultPage))
63         list.append(getConfigListEntry(_("Show in main menu"), config.plugins.CurlyTx.menuMain))
64         list.append(getConfigListEntry(_("Show in extensions menu"), config.plugins.CurlyTx.menuExtensions))
65         list.append(getConfigListEntry(_("Menu title"), config.plugins.CurlyTx.menuTitle))
66         list.append(getConfigListEntry(_("Page feed URL"), config.plugins.CurlyTx.feedUrl))
67         return list
68
69     def loadHelp(self):
70         self.helpList.append((
71                 self["actions"], "SetupActions",
72                 [("cancel", _("Dismiss all setting changes"))]))
73         self.helpList.append((
74                 self["actions"], "SetupActions",
75                 [("save", _("Save settings and close screen"))]))
76         self.helpList.append((
77                 self["actions"], "SetupActions",
78                 [("ok", _("Edit selected page"))]))
79         self.helpList.append((
80                 self["actions"], "ColorActions",
81                 [("yellow", _("Add new page"))]))
82         self.helpList.append((
83                 self["actions"], "ColorActions",
84                 [("blue", _("Delete selected page"))]))
85
86     def keyLeft(self):
87         ConfigListScreen.keyLeft(self)
88
89     def keyRight(self):
90         ConfigListScreen.keyRight(self)
91
92     def deletePage(self):
93         if len(config.plugins.CurlyTx.pages) == 0 or self["config"].getCurrentIndex() >= len(config.plugins.CurlyTx.pages):
94             return
95
96         from Screens.MessageBox import MessageBox
97         self.session.openWithCallback(
98             self.deletePageConfirm,
99             MessageBox,
100             _("Really delete this page?\nIt cannot be recovered!")
101             )
102
103     def deletePageConfirm(self, result):
104         if not result:
105             return
106
107         id = self["config"].getCurrentIndex()
108         del config.plugins.CurlyTx.pages[id]
109
110         config.plugins.CurlyTx.pages.save()
111
112         self["config"].setList(self.getConfigList())
113
114     def newPage(self):
115         from CurlyTxSettings import CurlyTxSettings
116         self.session.openWithCallback(self.pageEdited, CurlyTxPageEdit, createPage(), True)
117
118     def editPage(self):
119         id = self["config"].getCurrentIndex()
120         if id < len(config.plugins.CurlyTx.pages):
121             self.session.openWithCallback(
122                 self.pageEdited, CurlyTxPageEdit,
123                 config.plugins.CurlyTx.pages[id], False
124                 )
125         else:
126             from AtomFeed import AtomFeed
127             AtomFeed(config.plugins.CurlyTx.feedUrl.value, self.feedPagesReceived)
128
129     def pageEdited(self, page, new):
130         if not page:
131             return
132
133         if new:
134             config.plugins.CurlyTx.pages.append(page)
135
136         self["config"].setList(self.getConfigList())
137
138     def feedPagesReceived(self, pages):
139         if len(pages) == 0:
140             return
141
142         del config.plugins.CurlyTx.pages[:]
143         config.plugins.CurlyTx.pages.save()
144         print("CurlyTx", len(config.plugins.CurlyTx.pages))
145         for pageData in pages:
146             page = createPage()
147             page.title.value = pageData["title"]
148             page.uri.value   = pageData["url"]
149             config.plugins.CurlyTx.pages.append(page)
150         self["config"].setList(self.getConfigList())
151
152     def keySave(self):
153         for i in range(0, len(config.plugins.CurlyTx.pages)):
154             config.plugins.CurlyTx.pages[i].save()
155
156         config.plugins.CurlyTx.pages.save()
157         ConfigListScreen.keySave(self)
158
159     def abort(self):
160         pass
161
162
163
164 class CurlyTxPageEdit(Screen, ConfigListScreen):
165     def __init__(self, session, page, new = False):
166         Screen.__init__(self, session)
167         self.skinName = [ "CurlyTxPageEdit", "Setup" ]
168
169         self["key_red"]   = StaticText(_("Cancel"))
170         self["key_green"] = StaticText(_("OK"))
171
172         self["setupActions"] = ActionMap(["SetupActions"],
173             {
174                 "save": self.save,
175                 "cancel": self.keyCancel
176             }, -1)
177
178         self.page = page
179         self.new = new
180         list = [
181             getConfigListEntry(_("Page URL"), page.uri),
182             getConfigListEntry(_("Title"), page.title),
183             getConfigListEntry(_("Font size"), page.fontSize),
184             ]
185         ConfigListScreen.__init__(self, list, session = self.session)
186
187     def save(self):
188         self.close(self.page, self.new)
189
190     def keyCancel(self):
191         self.close(None, self.new)