Skip to content

Commit 7964875

Browse files
committed
Fix issues in the requests wrapper with urllib3 1.21.* and 1.25.*
For older `urllib3` versions an attribute we assumed to be present was not, causing a crash. For the latest version inheriting our patched `HTTPSConnectionPool` class from the wrong base class `urllib3.HTTPConnectionPool` (rather than `urllib3.HTTPSConnectionPool`) caused HTTPS validation to mysteriously fail, as the system CA store wasn't loaded anymore.
1 parent e301cec commit 7964875

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

ipfshttpclient/http.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import functools
1111
import tarfile
1212
from six.moves import http_client
13+
import os
1314
import socket
1415
try: #PY3
1516
import urllib.parse
@@ -23,7 +24,12 @@ class urllib:
2324

2425
from . import encoding
2526
from . import exceptions
26-
from . import requests_wrapper as requests
27+
PATCH_REQUESTS = (os.environ.get("PY_IPFS_HTTP_CLIENT_PATCH_REQUESTS", "yes").lower()
28+
not in ("false", "no"))
29+
if PATCH_REQUESTS:
30+
from . import requests_wrapper as requests
31+
else: # pragma: no cover (always enabled in production)
32+
import requests
2733

2834

2935
def pass_defaults(func):
@@ -210,9 +216,9 @@ def __init__(self, addr, base, **defaults):
210216
query = "",
211217
fragment = ""
212218
).geturl()
213-
self._kwargs = {
214-
"family": family
215-
}
219+
self._kwargs = {}
220+
if PATCH_REQUESTS: # pragma: no branch (always enabled in production)
221+
self._kwargs["family"] = family
216222

217223
self.defaults = defaults
218224
self._session = None

ipfshttpclient/requests_wrapper.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,9 @@ def _new_conn(self):
9797
extra_kw['socket_options'] = self.socket_options
9898

9999
try:
100+
dns_host = getattr(self, "_dns_host", self.host)
100101
conn = create_connection(
101-
(self._dns_host, self.port), self.timeout, **extra_kw)
102+
(dns_host, self.port), self.timeout, **extra_kw)
102103
except socket.timeout:
103104
raise urllib3.exceptions.ConnectTimeoutError(
104105
self, "Connection to %s timed out. (connect timeout=%s)" %
@@ -128,7 +129,7 @@ class HTTPConnectionPool(urllib3.HTTPConnectionPool):
128129
ConnectionCls = HTTPConnection
129130

130131

131-
class HTTPSConnectionPool(urllib3.HTTPConnectionPool):
132+
class HTTPSConnectionPool(urllib3.HTTPSConnectionPool):
132133
ConnectionCls = HTTPSConnection
133134

134135

@@ -158,11 +159,14 @@ def _new_pool(self, scheme, host, port, request_context=None):
158159
if request_context is None:
159160
request_context = self.connection_pool_kw.copy()
160161

162+
for key in ('host', 'port'):
163+
request_context.pop(key, None)
164+
161165
if scheme == "http" or scheme.startswith("http+"):
162166
for kw in urllib3.poolmanager.SSL_KEYWORDS:
163167
request_context.pop(kw, None)
164168

165-
return pool_cls(**request_context)
169+
return pool_cls(host, port, **request_context)
166170

167171
def connection_from_pool_key(self, pool_key, request_context=None):
168172
# Copied from `urllib3` so that we continue to ensure that this will

0 commit comments

Comments
 (0)