2017-05-31 15:11:55 +02:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
|
|
|
#
|
|
|
|
# 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 logging
|
2021-08-23 14:14:17 +02:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2017-05-31 15:11:55 +02:00
|
|
|
|
|
|
|
from synapse.api.errors import SynapseError
|
2021-08-23 14:14:17 +02:00
|
|
|
from synapse.http.server import HttpServer
|
2017-05-31 15:11:55 +02:00
|
|
|
from synapse.http.servlet import RestServlet, parse_json_object_from_request
|
2021-08-23 14:14:17 +02:00
|
|
|
from synapse.http.site import SynapseRequest
|
2022-03-18 14:51:41 +01:00
|
|
|
from synapse.types import JsonMapping
|
2018-07-09 08:09:20 +02:00
|
|
|
|
2019-06-03 13:28:59 +02:00
|
|
|
from ._base import client_patterns
|
2017-05-31 15:11:55 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2017-05-31 15:11:55 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class UserDirectorySearchRestServlet(RestServlet):
|
2019-06-03 13:28:59 +02:00
|
|
|
PATTERNS = client_patterns("/user_directory/search$")
|
2023-03-23 13:11:14 +01:00
|
|
|
CATEGORY = "User directory search requests"
|
2017-05-31 15:11:55 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2017-05-31 15:11:55 +02:00
|
|
|
self.hs = hs
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.user_directory_handler = hs.get_user_directory_handler()
|
|
|
|
|
2022-03-18 14:51:41 +01:00
|
|
|
async def on_POST(self, request: SynapseRequest) -> Tuple[int, JsonMapping]:
|
2017-05-31 16:00:29 +02:00
|
|
|
"""Searches for users in directory
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
dict of the form::
|
|
|
|
|
|
|
|
{
|
|
|
|
"limited": <bool>, # whether there were more results or not
|
|
|
|
"results": [ # Ordered by best match first
|
|
|
|
{
|
|
|
|
"user_id": <user_id>,
|
|
|
|
"display_name": <display_name>,
|
|
|
|
"avatar_url": <avatar_url>
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
"""
|
2019-12-05 17:46:37 +01:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=False)
|
2017-06-15 11:00:28 +02:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2021-09-24 13:25:21 +02:00
|
|
|
if not self.hs.config.userdirectory.user_directory_search_enabled:
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, {"limited": False, "results": []}
|
2019-03-19 17:40:19 +01:00
|
|
|
|
2017-05-31 15:11:55 +02:00
|
|
|
body = parse_json_object_from_request(request)
|
|
|
|
|
2022-12-07 12:19:43 +01:00
|
|
|
limit = int(body.get("limit", 10))
|
|
|
|
limit = max(min(limit, 50), 0)
|
2017-05-31 15:11:55 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
search_term = body["search_term"]
|
2017-10-23 16:52:32 +02:00
|
|
|
except Exception:
|
2017-05-31 15:11:55 +02:00
|
|
|
raise SynapseError(400, "`search_term` is required field")
|
|
|
|
|
2019-12-05 17:46:37 +01:00
|
|
|
results = await self.user_directory_handler.search_users(
|
2019-06-20 11:32:02 +02:00
|
|
|
user_id, search_term, limit
|
2017-06-15 11:00:28 +02:00
|
|
|
)
|
2017-05-31 15:11:55 +02:00
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, results
|
2017-05-31 15:11:55 +02:00
|
|
|
|
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2017-05-31 15:11:55 +02:00
|
|
|
UserDirectorySearchRestServlet(hs).register(http_server)
|