From: Thomas Monjalon Date: Tue, 13 Dec 2016 10:37:46 +0000 (+0100) Subject: pwclient: Support proxy configuration X-Git-Tag: v1.1.3~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d0d5c5d13c2b98741f55c8b99f561572d2dc037;p=thirdparty%2Fpatchwork.git pwclient: Support proxy configuration The environment variables http_proxy and https_proxy can be used to configure the HTTP transport. The TCP connection is made with the proxy host, whereas the original host is maintained in the HTTP POST URI via "handler" in "send_request". The send_request() method of xmlrpclib has a different signature and behaviour in Python 2 and 3. Fixes #47 Signed-off-by: Thomas Monjalon Reviewed-by: Stephen Finucane (cherry picked from commit 53fe8b16431833b7bff6271c41ca8b79b0a7701e) --- diff --git a/patchwork/bin/pwclient b/patchwork/bin/pwclient index 64b7025d..e1ef944c 100755 --- a/patchwork/bin/pwclient +++ b/patchwork/bin/pwclient @@ -107,12 +107,24 @@ class Transport(xmlrpclib.SafeTransport): def __init__(self, url): xmlrpclib.SafeTransport.__init__(self) self.credentials = None + self.host = None + self.proxy = None + self.scheme = url.split('://', 1)[0] self.https = url.startswith('https') + if self.https: + self.proxy = os.environ.get('https_proxy') + else: + self.proxy = os.environ.get('http_proxy') + if self.proxy: + self.https = self.proxy.startswith('https') def set_credentials(self, username=None, password=None): self.credentials = '%s:%s' % (username, password) def make_connection(self, host): + self.host = host + if self.proxy: + host = self.proxy.split('://', 1)[-1] if self.credentials: host = '@'.join([self.credentials, host]) if self.https: @@ -120,6 +132,18 @@ class Transport(xmlrpclib.SafeTransport): else: return xmlrpclib.Transport.make_connection(self, host) + if sys.version_info[0] == 2: + + def send_request(self, connection, handler, request_body): + handler = '%s://%s%s' % (self.scheme, self.host, handler) + xmlrpclib.Transport.send_request(self, connection, handler, request_body) + + else: # Python 3 + + def send_request(self, host, handler, request_body, debug): + handler = '%s://%s%s' % (self.scheme, host, handler) + return xmlrpclib.Transport.send_request(self, host, handler, request_body, debug) + def project_id_by_name(rpc, linkname): """Given a project short name, look up the Project ID."""