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
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2252 from matrix-org/erikj/user_dir
Add a user directory
- Loading branch information
Showing
13 changed files
with
1,043 additions
and
1 deletion.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,75 @@ | ||
# -*- coding: utf-8 -*- | ||
# 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 | ||
|
||
from twisted.internet import defer | ||
|
||
from synapse.api.errors import SynapseError | ||
from synapse.http.servlet import RestServlet, parse_json_object_from_request | ||
from ._base import client_v2_patterns | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class UserDirectorySearchRestServlet(RestServlet): | ||
PATTERNS = client_v2_patterns("/user_directory/search$") | ||
|
||
def __init__(self, hs): | ||
""" | ||
Args: | ||
hs (synapse.server.HomeServer): server | ||
""" | ||
super(UserDirectorySearchRestServlet, self).__init__() | ||
self.hs = hs | ||
self.auth = hs.get_auth() | ||
self.user_directory_handler = hs.get_user_directory_handler() | ||
|
||
@defer.inlineCallbacks | ||
def on_POST(self, request): | ||
"""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> | ||
} | ||
] | ||
} | ||
""" | ||
yield self.auth.get_user_by_req(request, allow_guest=False) | ||
body = parse_json_object_from_request(request) | ||
|
||
limit = body.get("limit", 10) | ||
limit = min(limit, 50) | ||
|
||
try: | ||
search_term = body["search_term"] | ||
except: | ||
raise SynapseError(400, "`search_term` is required field") | ||
|
||
results = yield self.user_directory_handler.search_users(search_term, limit) | ||
|
||
defer.returnValue((200, results)) | ||
|
||
|
||
def register_servlets(hs, http_server): | ||
UserDirectorySearchRestServlet(hs).register(http_server) |
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
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
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,84 @@ | ||
# 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 | ||
|
||
from synapse.storage.prepare_database import get_statements | ||
from synapse.storage.engines import PostgresEngine, Sqlite3Engine | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
BOTH_TABLES = """ | ||
CREATE TABLE user_directory_stream_pos ( | ||
Lock CHAR(1) NOT NULL DEFAULT 'X' UNIQUE, -- Makes sure this table only has one row. | ||
stream_id BIGINT, | ||
CHECK (Lock='X') | ||
); | ||
INSERT INTO user_directory_stream_pos (stream_id) VALUES (null); | ||
CREATE TABLE user_directory ( | ||
user_id TEXT NOT NULL, | ||
room_id TEXT NOT NULL, -- A room_id that we know the user is joined to | ||
display_name TEXT, | ||
avatar_url TEXT | ||
); | ||
CREATE INDEX user_directory_room_idx ON user_directory(room_id); | ||
CREATE UNIQUE INDEX user_directory_user_idx ON user_directory(user_id); | ||
CREATE TABLE users_in_pubic_room ( | ||
user_id TEXT NOT NULL, | ||
room_id TEXT NOT NULL -- A room_id that we know is public | ||
); | ||
CREATE INDEX users_in_pubic_room_room_idx ON users_in_pubic_room(room_id); | ||
CREATE UNIQUE INDEX users_in_pubic_room_user_idx ON users_in_pubic_room(user_id); | ||
""" | ||
|
||
|
||
POSTGRES_TABLE = """ | ||
CREATE TABLE user_directory_search ( | ||
user_id TEXT NOT NULL, | ||
vector tsvector | ||
); | ||
CREATE INDEX user_directory_search_fts_idx ON user_directory_search USING gin(vector); | ||
CREATE UNIQUE INDEX user_directory_search_user_idx ON user_directory_search(user_id); | ||
""" | ||
|
||
|
||
SQLITE_TABLE = """ | ||
CREATE VIRTUAL TABLE user_directory_search | ||
USING fts4 ( user_id, value ); | ||
""" | ||
|
||
|
||
def run_create(cur, database_engine, *args, **kwargs): | ||
for statement in get_statements(BOTH_TABLES.splitlines()): | ||
cur.execute(statement) | ||
|
||
if isinstance(database_engine, PostgresEngine): | ||
for statement in get_statements(POSTGRES_TABLE.splitlines()): | ||
cur.execute(statement) | ||
elif isinstance(database_engine, Sqlite3Engine): | ||
for statement in get_statements(SQLITE_TABLE.splitlines()): | ||
cur.execute(statement) | ||
else: | ||
raise Exception("Unrecognized database engine") | ||
|
||
|
||
def run_upgrade(*args, **kwargs): | ||
pass |
Oops, something went wrong.