MatrixSynapse/synapse/rest/__init__.py

128 lines
4.3 KiB
Python
Raw Normal View History

2016-01-07 05:26:29 +01:00
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2018 New Vector Ltd
2014-08-12 16:10:52 +02:00
#
# 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
2015-01-29 17:10:35 +01:00
# limitations under the License.
2018-07-09 08:09:20 +02:00
from synapse.http.server import JsonResource
from synapse.rest import admin
from synapse.rest.client import (
2015-12-08 16:26:52 +01:00
account,
2018-07-09 08:09:20 +02:00
account_data,
account_validity,
2015-12-08 16:26:52 +01:00
auth,
2019-01-29 11:28:35 +01:00
capabilities,
2018-07-09 08:09:20 +02:00
devices,
directory,
events,
2018-07-09 08:09:20 +02:00
filter,
groups,
initial_sync,
2015-12-08 16:26:52 +01:00
keys,
knock,
login as v1_login,
logout,
2016-05-23 19:33:51 +02:00
notifications,
2018-07-09 08:09:20 +02:00
openid,
password_policy,
presence,
profile,
push_rule,
pusher,
2018-07-09 08:09:20 +02:00
read_marker,
receipts,
register,
relations,
2018-07-09 08:09:20 +02:00
report_event,
room,
room_batch,
2017-12-05 22:44:25 +01:00
room_keys,
room_upgrade_rest_servlet,
sendtodevice,
Add /user/{user_id}/shared_rooms/ api (#7785) * Add shared_rooms api * Add changelog * Add . * Wrap response in {"rooms": } * linting * Add unstable_features key * Remove options from isort that aren't part of 5.x `-y` and `-rc` are now default behaviour and no longer exist. `dont-skip` is no longer required https://timothycrosley.github.io/isort/CHANGELOG/#500-penny-july-4-2020 * Update imports to make isort happy * Add changelog * Update tox.ini file with correct invocation * fix linting again for isort * Vendor prefix unstable API * Fix to match spec * import Codes * import Codes * Use FORBIDDEN * Update changelog.d/7785.feature Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Implement get_shared_rooms_for_users * a comma * trailing whitespace * Handle the easy feedback * Switch to using runInteraction * Add tests * Feedback * Seperate unstable endpoint from v2 * Add upgrade node * a line * Fix style by adding a blank line at EOF. * Update synapse/storage/databases/main/user_directory.py Co-authored-by: Tulir Asokan <tulir@maunium.net> * Update synapse/storage/databases/main/user_directory.py Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Update UPGRADE.rst Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Fix UPGRADE/CHANGELOG unstable paths unstable unstable unstable Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Co-authored-by: Tulir Asokan <tulir@maunium.net> Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Tulir Asokan <tulir@maunium.net>
2020-09-02 14:18:40 +02:00
shared_rooms,
2018-07-09 08:09:20 +02:00
sync,
tags,
thirdparty,
tokenrefresh,
2017-05-31 15:11:55 +02:00
user_directory,
versions,
voip,
2015-12-08 16:26:52 +01:00
)
class ClientRestResource(JsonResource):
2019-05-01 16:18:58 +02:00
"""Matrix Client API REST resource.
2015-12-08 16:26:52 +01:00
2019-05-01 16:18:58 +02:00
This gets mounted at various points under /_matrix/client, including:
* /_matrix/client/r0
* /_matrix/client/api/v1
* /_matrix/client/unstable
* etc
"""
2019-06-20 11:32:02 +02:00
2015-12-08 16:26:52 +01:00
def __init__(self, hs):
JsonResource.__init__(self, hs, canonical_json=False)
self.register_servlets(self, hs)
@staticmethod
def register_servlets(client_resource, hs):
versions.register_servlets(hs, client_resource)
# Deprecated in r0
initial_sync.register_servlets(hs, client_resource)
room.register_deprecated_servlets(hs, client_resource)
# Partially deprecated in r0
2015-12-08 16:26:52 +01:00
events.register_servlets(hs, client_resource)
room.register_servlets(hs, client_resource)
2015-12-08 16:26:52 +01:00
v1_login.register_servlets(hs, client_resource)
profile.register_servlets(hs, client_resource)
presence.register_servlets(hs, client_resource)
directory.register_servlets(hs, client_resource)
voip.register_servlets(hs, client_resource)
pusher.register_servlets(hs, client_resource)
push_rule.register_servlets(hs, client_resource)
2016-03-11 17:27:50 +01:00
logout.register_servlets(hs, client_resource)
2015-12-08 16:26:52 +01:00
sync.register_servlets(hs, client_resource)
filter.register_servlets(hs, client_resource)
account.register_servlets(hs, client_resource)
register.register_servlets(hs, client_resource)
auth.register_servlets(hs, client_resource)
receipts.register_servlets(hs, client_resource)
read_marker.register_servlets(hs, client_resource)
2017-12-05 22:44:25 +01:00
room_keys.register_servlets(hs, client_resource)
2015-12-08 16:26:52 +01:00
keys.register_servlets(hs, client_resource)
tokenrefresh.register_servlets(hs, client_resource)
tags.register_servlets(hs, client_resource)
account_data.register_servlets(hs, client_resource)
2016-05-04 12:28:10 +02:00
report_event.register_servlets(hs, client_resource)
openid.register_servlets(hs, client_resource)
2016-05-23 19:33:51 +02:00
notifications.register_servlets(hs, client_resource)
devices.register_servlets(hs, client_resource)
thirdparty.register_servlets(hs, client_resource)
sendtodevice.register_servlets(hs, client_resource)
2017-05-31 15:11:55 +02:00
user_directory.register_servlets(hs, client_resource)
2017-07-10 15:52:27 +02:00
groups.register_servlets(hs, client_resource)
room_upgrade_rest_servlet.register_servlets(hs, client_resource)
room_batch.register_servlets(hs, client_resource)
2019-01-29 11:28:35 +01:00
capabilities.register_servlets(hs, client_resource)
account_validity.register_servlets(hs, client_resource)
relations.register_servlets(hs, client_resource)
password_policy.register_servlets(hs, client_resource)
knock.register_servlets(hs, client_resource)
2019-05-01 16:18:58 +02:00
# moving to /_synapse/admin
admin.register_servlets_for_client_rest_resource(hs, client_resource)
Add /user/{user_id}/shared_rooms/ api (#7785) * Add shared_rooms api * Add changelog * Add . * Wrap response in {"rooms": } * linting * Add unstable_features key * Remove options from isort that aren't part of 5.x `-y` and `-rc` are now default behaviour and no longer exist. `dont-skip` is no longer required https://timothycrosley.github.io/isort/CHANGELOG/#500-penny-july-4-2020 * Update imports to make isort happy * Add changelog * Update tox.ini file with correct invocation * fix linting again for isort * Vendor prefix unstable API * Fix to match spec * import Codes * import Codes * Use FORBIDDEN * Update changelog.d/7785.feature Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Implement get_shared_rooms_for_users * a comma * trailing whitespace * Handle the easy feedback * Switch to using runInteraction * Add tests * Feedback * Seperate unstable endpoint from v2 * Add upgrade node * a line * Fix style by adding a blank line at EOF. * Update synapse/storage/databases/main/user_directory.py Co-authored-by: Tulir Asokan <tulir@maunium.net> * Update synapse/storage/databases/main/user_directory.py Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Update UPGRADE.rst Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Fix UPGRADE/CHANGELOG unstable paths unstable unstable unstable Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Co-authored-by: Tulir Asokan <tulir@maunium.net> Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> Co-authored-by: Tulir Asokan <tulir@maunium.net>
2020-09-02 14:18:40 +02:00
# unstable
shared_rooms.register_servlets(hs, client_resource)