psa: adding toggle to show/hide specific feed on Event Feed stream
[feedingit] / psa_harmattan / feedingit / pysrc / feedingit.py
index 10d08b9..b401a0c 100644 (file)
@@ -8,16 +8,21 @@ import os
 from os import mkdir, remove, stat, environ
 from os.path import isfile, isdir, exists
 import codecs
+import dbus
+# import python dbus GLib mainloop support
+import dbus.mainloop.glib
+# Enable glib main loop support
+dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
 
 # Comment the line below if you don't want to use OpenGL for QML rendering or if it is not supported
 from PySide import QtOpenGL,  QtCore
 
 from rss_sqlite import Listing
-CONFIGDIR = environ.get("HOME", "/home/user") + "/.feedingit"
+CONFIGDIR = environ.get("HOME", "/home/user") + "/.feedingit/"
 #CONFIGDIR = "/home/user/.feedingit"
 
 import logging
-#logger = logging.getLogger(__name__)
+logger = logging.getLogger(__name__)
 
 import debugging
 debugging.init(dot_directory=".feedingit", program_name="feedingit-pyside")
@@ -26,11 +31,29 @@ from cgi import escape
 from re import sub
 
 class Controller(QtCore.QObject):
+    cachedList = None
     
     def __init__(self, listing):
         QtCore.QObject.__init__(self)
         from XmlHandler import XmlHandler
         self._handler = XmlHandler(listing)
+        
+    def update_progress(self, percent_complete,
+                        completed, in_progress, queued,
+                        bytes_downloaded, bytes_updated, bytes_per_second,
+                        feed_updated):
+        total = completed + in_progress + queued
+        root.updateProgress(int(total), int(completed))
+        
+    def articleCountUpdated(self):
+        #print "article updated"
+        pass
+    
+    def update_started(self):
+        root.updateStarted()
+    
+    def update_finished(self):
+        root.updateFinished()
 
     @QtCore.Slot(str,str, result=str)
     def getArticle(self, key, article):
@@ -49,8 +72,30 @@ class Controller(QtCore.QObject):
     
     @QtCore.Slot(str,result=str)
     def getArticlesXml(self, key):
+        feed = listing.getFeed(key)
+        self.cachedList = feed.getIds(onlyUnread=True)
         #onlyUnread = arguments.get("onlyUnread","False")
-        return self._handler.generateArticlesXml(key, "False")
+        return self._handler.generateArticlesXml(key, config.getHideReadArticles())
+    
+    @QtCore.Slot(str,str,bool,result=str)
+    def getNextId(self, key, articleid, onlyUnread):
+        if (onlyUnread):
+            #print self.cachedList, articleid
+            index = self.cachedList.index(articleid)
+            return self.cachedList[(index + 1) % len(self.cachedList)]
+        else:
+            feed = listing.getFeed(key)
+            return feed.getNextId(articleid)
+        
+    @QtCore.Slot(str,str,bool,result=str)
+    def getPreviousId(self, key, articleid, onlyUnread):
+        if (onlyUnread):
+            #print self.cachedList, articleid
+            index = self.cachedList.index(articleid)
+            return self.cachedList[(index - 1) % len(self.cachedList)]
+        else:
+            feed = listing.getFeed(key)
+            return feed.getPreviousId(articleid)
     
     @QtCore.Slot(result=str)
     def getCategoryXml(self):
@@ -97,6 +142,7 @@ class Controller(QtCore.QObject):
     def markAllAsRead(self, key):
         feed = listing.getFeed(key)
         feed.markAllAsRead()
+        listing.updateUnread(key)
 
     @QtCore.Slot(str, str)
     def setEntryRead(self, key, articleid):
@@ -111,9 +157,121 @@ class Controller(QtCore.QObject):
         if (item == "hideReadArticles"):
             return "False"
         return ""
+    
+    @QtCore.Slot(str, str)
+    def populateFileDialog(self, path, type):
+        import glob
+        import os.path
+        for file in glob.glob(path+type):
+            logger.debug(file)
+            root.addFileNotification(file, os.path.basename(file))
+    
+    @QtCore.Slot(str, result=int)
+    def importOpml(self, filename):
+        from opml_lib import parseOpml
+        file = open(filename, "r")
+        feeds = parseOpml(file.read())
+        file.close()
+        for (title, url) in feeds:
+            listing.addFeed(title, url)
+        return len(feeds)
+    
+    @QtCore.Slot(str, result=str)
+    def exportOpml(self, filename="/home/user/MyDocs/feedingit-export.opml"):
+        logger.debug("ExportOpmlData: %s" % filename)
+        from opml_lib import getOpmlText
+        try:
+            str = getOpmlText(listing)
+            file = open(filename, "w")
+            file.write(str)
+            file.close()
+            return filename
+        except:
+            logger.debug("Error exporting: %s" % filename)
+            return "error"
+        
+    @QtCore.Slot(str, result=bool)
+    def getBooleanSetting(self, setting):
+        if (setting == "theme"):
+            return config.getTheme()
+        elif (setting == "imageCache" ):
+            return config.getImageCache()
+        elif (setting == "hideReadFeeds"):
+            return config.getHideReadFeeds()
+        elif (setting == "hideReadArticles"):
+            return config.getHideReadArticles()
+        elif (setting == "autoupdate"):
+            return config.isAutoUpdateEnabled()
+        else:
+            return 'True'
+        
+    @QtCore.Slot(str, result=int)
+    def getIntSetting(self, setting):
+        if (setting == "artFontSize"):
+            return config.getArtFontSize()
+        elif (setting == "fontSize" ):
+            return config.getFontSize()
+        else:
+            return -1
+        
+    @QtCore.Slot(str, bool)
+    def setBooleanSetting(self, setting, value):
+        if (setting == "theme"):
+            config.setTheme(value)
+        elif (setting == "imageCache" ):
+            config.setImageCache(value)
+        elif (setting == "hideReadFeeds"):
+            config.setHideReadFeeds(value)
+        elif (setting == "hideReadArticles"):
+            config.setHideReadArticles(value)
+        elif (setting == "autoupdate"):
+            config.setAutoUpdateEnabled(value)
+        config.saveConfig()
+        
+    @QtCore.Slot(str, int)
+    def setIntSetting(self, setting, value):
+        if (setting == "artFontSize"):
+            config.setArtFontSize(value)
+        elif (setting == "fontSize" ):
+            config.setFontSize(value)
+        config.saveConfig()
+    
+    @QtCore.Slot(str, str)
+    def openSettings(self):
+        bus = dbus.SessionBus()
+        settingService = bus.get_object('com.nokia.DuiControlPanel', '/')
+        setting = shareService.get_dbus_method('appletPage', 'com.nokia.DuiControlPanelIf')
+        setting("FeedingIt")
 
-def main():
+    @QtCore.Slot(str, str)
+    def share(self, key, articleid):
+        feed = listing.getFeed(key)
+        title = feed.getTitle(articleid)
+        link = feed.getExternalLink(articleid)
+        description = 'Shared%20via%20FeedingIt%20on%20Meego'
+        import urllib
+        bus = dbus.SessionBus()
+        shareService = bus.get_object('com.nokia.ShareUi', '/')
+        share = shareService.get_dbus_method('share', 'com.nokia.maemo.meegotouch.ShareUiInterface')
+        #share([u'data:text/x-url;description=Support%20for%20Nokia%20Developers;title=Forum%20Nokia,http%3A%2F%2Fforum.nokia.com',])
+        share( ['data:text/x-url;title=%s;description=%s,%s' %(urllib.quote(title), description, urllib.quote(link)),] )
+        
+    @QtCore.Slot(str, result=bool)
+    def getFeedEventStatus(self, key):
+        from gconf import client_get_defaults
+        return client_get_default().get_bool('/apps/ControlPanel/FeedingIt/EnableFeed/'+key)
+    
+    @QtCore.Slot(str)
+    def switchEventFeedStatus(self, key):
+        from gconf import client_get_defaults
+        value = client_get_default().get_bool('/apps/ControlPanel/FeedingIt/EventFeed/Hide/'+key)
+        if value:
+            client_get_default().unset('/apps/ControlPanel/FeedingIt/EventFeed/Hide/'+key)
+        else:
+            client_get_default().set_bool('/apps/ControlPanel/FeedingIt/EventFeed/Hide/'+key, True)
+    
 
+def main():
     if not isdir(CONFIGDIR):
         try:
             mkdir(CONFIGDIR)
@@ -140,6 +298,32 @@ def main():
 
     controller = Controller(listing)
  
+    # listen on dbus for download update progress
+    bus = dbus.SessionBus()
+    
+    bus.add_signal_receiver(handler_function=controller.update_progress,
+                            bus_name=None,
+                            signal_name='UpdateProgress',
+                            dbus_interface='org.marcoz.feedingit',
+                            path='/org/marcoz/feedingit/update')
+    
+    bus.add_signal_receiver(handler_function=controller.articleCountUpdated,
+                            bus_name=None,
+                            signal_name='ArticleCountUpdated',
+                            dbus_interface='org.marcoz.feedingit',
+                            path='/org/marcoz/feedingit/update')
+    bus.add_signal_receiver(handler_function=controller.update_started,
+                            bus_name=None,
+                            signal_name='UpdateStarted',
+                            dbus_interface='org.marcoz.feedingit',
+                            path='/org/marcoz/feedingit/update')
+    bus.add_signal_receiver(handler_function=controller.update_finished,
+                            bus_name=None,
+                            signal_name='UpdateFinished',
+                            dbus_interface='org.marcoz.feedingit',
+                            path='/org/marcoz/feedingit/update')
+    global root
     rc = view.rootContext()
  
     rc.setContextProperty('controller', controller)
@@ -157,11 +341,11 @@ def main():
         view.setSource(os.path.join('qml','main.qml'))
         view.show()
         #view.setSource(os.path.join('qml','FeedingIt.qml'))
+    root = view.rootObject()
 
     #view.showFullScreen()
     #view.show()
     sys.exit(app.exec_())
 
-if __name__ == "__main__":
-    
+if __name__ == "__main__": 
     main()