This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add authentication to thirdparty bridge APIs #12746
Merged
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
dbbf926
Add authentication to thirdparty bridge APIs
Half-Shot 1474fc2
Add args as any
Half-Shot df3554c
changelog
Half-Shot fe43fe3
Add tests for api
Half-Shot 4a45161
Update test_api.py
Half-Shot b46c626
Update changelog.d/12746.bugfix
Half-Shot 50b04f7
fix lint
Half-Shot 0520ac7
fix
Half-Shot 512ebca
Tidy tidy according to review
Half-Shot 8782cdf
Add raise RuntimeError("This should never be seen.")
Half-Shot 94e98af
final review bits
Half-Shot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Always send an `access_token` in `/thirdparty/` requests to appservices, as required by the [Matrix specification](https://spec.matrix.org/v1.1/application-service-api/#third-party-networks). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,98 @@ | ||||||
# Copyright 2022 The Matrix.org Foundation C.I.C. | ||||||
# | ||||||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||||||
# you may not use this file except in compliance with the License. | ||||||
# You may obtain a copy of the License at | ||||||
# | ||||||
# http://www.apache.org/licenses/LICENSE-2.0 | ||||||
# | ||||||
# Unless required by applicable law or agreed to in writing, software | ||||||
# distributed under the License is distributed on an "AS IS" BASIS, | ||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||
# See the License for the specific language governing permissions and | ||||||
# limitations under the License. | ||||||
from typing import Any, List, Mapping | ||||||
from unittest.mock import Mock | ||||||
|
||||||
from twisted.test.proto_helpers import MemoryReactor | ||||||
|
||||||
from synapse.appservice import ApplicationService | ||||||
from synapse.appservice.api import ApplicationServiceApi | ||||||
from synapse.server import HomeServer | ||||||
from synapse.types import JsonDict | ||||||
from synapse.util import Clock | ||||||
|
||||||
from tests import unittest | ||||||
|
||||||
PROTOCOL = "myproto" | ||||||
TOKEN = "myastoken" | ||||||
URL = "http://mytestservice" | ||||||
|
||||||
|
||||||
class ApplicationServiceApiTestCase(unittest.HomeserverTestCase): | ||||||
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer): | ||||||
self.api = ApplicationServiceApi(hs) | ||||||
self.service = ApplicationService( | ||||||
id="unique_identifier", | ||||||
sender="@as:test", | ||||||
url=URL, | ||||||
token="unused", | ||||||
hs_token=TOKEN, | ||||||
hostname="myserver", | ||||||
) | ||||||
|
||||||
def test_query_3pe_authenticates_token(self): | ||||||
babolivier marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
SUCCESS_RESULT_USER = [ | ||||||
{ | ||||||
"protocol": PROTOCOL, | ||||||
"userid": "@a:user", | ||||||
"fields": { | ||||||
"more": "fields", | ||||||
}, | ||||||
} | ||||||
] | ||||||
SUCCESS_RESULT_LOCATION = [ | ||||||
{ | ||||||
"protocol": PROTOCOL, | ||||||
"alias": "#a:room", | ||||||
"fields": { | ||||||
"more": "fields", | ||||||
}, | ||||||
} | ||||||
] | ||||||
|
||||||
URL_USER = f"{URL}/_matrix/app/unstable/thirdparty/user/{PROTOCOL}" | ||||||
URL_LOCATION = f"{URL}/_matrix/app/unstable/thirdparty/location/{PROTOCOL}" | ||||||
|
||||||
self.request_url = None | ||||||
|
||||||
async def get_json(url: str, args: Mapping[Any, Any]) -> List[JsonDict]: | ||||||
if not args.get(b"access_token"): | ||||||
raise Exception("Access token not provided") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
For consistency |
||||||
|
||||||
self.assertEqual(args.get(b"access_token"), TOKEN) | ||||||
self.request_url = url | ||||||
if url == URL_USER: | ||||||
return SUCCESS_RESULT_USER | ||||||
elif url == URL_LOCATION: | ||||||
return SUCCESS_RESULT_LOCATION | ||||||
else: | ||||||
self.fail("URL provided was invalid") | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that this is now a bit unnecessary since raising the |
||||||
raise RuntimeError("This should never be seen.") | ||||||
|
||||||
# We assign to a method, which mypy doesn't like. | ||||||
self.api.get_json = Mock(side_effect=get_json) # type: ignore[assignment] | ||||||
|
||||||
result = self.get_success( | ||||||
self.api.query_3pe(self.service, "user", PROTOCOL, {b"some": [b"field"]}) | ||||||
) | ||||||
self.assertEqual(self.request_url, URL_USER) | ||||||
self.assertEqual(result, SUCCESS_RESULT_USER) | ||||||
result = self.get_success( | ||||||
self.api.query_3pe( | ||||||
self.service, "location", PROTOCOL, {b"some": [b"field"]} | ||||||
) | ||||||
) | ||||||
self.assertEqual(self.request_url, URL_LOCATION) | ||||||
self.assertEqual(result, SUCCESS_RESULT_LOCATION) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It probably doesn't make that much of a difference, but it's more consistent with how we access this kind of objects in tests.