|
26 | 26 | from pip._vendor.six.moves import xmlrpc_client # type: ignore
|
27 | 27 | from pip._vendor.six.moves.urllib import parse as urllib_parse
|
28 | 28 | from pip._vendor.six.moves.urllib import request as urllib_request
|
29 |
| -from pip._vendor.six.moves.urllib.parse import unquote as urllib_unquote |
30 | 29 | from pip._vendor.urllib3.util import IS_PYOPENSSL
|
31 | 30 |
|
32 | 31 | import pip
|
|
39 | 38 | from pip._internal.utils.logging import indent_log
|
40 | 39 | from pip._internal.utils.misc import (
|
41 | 40 | ARCHIVE_EXTENSIONS, ask_path_exists, backup_dir, call_subprocess, consume,
|
42 |
| - display_path, format_size, get_installed_version, rmtree, splitext, |
43 |
| - unpack_file, |
| 41 | + display_path, format_size, get_installed_version, rmtree, |
| 42 | + split_auth_from_netloc, splitext, unpack_file, |
44 | 43 | )
|
45 | 44 | from pip._internal.utils.setuptools_build import SETUPTOOLS_SHIM
|
46 | 45 | from pip._internal.utils.temp_dir import TempDirectory
|
@@ -142,18 +141,18 @@ def __init__(self, prompting=True):
|
142 | 141 | def __call__(self, req):
|
143 | 142 | parsed = urllib_parse.urlparse(req.url)
|
144 | 143 |
|
145 |
| - # Get the netloc without any embedded credentials |
146 |
| - netloc = parsed.netloc.rsplit("@", 1)[-1] |
| 144 | + # Split the credentials from the netloc. |
| 145 | + netloc, url_user_password = split_auth_from_netloc(parsed.netloc) |
147 | 146 |
|
148 | 147 | # Set the url of the request to the url without any credentials
|
149 | 148 | req.url = urllib_parse.urlunparse(parsed[:1] + (netloc,) + parsed[2:])
|
150 | 149 |
|
151 | 150 | # Use any stored credentials that we have for this netloc
|
152 | 151 | username, password = self.passwords.get(netloc, (None, None))
|
153 | 152 |
|
154 |
| - # Extract credentials embedded in the url if we have none stored |
| 153 | + # Use the credentials embedded in the url if we have none stored |
155 | 154 | if username is None:
|
156 |
| - username, password = self.parse_credentials(parsed.netloc) |
| 155 | + username, password = url_user_password |
157 | 156 |
|
158 | 157 | # Get creds from netrc if we still don't have them
|
159 | 158 | if username is None and password is None:
|
@@ -213,15 +212,6 @@ def warn_on_401(self, resp, **kwargs):
|
213 | 212 | logger.warning('401 Error, Credentials not correct for %s',
|
214 | 213 | resp.request.url)
|
215 | 214 |
|
216 |
| - def parse_credentials(self, netloc): |
217 |
| - if "@" in netloc: |
218 |
| - userinfo = netloc.rsplit("@", 1)[0] |
219 |
| - if ":" in userinfo: |
220 |
| - user, pwd = userinfo.split(":", 1) |
221 |
| - return (urllib_unquote(user), urllib_unquote(pwd)) |
222 |
| - return urllib_unquote(userinfo), None |
223 |
| - return None, None |
224 |
| - |
225 | 215 |
|
226 | 216 | class LocalFSAdapter(BaseAdapter):
|
227 | 217 |
|
|
0 commit comments