support cacert specification and curl timeout
authorMark Huang <mlhuang@cs.princeton.edu>
Sat, 18 Nov 2006 18:14:55 +0000 (18:14 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Sat, 18 Nov 2006 18:14:55 +0000 (18:14 +0000)
curlwrapper.py
safexmlrpc.py

index ce273a3..97a35a3 100644 (file)
@@ -3,9 +3,11 @@ from subprocess import PIPE, Popen
 
 class CurlException(Exception): pass
 
-def retrieve(url, postdata=None):
-    options = ('/usr/bin/curl', '--cacert', '/usr/boot/cacert.pem')
+def retrieve(url, cacert=None, postdata=None, timeout=300):
+    options = ('/usr/bin/curl',)
+    if cacert: options += ('--cacert', cacert)
     if postdata: options += ('--data', '@-')
+    if timeout: options += ('--max-time', str(timeout))
     p = Popen(options + (url,), stdin=PIPE, stdout=PIPE, stderr=PIPE)
     if postdata: p.stdin.write(postdata)
     p.stdin.close()
index f4bd5af..71799ff 100644 (file)
@@ -4,15 +4,24 @@ import curlwrapper
 import xmlrpclib
 
 
-CURL = '/usr/bin/curl'
-
 class CertificateCheckingSafeTransport(xmlrpclib.Transport):
+    def __init__(self, cacert, timeout):
+        self.cacert = cacert
+        self.timeout = timeout
+
     def request(self, host, handler, request_body, verbose=0):
         self.verbose = verbose
         try:
-            contents = curlwrapper.retrieve('https://%s%s' % (host, handler), request_body)
+            contents = curlwrapper.retrieve('https://%s%s' % (host, handler),
+                                            cacert = self.cacert,
+                                            postdata = request_body,
+                                            timeout = self.timeout)
             return xmlrpclib.loads(contents)[0]
-        except curlwrapper.CurlException, e: raise xmlrpclib.ProtocolError(host + handler, -1, str(e), '')
+        except curlwrapper.CurlException, e:
+            raise xmlrpclib.ProtocolError(host + handler, -1, str(e), '')
 
 class ServerProxy(xmlrpclib.ServerProxy):
-    def __init__(self, handler, *args, **kw_args): xmlrpclib.ServerProxy.__init__(self, handler, CertificateCheckingSafeTransport())
+    def __init__(self, uri, cacert, timeout = 300, **kwds):
+        xmlrpclib.ServerProxy.__init__(self, uri,
+                                       CertificateCheckingSafeTransport(cacert, timeout),
+                                       **kwds)