2019-08-30 11:32:14 +02:00
|
|
|
from typing import Iterable, Optional
|
2019-08-29 08:53:56 +02:00
|
|
|
from urllib.parse import urlsplit
|
2012-09-17 00:37:36 +02:00
|
|
|
|
2012-07-21 02:59:43 +02:00
|
|
|
|
2019-08-30 11:32:14 +02:00
|
|
|
class HTTPMessage:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Abstract class for HTTP messages."""
|
2012-07-21 02:59:43 +02:00
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
def __init__(self, orig):
|
|
|
|
self._orig = orig
|
|
|
|
|
2019-08-30 11:32:14 +02:00
|
|
|
def iter_body(self, chunk_size: int) -> Iterable[bytes]:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Return an iterator over the body."""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2019-08-30 11:32:14 +02:00
|
|
|
def iter_lines(self, chunk_size: int) -> Iterable[bytes]:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Return an iterator over the body yielding (`line`, `line_feed`)."""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@property
|
2019-08-30 11:32:14 +02:00
|
|
|
def headers(self) -> str:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Return a `str` with the message's headers."""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@property
|
2019-08-30 11:32:14 +02:00
|
|
|
def encoding(self) -> Optional[str]:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Return a `str` with the message's encoding, if known."""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@property
|
2019-08-30 11:32:14 +02:00
|
|
|
def body(self) -> bytes:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Return a `bytes` with the message's body."""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
@property
|
2019-08-30 11:32:14 +02:00
|
|
|
def content_type(self) -> str:
|
2012-08-03 01:01:15 +02:00
|
|
|
"""Return the message content type."""
|
2014-04-26 17:16:11 +02:00
|
|
|
ct = self._orig.headers.get('Content-Type', '')
|
|
|
|
if not isinstance(ct, str):
|
|
|
|
ct = ct.decode('utf8')
|
|
|
|
return ct
|
2012-08-01 21:13:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
class HTTPResponse(HTTPMessage):
|
2012-08-06 22:14:52 +02:00
|
|
|
"""A :class:`requests.models.Response` wrapper."""
|
2012-08-01 21:13:50 +02:00
|
|
|
|
2012-08-03 01:01:15 +02:00
|
|
|
def iter_body(self, chunk_size=1):
|
|
|
|
return self._orig.iter_content(chunk_size=chunk_size)
|
|
|
|
|
|
|
|
def iter_lines(self, chunk_size):
|
2012-08-10 01:07:01 +02:00
|
|
|
return ((line, b'\n') for line in self._orig.iter_lines(chunk_size))
|
2012-08-01 23:21:52 +02:00
|
|
|
|
2016-03-01 19:53:23 +01:00
|
|
|
# noinspection PyProtectedMember
|
2012-08-01 21:13:50 +02:00
|
|
|
@property
|
2012-08-03 01:01:15 +02:00
|
|
|
def headers(self):
|
2012-08-01 21:13:50 +02:00
|
|
|
original = self._orig.raw._original_response
|
2015-02-07 16:29:27 +01:00
|
|
|
|
|
|
|
version = {
|
|
|
|
9: '0.9',
|
|
|
|
10: '1.0',
|
|
|
|
11: '1.1',
|
|
|
|
20: '2',
|
|
|
|
}[original.version]
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
status_line = f'HTTP/{version} {original.status} {original.reason}'
|
2012-08-10 01:07:01 +02:00
|
|
|
headers = [status_line]
|
2021-05-27 13:05:41 +02:00
|
|
|
# `original.msg` is a `http.client.HTTPMessage`
|
|
|
|
# `_headers` is a 2-tuple
|
|
|
|
headers.extend(
|
|
|
|
f'{header[0]}: {header[1]}' for header in original.msg._headers)
|
2012-08-10 01:07:01 +02:00
|
|
|
return '\r\n'.join(headers)
|
2012-07-28 05:45:44 +02:00
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
@property
|
|
|
|
def encoding(self):
|
|
|
|
return self._orig.encoding or 'utf8'
|
2012-07-21 02:59:43 +02:00
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
@property
|
|
|
|
def body(self):
|
|
|
|
# Only now the response body is fetched.
|
|
|
|
# Shouldn't be touched unless the body is actually needed.
|
|
|
|
return self._orig.content
|
|
|
|
|
|
|
|
|
|
|
|
class HTTPRequest(HTTPMessage):
|
2012-08-06 22:14:52 +02:00
|
|
|
"""A :class:`requests.models.Request` wrapper."""
|
2012-08-01 21:13:50 +02:00
|
|
|
|
2012-08-03 01:01:15 +02:00
|
|
|
def iter_body(self, chunk_size):
|
2012-08-01 23:21:52 +02:00
|
|
|
yield self.body
|
|
|
|
|
2012-08-03 01:01:15 +02:00
|
|
|
def iter_lines(self, chunk_size):
|
|
|
|
yield self.body, b''
|
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
@property
|
2012-08-03 01:01:15 +02:00
|
|
|
def headers(self):
|
2013-01-03 14:12:27 +01:00
|
|
|
url = urlsplit(self._orig.url)
|
2012-07-21 02:59:43 +02:00
|
|
|
|
2012-08-03 01:01:15 +02:00
|
|
|
request_line = '{method} {path}{query} HTTP/1.1'.format(
|
2012-08-01 21:13:50 +02:00
|
|
|
method=self._orig.method,
|
2012-07-21 02:59:43 +02:00
|
|
|
path=url.path or '/',
|
2021-05-25 20:49:07 +02:00
|
|
|
query=f'?{url.query}' if url.query else ''
|
2012-08-03 01:01:15 +02:00
|
|
|
)
|
2012-07-25 14:32:57 +02:00
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
headers = dict(self._orig.headers)
|
2014-06-28 13:24:14 +02:00
|
|
|
if 'Host' not in self._orig.headers:
|
2014-01-06 19:39:11 +01:00
|
|
|
headers['Host'] = url.netloc.split('@')[-1]
|
2012-08-01 21:13:50 +02:00
|
|
|
|
2014-06-28 16:35:57 +02:00
|
|
|
headers = [
|
2021-05-25 20:49:07 +02:00
|
|
|
f'{name}: {value if isinstance(value, str) else value.decode("utf-8")}'
|
2014-06-28 16:35:57 +02:00
|
|
|
for name, value in headers.items()
|
|
|
|
]
|
2012-08-03 01:01:15 +02:00
|
|
|
|
|
|
|
headers.insert(0, request_line)
|
2014-04-26 20:10:15 +02:00
|
|
|
headers = '\r\n'.join(headers).strip()
|
|
|
|
return headers
|
2012-08-01 21:13:50 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def encoding(self):
|
|
|
|
return 'utf8'
|
2012-07-25 14:32:57 +02:00
|
|
|
|
2012-08-01 21:13:50 +02:00
|
|
|
@property
|
|
|
|
def body(self):
|
2013-01-03 14:54:34 +01:00
|
|
|
body = self._orig.body
|
|
|
|
if isinstance(body, str):
|
|
|
|
# Happens with JSON/form request data parsed from the command line.
|
|
|
|
body = body.encode('utf8')
|
|
|
|
return body or b''
|