This repository was 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
Admin API to join users to a room. #7051
Merged
anoadragon453
merged 13 commits into
matrix-org:develop
from
dklimpel:add_join_room_admin_api2
Mar 27, 2020
Merged
Changes from 7 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
1f0f9ab
Admin API to join users to a room. Similar to `auto_join_rooms` for
dklimpel dffe1dc
Update Changelog + linr
dklimpel 3825d67
fix
dklimpel a4cef4e
update unit test
dklimpel eb6f072
lint
dklimpel a0cab45
Update doc, add tests and "invite" for private rooms.
dklimpel 2ee62a9
Synapse/develop -> add_join_room_admin_api2
dklimpel 7f755f6
Apply suggestions from code review
dklimpel 8db367d
update docs an add a test
dklimpel 937b7d0
code style
dklimpel c56d7ca
Update room_membership.md
dklimpel 4e0864c
synapse/develop -> dklimpel/add_join_room_admin_api2 to restart tests
dklimpel d2a5612
Minor formatting
anoadragon453 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 hidden or 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 @@ | ||
| Admin API `POST /_synapse/admin/v1/join/<roomIdOrAlias>` to join users to a room like `auto_join_rooms` for creation of users. |
This file contains hidden or 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,34 @@ | ||
| # Edit Room Membership API | ||
|
|
||
| The API allow an administrator to join an user account with a specific `user_id` | ||
| to a room with a specific `roomIdOrAlias`. | ||
| You can only modify local users. | ||
| The room must have join rule `JoinRules.PUBLIC`. It is default for public rooms. | ||
| The administrator must be admin or creator of a room, if the room has join rule | ||
| `JoinRules.INVITE` (default for private rooms). | ||
|
|
||
| ## Parameters | ||
|
|
||
| The following parameters are available: | ||
|
|
||
| * `user_id` - Fully qualified user: for example, `@user:server.com`. | ||
| * `roomIdOrAlias` - The room identifier or alias to join: for example, `!636q39766251:server.com`. | ||
dklimpel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## Usage | ||
|
|
||
| ``` | ||
| POST /_synapse/admin/v1/join/<roomIdOrAlias> | ||
dklimpel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| { | ||
| "user_id": "@user:server.com" | ||
| } | ||
| ``` | ||
| Including an `access_token` of a server admin. | ||
|
|
||
| Response: | ||
|
|
||
| ``` | ||
| { | ||
| "room_id": "!636q39766251:server.com" | ||
| } | ||
| ``` | ||
This file contains hidden or 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 hidden or 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 hidden or 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,234 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # Copyright 2020 Dirk Klimpel | ||
| # | ||
| # 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. | ||
|
|
||
| import json | ||
|
|
||
| import synapse.rest.admin | ||
| from synapse.api.errors import Codes | ||
| from synapse.rest.client.v1 import login, room | ||
|
|
||
| from tests import unittest | ||
|
|
||
| """Tests admin REST events for /rooms paths.""" | ||
|
|
||
|
|
||
| class JoinAliasRoomTestCase(unittest.HomeserverTestCase): | ||
|
|
||
| servlets = [ | ||
| synapse.rest.admin.register_servlets, | ||
| room.register_servlets, | ||
| login.register_servlets, | ||
| ] | ||
|
|
||
| def prepare(self, reactor, clock, homeserver): | ||
| self.admin_user = self.register_user("admin", "pass", admin=True) | ||
| self.admin_user_tok = self.login("admin", "pass") | ||
|
|
||
| self.creator = self.register_user("creator", "test") | ||
| self.creator_tok = self.login("creator", "test") | ||
|
|
||
| self.second_user_id = self.register_user("second", "test") | ||
| self.second_tok = self.login("second", "test") | ||
|
|
||
| self.public_room_id = self.helper.create_room_as( | ||
| self.creator, tok=self.creator_tok, is_public=True | ||
| ) | ||
| self.url = "/_synapse/admin/v1/join/{}".format(self.public_room_id) | ||
|
|
||
| def test_requester_is_no_admin(self): | ||
| """ | ||
| If the user is not a server admin, an error 403 is returned. | ||
| """ | ||
| body = json.dumps({"user_id": self.second_user_id}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| self.url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.second_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(403, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(Codes.FORBIDDEN, channel.json_body["errcode"]) | ||
|
|
||
| def test_invalid_parameter(self): | ||
| """ | ||
| If a parameter is missing, return an error | ||
| """ | ||
| body = json.dumps({"unknown_parameter": "@unknown:test"}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| self.url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(400, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(Codes.MISSING_PARAM, channel.json_body["errcode"]) | ||
|
|
||
| def test_local_user_does_not_exist(self): | ||
| """ | ||
| Tests that a lookup for a user that does not exist returns a 404 | ||
| """ | ||
| body = json.dumps({"user_id": "@unknown:test"}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| self.url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(404, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(Codes.NOT_FOUND, channel.json_body["errcode"]) | ||
|
|
||
| def test_remote_user(self): | ||
| """ | ||
| Check that only local user can join rooms. | ||
| """ | ||
| body = json.dumps({"user_id": "@not:exist.bla"}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| self.url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(400, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual( | ||
| "This endpoint can only be used with local users", | ||
| channel.json_body["error"], | ||
| ) | ||
|
|
||
| def test_room_does_not_exist(self): | ||
| """ | ||
| Check that unknown rooms/server return error 404. | ||
| """ | ||
| body = json.dumps({"user_id": self.second_user_id}) | ||
| url = "/_synapse/admin/v1/join/!unknown:test" | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(404, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual("No known servers", channel.json_body["error"]) | ||
|
|
||
| def test_room_is_not_valid(self): | ||
| """ | ||
| Check that invalid room names, return an error 400. | ||
| """ | ||
| body = json.dumps({"user_id": self.second_user_id}) | ||
| url = "/_synapse/admin/v1/join/invalidroom" | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(400, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual( | ||
| "invalidroom was not legal room ID or room alias", | ||
| channel.json_body["error"], | ||
| ) | ||
|
|
||
| def test_join_public_room(self): | ||
| """ | ||
| Test joining a local user to a public room with "JoinRules.PUBLIC" | ||
| """ | ||
| body = json.dumps({"user_id": self.second_user_id}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| self.url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(self.public_room_id, channel.json_body["room_id"]) | ||
|
|
||
| # Validate if user is member of room | ||
dklimpel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| request, channel = self.make_request( | ||
| "GET", "/_matrix/client/r0/joined_rooms", access_token=self.second_tok, | ||
| ) | ||
| self.render(request) | ||
| self.assertEquals(200, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(self.public_room_id, channel.json_body["joined_rooms"][0]) | ||
|
|
||
| def test_join_private_room(self): | ||
| """ | ||
| Test joining a local user to a private room with "JoinRules.INVITE" | ||
| """ | ||
| private_room_id = self.helper.create_room_as( | ||
| self.creator, tok=self.creator_tok, is_public=False | ||
| ) | ||
| url = "/_synapse/admin/v1/join/{}".format(private_room_id) | ||
| body = json.dumps({"user_id": self.second_user_id}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(403, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(Codes.FORBIDDEN, channel.json_body["errcode"]) | ||
|
|
||
| def test_join_private_room_if_owner(self): | ||
| """ | ||
| Test joining a local user to a private room with "JoinRules.INVITE", | ||
| when admin is owner of this room. | ||
dklimpel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| """ | ||
| private_room_id = self.helper.create_room_as( | ||
| self.admin_user, tok=self.admin_user_tok, is_public=False | ||
| ) | ||
| url = "/_synapse/admin/v1/join/{}".format(private_room_id) | ||
| body = json.dumps({"user_id": self.second_user_id}) | ||
|
|
||
| request, channel = self.make_request( | ||
| "POST", | ||
| url, | ||
| content=body.encode(encoding="utf_8"), | ||
| access_token=self.admin_user_tok, | ||
| ) | ||
| self.render(request) | ||
|
|
||
| self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(private_room_id, channel.json_body["room_id"]) | ||
|
|
||
| # Validate if user is member of room | ||
dklimpel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| request, channel = self.make_request( | ||
| "GET", "/_matrix/client/r0/joined_rooms", access_token=self.second_tok, | ||
| ) | ||
| self.render(request) | ||
| self.assertEquals(200, int(channel.result["code"]), msg=channel.result["body"]) | ||
| self.assertEqual(private_room_id, channel.json_body["joined_rooms"][0]) | ||
anoadragon453 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.