Skip to content
Snippets Groups Projects
Unverified Commit 0d8c50df authored by Matthew Hodgson's avatar Matthew Hodgson Committed by GitHub
Browse files

Merge pull request #3099 from matrix-org/matthew/fix-federation-domain-whitelist

fix federation_domain_whitelist
parents 25b0ba30 78a96986
No related branches found
No related tags found
No related merge requests found
...@@ -94,12 +94,6 @@ class Authenticator(object): ...@@ -94,12 +94,6 @@ class Authenticator(object):
"signatures": {}, "signatures": {},
} }
if (
self.federation_domain_whitelist is not None and
self.server_name not in self.federation_domain_whitelist
):
raise FederationDeniedError(self.server_name)
if content is not None: if content is not None:
json_request["content"] = content json_request["content"] = content
...@@ -138,6 +132,12 @@ class Authenticator(object): ...@@ -138,6 +132,12 @@ class Authenticator(object):
json_request["origin"] = origin json_request["origin"] = origin
json_request["signatures"].setdefault(origin, {})[key] = sig json_request["signatures"].setdefault(origin, {})[key] = sig
if (
self.federation_domain_whitelist is not None and
origin not in self.federation_domain_whitelist
):
raise FederationDeniedError(origin)
if not json_request["signatures"]: if not json_request["signatures"]:
raise NoAuthenticationError( raise NoAuthenticationError(
401, "Missing Authorization headers", Codes.UNAUTHORIZED, 401, "Missing Authorization headers", Codes.UNAUTHORIZED,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment