/[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.10 by xabbu, Mon Sep 13 21:07:38 2004 UTC revision 1.13 by xabbu, Tue Sep 21 18:07:09 2004 UTC
# Line 12  Line 12 
12    
13  #-----------------------------------------------------------------------------  #-----------------------------------------------------------------------------
14  # $Log$  # $Log$
15    # Revision 1.13  2004/09/21 18:07:09  xabbu
16    # + added functions listItems and getContent
17    #
18    # Revision 1.12  2004/09/17 09:42:30  xabbu
19    # U function listItems() places a query to the server now and returns its results
20    #
21    # Revision 1.11  2004/09/15 22:27:06  xabbu
22    # +/- function fraggleSync replaced by function syncTopics which places a query
23    # + function query has simple eval of error return code now
24    #
25  # Revision 1.10  2004/09/13 21:07:38  xabbu  # Revision 1.10  2004/09/13 21:07:38  xabbu
26  # + function query added for testing of the nql / rpc interface  # + function query added for testing of the nql / rpc interface
27  #  #
# Line 73  class FraggleEngine: Line 83  class FraggleEngine:
83              else:              else:
84                  return None                  return None
85    
86      def fraggleSync(self):      def syncTopics(self):
87          #self.queryCms()          query = "GET * FROM contenttypes"
88          fraggleParser = fraggleParserXML.create(self)          topicData = self.queryCms(query)
89          # v1 - demo          topictypes = topicData['1']
90          self.topics = [        
91              {          for i in topictypes:
92                  'name': 'iNFO-Page:Test-ViaXMLRPC',           self.topics[i] = topictypes[i]['1']
93                  'mode': 'pull',          
94                  'result': 'item',          #print self.topics
                 'target': {  
                     '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',  
                 }  
             },  
         ]  
         topicfile = os.path.join(self.getDefaultDir(), 'topic.xml')  
         fraggleParser.marshalXML(self.topics,topicfile)  
         return  
   
         # v2 - live  
           
         # 1. load payload from remote side  
         fragglexml = self.rpc.FraggleSync()  
95                    
         # 2. (todo) unmarshal to self.topics (hash)  
         # self.topics = unmarshal(fragglexml)  
   
96      def getTopics(self):      def getTopics(self):
97          return self.topics          return self.topics
98            
99      def getTopicById(self, id):      def getTopicById(self, id):
100          return self.topics[id]          return self.topics[id]
101            
102      def listItems(self,topicId):      def listItems(self,contentkey):
103          result = self.queryCms("GET creator_id, language_id, description FROM contents")          print contentkey
104          print result          result = self.queryCms(str("GET creator_id, language_id, description, id FROM contents WITH type "+contentkey))
105            return result
106        
107        def getContent(self,contentkey):
108            query = str("GET content, creator_id, description, id FROM contents WITH id "+contentkey)
109            result = self.queryCms(query)
110            print query
111            return result
112            
113                    
114      def queryCms(self,nqlquery):      def queryCms(self,nqlquery):
115                    
116          from xmlrpclib import Server,Error          from xmlrpclib import Server,Error
117          rpc = Server('http://netfrag.org/nfo/netfraggle.php')          rpc = Server('http://netfrag.org/nfo/netfraggle.php')
118          topicdata = rpc.query(nqlquery)          result = rpc.query(nqlquery)
119          print topicdata          if result['0']['error'] == '0':
120          return topicdata          #print result
121                  return result
122          
123            #else:
124            #print result['0']['error']
125            #return result
126          
127      def query_remote(self, topicmeta):      def query_remote(self, topicmeta):
128    
129          if topicmeta['target']['type'] == 'XMLRPC':          if topicmeta['target']['type'] == 'XMLRPC':

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.13

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