/[cvs]/nfo/projects/netfraggle/bin/fraggleEngine.py
ViewVC logotype

Diff of /nfo/projects/netfraggle/bin/fraggleEngine.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9 by xabbu, Wed Sep 1 21:43:30 2004 UTC revision 1.12 by xabbu, Fri Sep 17 09:42:30 2004 UTC
# Line 12  Line 12 
12    
13  #-----------------------------------------------------------------------------  #-----------------------------------------------------------------------------
14  # $Log$  # $Log$
15    # Revision 1.12  2004/09/17 09:42:30  xabbu
16    # U function listItems() places a query to the server now and returns its results
17    #
18    # Revision 1.11  2004/09/15 22:27:06  xabbu
19    # +/- function fraggleSync replaced by function syncTopics which places a query
20    # + function query has simple eval of error return code now
21    #
22    # Revision 1.10  2004/09/13 21:07:38  xabbu
23    # + function query added for testing of the nql / rpc interface
24    #
25  # Revision 1.9  2004/09/01 21:43:30  xabbu  # Revision 1.9  2004/09/01 21:43:30  xabbu
26  # +Moved funtion getDefaultDir from FraggleCtlPreferences to FraggleEngine for more convenience  # +Moved funtion getDefaultDir from FraggleCtlPreferences to FraggleEngine for more convenience
27  # +FraggleCtlModules class creation for handling content modules  # +FraggleCtlModules class creation for handling content modules
# Line 42  from fraggleConstants import * Line 52  from fraggleConstants import *
52  import FraggleXMLRPC  import FraggleXMLRPC
53  import fraggleCtlPreferences  import fraggleCtlPreferences
54  import FraggleCtlModules  import FraggleCtlModules
55    import fraggleParserXML
56    
57  class FraggleEngine:  class FraggleEngine:
58      """Back-end doing the work."""      """Back-end doing the work."""
# Line 69  class FraggleEngine: Line 80  class FraggleEngine:
80              else:              else:
81                  return None                  return None
82    
83      def fraggleSync(self):      def syncTopics(self):
84                    query = "GET * FROM contenttypes"
85          # v1 - demo          topicData = self.queryCms(query)
86          self.topics = [          topictypes = topicData['1']
87              {        
88                  'name': 'iNFO-Page:Test-ViaXMLRPC',          for i in topictypes:
89                  'mode': 'pull',           self.topics[i] = topictypes[i]['1']
90                  'result': 'item',          
91                  'target': {          #print self.topics
                     'url': 'http://netfrag.org/nfo/netfraggle.php',  
                     'method': 'nfo.getContent',  
                     'arguments': 'Test',  
                     'type': 'XMLRPC',  
                 }  
             },  
             {  
                 'name': 'iNFO-Page:Home-ViaXMLRPC',  
                 'mode': 'pull',  
                 'result': 'item',  
                 'target': {  
                     'url': 'http://netfrag.org/nfo/netfraggle.php',  
                     'method': 'nfo.getContent',  
                     'arguments': 'Home',  
                     'type': 'XMLRPC',  
                 }  
             },  
             {  
                 'name': 'iNFO-PageIndex',  
                 'mode': 'pull',  
                 'result': 'list',  
                 'target': {  
                     'url': 'http://netfrag.org/nfo/netfraggle.php',  
                     'method': 'nfo.listTopics',  
                     'arguments': ['xmlpage'],  
                     'type': 'XMLRPC',  
                 }  
             },  
             {  
                 'name': 'TWiki-Test-ViaTWiki',  
                 'mode': 'push',  
                 'target': {  
                     'url': 'http://netfrag.org/twiki/bin/view/Main/NetFraggleTest',  
                     'type': 'TWiki',  
                 }  
             },  
             {  
                 'name': 'TWiki-Test-ViaXMLRPC',  
                 'mode': 'push',  
                 'target': {  
                     'method': 'appendToPage',  
                     'arguments': ['NetFraggleTest'],  
                     'type': 'XMLRPC',  
                 }  
             },  
         ]  
         return  
   
         # v2 - live  
           
         # 1. load payload from remote side  
         fragglexml = self.rpc.FraggleSync()  
92                    
         # 2. (todo) unmarshal to self.topics (hash)  
         # self.topics = unmarshal(fragglexml)  
   
93      def getTopics(self):      def getTopics(self):
94          return self.topics          return self.topics
95            
96      def getTopicById(self, id):      def getTopicById(self, id):
97          return self.topics[id]          return self.topics[id]
98        
99        def listItems(self,contentkey):
100            result = self.queryCms(str("GET creator_id, language_id, description FROM contents WITH type "+contentkey))
101            return result
102            
103        def queryCms(self,nqlquery):
104            
105            from xmlrpclib import Server,Error
106            rpc = Server('http://netfrag.org/nfo/netfraggle.php')
107            result = rpc.query(nqlquery)
108            if result['0']['error'] == '0':
109            #print result
110              return result
111          
112            #else:
113            #print result['0']['error']
114            #return result
115          
116      def query_remote(self, topicmeta):      def query_remote(self, topicmeta):
117    
118          if topicmeta['target']['type'] == 'XMLRPC':          if topicmeta['target']['type'] == 'XMLRPC':

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.12

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed