Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
c7603af1
Unverified
Commit
c7603af1
authored
3 years ago
by
Dirk Klimpel
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Allow providing credentials to `http_proxy` (#10360)
parent
7695ca06
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog.d/10360.feature
+1
-0
1 addition, 0 deletions
changelog.d/10360.feature
synapse/http/proxyagent.py
+11
-1
11 additions, 1 deletion
synapse/http/proxyagent.py
tests/http/test_proxyagent.py
+52
-13
52 additions, 13 deletions
tests/http/test_proxyagent.py
with
64 additions
and
14 deletions
changelog.d/10360.feature
0 → 100644
+
1
−
0
View file @
c7603af1
Allow
providing
credentials
to
`http_proxy`.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
synapse/http/proxyagent.py
+
11
−
1
View file @
c7603af1
...
...
@@ -117,7 +117,8 @@ class ProxyAgent(_AgentBase):
https_proxy
=
proxies
[
"
https
"
].
encode
()
if
"
https
"
in
proxies
else
None
no_proxy
=
proxies
[
"
no
"
]
if
"
no
"
in
proxies
else
None
# Parse credentials from https proxy connection string if present
# Parse credentials from http and https proxy connection string if present
self
.
http_proxy_creds
,
http_proxy
=
parse_username_password
(
http_proxy
)
self
.
https_proxy_creds
,
https_proxy
=
parse_username_password
(
https_proxy
)
self
.
http_proxy_endpoint
=
_http_proxy_endpoint
(
...
...
@@ -189,6 +190,15 @@ class ProxyAgent(_AgentBase):
and
self
.
http_proxy_endpoint
and
not
should_skip_proxy
):
# Determine whether we need to set Proxy-Authorization headers
if
self
.
http_proxy_creds
:
# Set a Proxy-Authorization header
if
headers
is
None
:
headers
=
Headers
()
headers
.
addRawHeader
(
b
"
Proxy-Authorization
"
,
self
.
http_proxy_creds
.
as_proxy_authorization_value
(),
)
# Cache *all* connections under the same key, since we are only
# connecting to a single destination, the proxy:
pool_key
=
(
"
http-proxy
"
,
self
.
http_proxy_endpoint
)
...
...
This diff is collapsed.
Click to expand it.
tests/http/test_proxyagent.py
+
52
−
13
View file @
c7603af1
...
...
@@ -205,6 +205,41 @@ class MatrixFederationAgentTests(TestCase):
@patch.dict
(
os
.
environ
,
{
"
http_proxy
"
:
"
proxy.com:8888
"
,
"
no_proxy
"
:
"
unused.com
"
})
def
test_http_request_via_proxy
(
self
):
"""
Tests that requests can be made through a proxy.
"""
self
.
_do_http_request_via_proxy
(
auth_credentials
=
None
)
@patch.dict
(
os
.
environ
,
{
"
http_proxy
"
:
"
bob:pinkponies@proxy.com:8888
"
,
"
no_proxy
"
:
"
unused.com
"
},
)
def
test_http_request_via_proxy_with_auth
(
self
):
"""
Tests that authenticated requests can be made through a proxy.
"""
self
.
_do_http_request_via_proxy
(
auth_credentials
=
"
bob:pinkponies
"
)
@patch.dict
(
os
.
environ
,
{
"
https_proxy
"
:
"
proxy.com
"
,
"
no_proxy
"
:
"
unused.com
"
})
def
test_https_request_via_proxy
(
self
):
"""
Tests that TLS-encrypted requests can be made through a proxy
"""
self
.
_do_https_request_via_proxy
(
auth_credentials
=
None
)
@patch.dict
(
os
.
environ
,
{
"
https_proxy
"
:
"
bob:pinkponies@proxy.com
"
,
"
no_proxy
"
:
"
unused.com
"
},
)
def
test_https_request_via_proxy_with_auth
(
self
):
"""
Tests that authenticated, TLS-encrypted requests can be made through a proxy
"""
self
.
_do_https_request_via_proxy
(
auth_credentials
=
"
bob:pinkponies
"
)
def
_do_http_request_via_proxy
(
self
,
auth_credentials
:
Optional
[
str
]
=
None
,
):
"""
Tests that requests can be made through a proxy.
"""
agent
=
ProxyAgent
(
self
.
reactor
,
use_proxy
=
True
)
self
.
reactor
.
lookups
[
"
proxy.com
"
]
=
"
1.2.3.5
"
...
...
@@ -229,6 +264,23 @@ class MatrixFederationAgentTests(TestCase):
self
.
assertEqual
(
len
(
http_server
.
requests
),
1
)
request
=
http_server
.
requests
[
0
]
# Check whether auth credentials have been supplied to the proxy
proxy_auth_header_values
=
request
.
requestHeaders
.
getRawHeaders
(
b
"
Proxy-Authorization
"
)
if
auth_credentials
is
not
None
:
# Compute the correct header value for Proxy-Authorization
encoded_credentials
=
base64
.
b64encode
(
b
"
bob:pinkponies
"
)
expected_header_value
=
b
"
Basic
"
+
encoded_credentials
# Validate the header's value
self
.
assertIn
(
expected_header_value
,
proxy_auth_header_values
)
else
:
# Check that the Proxy-Authorization header has not been supplied to the proxy
self
.
assertIsNone
(
proxy_auth_header_values
)
self
.
assertEqual
(
request
.
method
,
b
"
GET
"
)
self
.
assertEqual
(
request
.
path
,
b
"
http://test.com
"
)
self
.
assertEqual
(
request
.
requestHeaders
.
getRawHeaders
(
b
"
host
"
),
[
b
"
test.com
"
])
...
...
@@ -241,19 +293,6 @@ class MatrixFederationAgentTests(TestCase):
body
=
self
.
successResultOf
(
treq
.
content
(
resp
))
self
.
assertEqual
(
body
,
b
"
result
"
)
@patch.dict
(
os
.
environ
,
{
"
https_proxy
"
:
"
proxy.com
"
,
"
no_proxy
"
:
"
unused.com
"
})
def
test_https_request_via_proxy
(
self
):
"""
Tests that TLS-encrypted requests can be made through a proxy
"""
self
.
_do_https_request_via_proxy
(
auth_credentials
=
None
)
@patch.dict
(
os
.
environ
,
{
"
https_proxy
"
:
"
bob:pinkponies@proxy.com
"
,
"
no_proxy
"
:
"
unused.com
"
},
)
def
test_https_request_via_proxy_with_auth
(
self
):
"""
Tests that authenticated, TLS-encrypted requests can be made through a proxy
"""
self
.
_do_https_request_via_proxy
(
auth_credentials
=
"
bob:pinkponies
"
)
def
_do_https_request_via_proxy
(
self
,
auth_credentials
:
Optional
[
str
]
=
None
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment