1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
from __future__ import absolute_import
"""M2Crypto enhancement to xmlrpclib.
Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved."""
import base64
import M2Crypto
from M2Crypto import SSL, httpslib, m2urllib, six, util
if util.py27plus:
from typing import Any, AnyStr, Callable, Optional # noqa
from M2Crypto.six.moves.xmlrpc_client import ProtocolError, Transport
# six.moves doesn't support star imports
if six.PY3:
from xmlrpc.client import * # noqa
else:
from xmlrpclib import * # noqa
__version__ = M2Crypto.__version__
class SSL_Transport(Transport): # noqa
user_agent = "M2Crypto_XMLRPC/%s - %s" % (__version__,
Transport.user_agent)
def __init__(self, ssl_context=None, *args, **kw):
# type: (Optional[SSL.Context], *List[Any], **Dict[Any, Any]) -> None
Transport.__init__(self, *args, **kw)
if ssl_context is None:
self.ssl_ctx = SSL.Context()
else:
self.ssl_ctx = ssl_context
def request(self, host, handler, request_body, verbose=0):
# type: (AnyStr, Callable, bytes, int) -> object
# Handle username and password.
user_passwd, host_port = m2urllib.splituser(host)
_host, _port = m2urllib.splitport(host_port)
h = httpslib.HTTPSConnection(_host, int(_port),
ssl_context=self.ssl_ctx)
if verbose:
h.set_debuglevel(1)
# What follows is as in xmlrpclib.Transport. (Except the authz bit.)
h.putrequest("POST", handler)
# required by HTTP/1.1
h.putheader("Host", _host)
# required by XML-RPC
h.putheader("User-Agent", self.user_agent)
h.putheader("Content-Type", "text/xml")
h.putheader("Content-Length", str(len(request_body)))
# Authorisation.
if user_passwd is not None:
auth = base64.encodestring(user_passwd).strip()
h.putheader('Authorization', 'Basic %s' % auth)
h.endheaders()
if request_body:
h.send(request_body)
errcode, errmsg, headers = h.getreply()
if errcode != 200:
raise ProtocolError(
host + handler,
errcode, errmsg,
headers
)
self.verbose = verbose
return self.parse_response(h.getfile())
|