Added option to always open links in external browser
[feedingit] / src / config.py
1 #!/usr/bin/env python2.5
2
3
4 # Copyright (c) 2007-2008 INdT.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU Lesser General Public License for more details.
14 #
15 #  You should have received a copy of the GNU Lesser General Public License
16 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19 # ============================================================================
20 # Name        : FeedingIt.py
21 # Author      : Yves Marcoz
22 # Version     : 0.6.1
23 # Description : Simple RSS Reader
24 # ============================================================================
25
26 import gtk
27 import hildon
28 from ConfigParser import RawConfigParser
29 from gobject import idle_add
30 from gconf import client_get_default
31 from urllib2 import ProxyHandler
32
33 VERSION = "48"
34
35 section = "FeedingIt"
36 ranges = { "updateInterval":[0.5, 1, 2, 4, 12, 24], "expiry":[24, 48, 72], "fontSize":range(12,24), "orientation":["Automatic", "Landscape", "Portrait"], "artFontSize":[10, 12, 14, 16, 18, 20]}
37 titles = {"updateInterval":"Auto-update interval", "expiry":"Delete articles", "fontSize":"List font size", "orientation":"Display orientation", "artFontSize":"Article font size"}
38 subtitles = {"updateInterval":"Every %s hours", "expiry":"After %s hours", "fontSize":"%s pixels", "orientation":"%s", "artFontSize":"%s pixels"}
39
40 class Config():
41     def __init__(self, parent, configFilename):
42         self.configFilename = configFilename
43         self.parent = parent
44         # Load config
45         self.loadConfig()
46
47         # Backup current settings for later restore
48         self.config_backup = dict(self.config)
49         self.do_restore_backup = True
50
51     def on_save_button_clicked(self, button):
52         self.do_restore_backup = False
53         self.window.destroy()
54
55     def createDialog(self):
56         
57         self.window = gtk.Dialog("Settings", self.parent)
58         self.window.set_geometry_hints(min_height=600)
59
60         save_button = self.window.add_button(gtk.STOCK_SAVE, gtk.RESPONSE_OK)
61         save_button.connect('clicked', self.on_save_button_clicked)
62         #self.window.set_default_size(-1, 600)
63         panArea = hildon.PannableArea()
64         
65         vbox = gtk.VBox(False, 2)
66         self.buttons = {}
67
68         def heading(text):
69             l = gtk.Label()
70             l.set_size_request(-1, 6)
71             vbox.pack_start(l, expand=False)
72             vbox.pack_start(gtk.Frame(text), expand=False)
73
74         def add_setting(setting):
75             picker = hildon.PickerButton(gtk.HILDON_SIZE_FINGER_HEIGHT, hildon.BUTTON_ARRANGEMENT_VERTICAL)
76             selector = self.create_selector(ranges[setting], setting)
77             picker.set_selector(selector)
78             picker.set_title(titles[setting])
79             picker.set_text(titles[setting], subtitles[setting] % self.config[setting])
80             picker.set_name('HildonButton-finger')
81             picker.set_alignment(0,0,1,1)
82             self.buttons[setting] = picker
83             vbox.pack_start(picker, expand=False)
84
85         button = hildon.Button(gtk.HILDON_SIZE_FINGER_HEIGHT, hildon.BUTTON_ARRANGEMENT_VERTICAL)
86         button.set_label("View Known Issues and Tips")
87         button.connect("clicked", self.button_tips_clicked)
88         button.set_alignment(0,0,1,1)
89         vbox.pack_start(button, expand=False)  
90
91         heading('Display')
92         add_setting('fontSize')
93         add_setting('artFontSize')
94         add_setting('orientation')
95         button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
96         button.set_label("Hide read feeds")
97         button.set_active(self.config["hidereadfeeds"])
98         button.connect("toggled", self.button_toggled, "hidereadfeeds")
99         vbox.pack_start(button, expand=False)
100
101         button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
102         button.set_label("Hide read articles")
103         button.set_active(self.config["hidereadarticles"])
104         button.connect("toggled", self.button_toggled, "hidereadarticles")
105         vbox.pack_start(button, expand=False)
106
107
108         heading('Updating')
109         button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
110         button.set_label("Automatically update feeds")
111         button.set_active(self.config["autoupdate"])
112         button.connect("toggled", self.button_toggled, "autoupdate")
113         vbox.pack_start(button, expand=False)
114         add_setting('updateInterval')
115         add_setting('expiry')
116
117         heading('Network')
118         button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
119         button.set_label('Cache images')
120         button.set_active(self.config["imageCache"])
121         button.connect("toggled", self.button_toggled, "imageCache")
122         vbox.pack_start(button, expand=False)
123
124         button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
125         button.set_label("Use HTTP proxy")
126         button.set_active(self.config["proxy"])
127         button.connect("toggled", self.button_toggled, "proxy")
128         vbox.pack_start(button, expand=False)
129         
130         button = hildon.CheckButton(gtk.HILDON_SIZE_FINGER_HEIGHT)
131         button.set_label('Open links in external browser')
132         button.set_active(self.config["extBrowser"])
133         button.connect("toggled", self.button_toggled, "extBrowser")
134         vbox.pack_start(button, expand=False)
135         
136         panArea.add_with_viewport(vbox)
137         
138         self.window.vbox.add(panArea)
139         self.window.connect("destroy", self.onExit)
140         #self.window.add(self.vbox)
141         self.window.set_default_size(-1, 600)
142         self.window.show_all()
143         return self.window
144
145     def button_tips_clicked(self, *widget):
146         import dbus
147         bus = dbus.SessionBus()
148         proxy = bus.get_object("com.nokia.osso_browser", "/com/nokia/osso_browser/request")
149         iface = dbus.Interface(proxy, 'com.nokia.osso_browser')
150         iface.open_new_window("http://feedingit.marcoz.org/news/?page_id=%s" % VERSION)
151
152     def onExit(self, *widget):
153         # When the dialog is closed without hitting
154         # the "Save" button, restore the configuration
155         if self.do_restore_backup:
156             print 'Restoring configuration'
157             self.config = self.config_backup
158
159         self.saveConfig()
160         self.window.destroy()
161
162     def button_toggled(self, widget, configName):
163         #print "widget", widget.get_active()
164         if (widget.get_active()):
165             self.config[configName] = True
166         else:
167             self.config[configName] = False
168         #print "autoup",  self.autoupdate
169         self.saveConfig()
170         
171     def selection_changed(self, selector, button, setting):
172         current_selection = selector.get_current_text()
173         if current_selection:
174             self.config[setting] = current_selection
175         idle_add(self.updateButton, setting)
176         self.saveConfig()
177         
178     def updateButton(self, setting):
179         self.buttons[setting].set_text(titles[setting], subtitles[setting] % self.config[setting])
180         
181     def loadConfig(self):
182         self.config = {}
183         try:
184             configParser = RawConfigParser()
185             configParser.read(self.configFilename)
186             self.config["fontSize"] = configParser.getint(section, "fontSize")
187             self.config["artFontSize"] = configParser.getint(section, "artFontSize")
188             self.config["expiry"] = configParser.getint(section, "expiry")
189             self.config["autoupdate"] = configParser.getboolean(section, "autoupdate")
190             self.config["updateInterval"] = configParser.getfloat(section, "updateInterval")
191             self.config["orientation"] = configParser.get(section, "orientation")
192             self.config["imageCache"] = configParser.getboolean(section, "imageCache")
193         except:
194             self.config["fontSize"] = 17
195             self.config["artFontSize"] = 14
196             self.config["expiry"] = 24
197             self.config["autoupdate"] = False
198             self.config["updateInterval"] = 4
199             self.config["orientation"] = "Automatic"
200             self.config["imageCache"] = False
201         try:
202             self.config["proxy"] = configParser.getboolean(section, "proxy")
203         except:
204             self.config["proxy"] = True
205         try:
206             self.config["hidereadfeeds"] = configParser.getboolean(section, "hidereadfeeds")
207             self.config["hidereadarticles"] = configParser.getboolean(section, "hidereadarticles")
208         except:
209             self.config["hidereadfeeds"] = False
210             self.config["hidereadarticles"] = False
211         try:
212             self.config["extBrowser"] = configParser.getboolean(section, "extBrowser")
213         except:
214             self.config["extBrowser"] = False
215         
216     def saveConfig(self):
217         configParser = RawConfigParser()
218         configParser.add_section(section)
219         configParser.set(section, 'fontSize', str(self.config["fontSize"]))
220         configParser.set(section, 'artFontSize', str(self.config["artFontSize"]))
221         configParser.set(section, 'expiry', str(self.config["expiry"]))
222         configParser.set(section, 'autoupdate', str(self.config["autoupdate"]))
223         configParser.set(section, 'updateInterval', str(self.config["updateInterval"]))
224         configParser.set(section, 'orientation', str(self.config["orientation"]))
225         configParser.set(section, 'imageCache', str(self.config["imageCache"]))
226         configParser.set(section, 'proxy', str(self.config["proxy"]))
227         configParser.set(section, 'hidereadfeeds', str(self.config["hidereadfeeds"]))
228         configParser.set(section, 'hidereadarticles', str(self.config["hidereadarticles"]))
229         configParser.set(section, 'extBrowser', str(self.config["extBrowser"]))
230
231         # Writing our configuration file
232         file = open(self.configFilename, 'wb')
233         configParser.write(file)
234         file.close()
235
236     def create_selector(self, choices, setting):
237         #self.pickerDialog = hildon.PickerDialog(self.parent)
238         selector = hildon.TouchSelector(text=True)
239         index = 0
240         for item in choices:
241             iter = selector.append_text(str(item))
242             if str(self.config[setting]) == str(item): 
243                 selector.set_active(0, index)
244             index += 1
245         selector.connect("changed", self.selection_changed, setting)
246         #self.pickerDialog.set_selector(selector)
247         return selector
248         #self.pickerDialog.show_all()
249
250     def getFontSize(self):
251         return self.config["fontSize"]
252     def getArtFontSize(self):
253         return self.config["artFontSize"]
254     def getExpiry(self):
255         return self.config["expiry"]
256     def isAutoUpdateEnabled(self):
257         return self.config["autoupdate"]
258     def getUpdateInterval(self):
259         return float(self.config["updateInterval"])
260     def getReadFont(self):
261         return "sans italic %s" % self.config["fontSize"]
262     def getUnreadFont(self):
263         return "sans %s" % self.config["fontSize"]
264     def getOrientation(self):
265         return ranges["orientation"].index(self.config["orientation"])
266     def getImageCache(self):
267         return self.config["imageCache"]
268     def getProxy(self):
269         if self.config["proxy"] == False:
270             return (False, None)
271         if client_get_default().get_bool('/system/http_proxy/use_http_proxy'):
272             port = client_get_default().get_int('/system/http_proxy/port')
273             http = client_get_default().get_string('/system/http_proxy/host')
274             proxy = ProxyHandler( {"http":"http://%s:%s/"% (http,port)} )
275             return (True, proxy)
276         return (False, None)
277     def getHideReadFeeds(self):
278         return self.config["hidereadfeeds"]
279     def getHideReadArticles(self):
280         return self.config["hidereadarticles"]
281     def getOpenInExternalBrowser(self):
282         return self.config["extBrowser"]