2017-05-31 06:51:01 -04:00
|
|
|
# -*- 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.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
import re
|
2017-05-31 06:51:01 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import defer
|
2017-06-15 04:59:04 -04:00
|
|
|
|
2017-05-31 06:51:01 -04:00
|
|
|
from synapse.api.constants import EventTypes, JoinRules
|
2019-03-18 13:50:24 -04:00
|
|
|
from synapse.storage.background_updates import BackgroundUpdateStore
|
2019-03-11 09:39:12 -04:00
|
|
|
from synapse.storage.engines import PostgresEngine, Sqlite3Engine
|
2019-02-05 07:16:28 -05:00
|
|
|
from synapse.storage.state import StateFilter
|
2019-03-25 05:37:08 -04:00
|
|
|
from synapse.storage.state_deltas import StateDeltasStore
|
2017-05-31 09:29:32 -04:00
|
|
|
from synapse.types import get_domain_from_id, get_localpart_from_id
|
2019-03-12 06:47:14 -04:00
|
|
|
from synapse.util.caches.descriptors import cached
|
2017-05-31 06:51:01 -04:00
|
|
|
|
2017-06-15 04:59:04 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2017-05-31 06:51:01 -04:00
|
|
|
|
|
|
|
|
2019-03-18 13:50:24 -04:00
|
|
|
TEMP_TABLE = "_temp_populate_user_directory"
|
|
|
|
|
|
|
|
|
2019-10-03 13:19:08 -04:00
|
|
|
class UserDirectoryBackgroundUpdateStore(StateDeltasStore, BackgroundUpdateStore):
|
2019-03-20 12:06:36 -04:00
|
|
|
|
|
|
|
# How many records do we calculate before sending it to
|
|
|
|
# add_users_who_share_private_rooms?
|
|
|
|
SHARE_PRIVATE_WORKING_SET = 500
|
|
|
|
|
2019-03-18 13:50:24 -04:00
|
|
|
def __init__(self, db_conn, hs):
|
2019-10-03 13:19:08 -04:00
|
|
|
super(UserDirectoryBackgroundUpdateStore, self).__init__(db_conn, hs)
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
self.server_name = hs.hostname
|
|
|
|
|
|
|
|
self.register_background_update_handler(
|
|
|
|
"populate_user_directory_createtables",
|
|
|
|
self._populate_user_directory_createtables,
|
|
|
|
)
|
|
|
|
self.register_background_update_handler(
|
|
|
|
"populate_user_directory_process_rooms",
|
|
|
|
self._populate_user_directory_process_rooms,
|
|
|
|
)
|
|
|
|
self.register_background_update_handler(
|
|
|
|
"populate_user_directory_process_users",
|
|
|
|
self._populate_user_directory_process_users,
|
|
|
|
)
|
|
|
|
self.register_background_update_handler(
|
|
|
|
"populate_user_directory_cleanup", self._populate_user_directory_cleanup
|
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _populate_user_directory_createtables(self, progress, batch_size):
|
|
|
|
|
|
|
|
# Get all the rooms that we want to process.
|
|
|
|
def _make_staging_area(txn):
|
|
|
|
sql = (
|
|
|
|
"CREATE TABLE IF NOT EXISTS "
|
|
|
|
+ TEMP_TABLE
|
|
|
|
+ "_rooms(room_id TEXT NOT NULL, events BIGINT NOT NULL)"
|
|
|
|
)
|
|
|
|
txn.execute(sql)
|
|
|
|
|
|
|
|
sql = (
|
|
|
|
"CREATE TABLE IF NOT EXISTS "
|
|
|
|
+ TEMP_TABLE
|
|
|
|
+ "_position(position TEXT NOT NULL)"
|
|
|
|
)
|
|
|
|
txn.execute(sql)
|
|
|
|
|
|
|
|
# Get rooms we want to process from the database
|
|
|
|
sql = """
|
|
|
|
SELECT room_id, count(*) FROM current_state_events
|
|
|
|
GROUP BY room_id
|
|
|
|
"""
|
|
|
|
txn.execute(sql)
|
|
|
|
rooms = [{"room_id": x[0], "events": x[1]} for x in txn.fetchall()]
|
|
|
|
self._simple_insert_many_txn(txn, TEMP_TABLE + "_rooms", rooms)
|
|
|
|
del rooms
|
|
|
|
|
|
|
|
# If search all users is on, get all the users we want to add.
|
|
|
|
if self.hs.config.user_directory_search_all_users:
|
|
|
|
sql = (
|
|
|
|
"CREATE TABLE IF NOT EXISTS "
|
|
|
|
+ TEMP_TABLE
|
|
|
|
+ "_users(user_id TEXT NOT NULL)"
|
|
|
|
)
|
|
|
|
txn.execute(sql)
|
|
|
|
|
|
|
|
txn.execute("SELECT name FROM users")
|
|
|
|
users = [{"user_id": x[0]} for x in txn.fetchall()]
|
|
|
|
|
|
|
|
self._simple_insert_many_txn(txn, TEMP_TABLE + "_users", users)
|
|
|
|
|
|
|
|
new_pos = yield self.get_max_stream_id_in_current_state_deltas()
|
|
|
|
yield self.runInteraction(
|
|
|
|
"populate_user_directory_temp_build", _make_staging_area
|
|
|
|
)
|
|
|
|
yield self._simple_insert(TEMP_TABLE + "_position", {"position": new_pos})
|
|
|
|
|
|
|
|
yield self._end_background_update("populate_user_directory_createtables")
|
2019-07-23 09:00:55 -04:00
|
|
|
return 1
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _populate_user_directory_cleanup(self, progress, batch_size):
|
|
|
|
"""
|
|
|
|
Update the user directory stream position, then clean up the old tables.
|
|
|
|
"""
|
|
|
|
position = yield self._simple_select_one_onecol(
|
|
|
|
TEMP_TABLE + "_position", None, "position"
|
|
|
|
)
|
|
|
|
yield self.update_user_directory_stream_pos(position)
|
|
|
|
|
|
|
|
def _delete_staging_area(txn):
|
|
|
|
txn.execute("DROP TABLE IF EXISTS " + TEMP_TABLE + "_rooms")
|
|
|
|
txn.execute("DROP TABLE IF EXISTS " + TEMP_TABLE + "_users")
|
|
|
|
txn.execute("DROP TABLE IF EXISTS " + TEMP_TABLE + "_position")
|
|
|
|
|
|
|
|
yield self.runInteraction(
|
|
|
|
"populate_user_directory_cleanup", _delete_staging_area
|
|
|
|
)
|
|
|
|
|
|
|
|
yield self._end_background_update("populate_user_directory_cleanup")
|
2019-07-23 09:00:55 -04:00
|
|
|
return 1
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _populate_user_directory_process_rooms(self, progress, batch_size):
|
2019-03-26 11:49:28 -04:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
progress (dict)
|
|
|
|
batch_size (int): Maximum number of state events to process
|
|
|
|
per cycle.
|
|
|
|
"""
|
2019-03-18 13:50:24 -04:00
|
|
|
state = self.hs.get_state_handler()
|
|
|
|
|
|
|
|
# If we don't have progress filed, delete everything.
|
|
|
|
if not progress:
|
|
|
|
yield self.delete_all_from_user_dir()
|
|
|
|
|
|
|
|
def _get_next_batch(txn):
|
2019-03-26 11:49:28 -04:00
|
|
|
# Only fetch 250 rooms, so we don't fetch too many at once, even
|
|
|
|
# if those 250 rooms have less than batch_size state events.
|
2019-03-18 13:50:24 -04:00
|
|
|
sql = """
|
2019-03-26 11:49:28 -04:00
|
|
|
SELECT room_id, events FROM %s
|
2019-03-18 13:50:24 -04:00
|
|
|
ORDER BY events DESC
|
2019-03-26 11:49:28 -04:00
|
|
|
LIMIT 250
|
2019-03-18 13:50:24 -04:00
|
|
|
""" % (
|
|
|
|
TEMP_TABLE + "_rooms",
|
|
|
|
)
|
|
|
|
txn.execute(sql)
|
|
|
|
rooms_to_work_on = txn.fetchall()
|
|
|
|
|
|
|
|
if not rooms_to_work_on:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Get how many are left to process, so we can give status on how
|
|
|
|
# far we are in processing
|
|
|
|
txn.execute("SELECT COUNT(*) FROM " + TEMP_TABLE + "_rooms")
|
|
|
|
progress["remaining"] = txn.fetchone()[0]
|
|
|
|
|
|
|
|
return rooms_to_work_on
|
|
|
|
|
|
|
|
rooms_to_work_on = yield self.runInteraction(
|
|
|
|
"populate_user_directory_temp_read", _get_next_batch
|
|
|
|
)
|
|
|
|
|
|
|
|
# No more rooms -- complete the transaction.
|
|
|
|
if not rooms_to_work_on:
|
|
|
|
yield self._end_background_update("populate_user_directory_process_rooms")
|
2019-07-23 09:00:55 -04:00
|
|
|
return 1
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
logger.info(
|
|
|
|
"Processing the next %d rooms of %d remaining"
|
|
|
|
% (len(rooms_to_work_on), progress["remaining"])
|
|
|
|
)
|
|
|
|
|
2019-03-26 11:49:28 -04:00
|
|
|
processed_event_count = 0
|
|
|
|
|
|
|
|
for room_id, event_count in rooms_to_work_on:
|
2019-03-18 13:50:24 -04:00
|
|
|
is_in_room = yield self.is_host_joined(room_id, self.server_name)
|
|
|
|
|
|
|
|
if is_in_room:
|
|
|
|
is_public = yield self.is_room_world_readable_or_publicly_joinable(
|
|
|
|
room_id
|
|
|
|
)
|
|
|
|
|
2019-04-03 09:32:20 -04:00
|
|
|
users_with_profile = yield state.get_current_users_in_room(room_id)
|
2019-03-18 13:50:24 -04:00
|
|
|
user_ids = set(users_with_profile)
|
|
|
|
|
|
|
|
# Update each user in the user directory.
|
|
|
|
for user_id, profile in users_with_profile.items():
|
|
|
|
yield self.update_profile_in_user_dir(
|
|
|
|
user_id, profile.display_name, profile.avatar_url
|
|
|
|
)
|
|
|
|
|
|
|
|
to_insert = set()
|
|
|
|
|
|
|
|
if is_public:
|
|
|
|
for user_id in user_ids:
|
|
|
|
if self.get_if_app_services_interested_in_user(user_id):
|
|
|
|
continue
|
|
|
|
|
|
|
|
to_insert.add(user_id)
|
|
|
|
|
|
|
|
if to_insert:
|
|
|
|
yield self.add_users_in_public_rooms(room_id, to_insert)
|
|
|
|
to_insert.clear()
|
|
|
|
else:
|
|
|
|
for user_id in user_ids:
|
|
|
|
if not self.hs.is_mine_id(user_id):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if self.get_if_app_services_interested_in_user(user_id):
|
|
|
|
continue
|
|
|
|
|
|
|
|
for other_user_id in user_ids:
|
|
|
|
if user_id == other_user_id:
|
|
|
|
continue
|
|
|
|
|
|
|
|
user_set = (user_id, other_user_id)
|
|
|
|
to_insert.add(user_set)
|
|
|
|
|
2019-03-20 12:06:36 -04:00
|
|
|
# If it gets too big, stop and write to the database
|
|
|
|
# to prevent storing too much in RAM.
|
|
|
|
if len(to_insert) >= self.SHARE_PRIVATE_WORKING_SET:
|
|
|
|
yield self.add_users_who_share_private_room(
|
|
|
|
room_id, to_insert
|
|
|
|
)
|
|
|
|
to_insert.clear()
|
|
|
|
|
2019-03-18 13:50:24 -04:00
|
|
|
if to_insert:
|
|
|
|
yield self.add_users_who_share_private_room(room_id, to_insert)
|
|
|
|
to_insert.clear()
|
|
|
|
|
|
|
|
# We've finished a room. Delete it from the table.
|
|
|
|
yield self._simple_delete_one(TEMP_TABLE + "_rooms", {"room_id": room_id})
|
|
|
|
# Update the remaining counter.
|
|
|
|
progress["remaining"] -= 1
|
|
|
|
yield self.runInteraction(
|
|
|
|
"populate_user_directory",
|
|
|
|
self._background_update_progress_txn,
|
|
|
|
"populate_user_directory_process_rooms",
|
|
|
|
progress,
|
|
|
|
)
|
|
|
|
|
2019-03-26 11:49:28 -04:00
|
|
|
processed_event_count += event_count
|
|
|
|
|
|
|
|
if processed_event_count > batch_size:
|
|
|
|
# Don't process any more rooms, we've hit our batch size.
|
2019-07-23 09:00:55 -04:00
|
|
|
return processed_event_count
|
2019-03-26 11:49:28 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return processed_event_count
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _populate_user_directory_process_users(self, progress, batch_size):
|
|
|
|
"""
|
|
|
|
If search_all_users is enabled, add all of the users to the user directory.
|
|
|
|
"""
|
|
|
|
if not self.hs.config.user_directory_search_all_users:
|
|
|
|
yield self._end_background_update("populate_user_directory_process_users")
|
2019-07-23 09:00:55 -04:00
|
|
|
return 1
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
def _get_next_batch(txn):
|
|
|
|
sql = "SELECT user_id FROM %s LIMIT %s" % (
|
|
|
|
TEMP_TABLE + "_users",
|
|
|
|
str(batch_size),
|
|
|
|
)
|
|
|
|
txn.execute(sql)
|
|
|
|
users_to_work_on = txn.fetchall()
|
|
|
|
|
|
|
|
if not users_to_work_on:
|
|
|
|
return None
|
|
|
|
|
|
|
|
users_to_work_on = [x[0] for x in users_to_work_on]
|
|
|
|
|
|
|
|
# Get how many are left to process, so we can give status on how
|
|
|
|
# far we are in processing
|
|
|
|
sql = "SELECT COUNT(*) FROM " + TEMP_TABLE + "_users"
|
|
|
|
txn.execute(sql)
|
|
|
|
progress["remaining"] = txn.fetchone()[0]
|
|
|
|
|
|
|
|
return users_to_work_on
|
|
|
|
|
|
|
|
users_to_work_on = yield self.runInteraction(
|
|
|
|
"populate_user_directory_temp_read", _get_next_batch
|
|
|
|
)
|
|
|
|
|
|
|
|
# No more users -- complete the transaction.
|
|
|
|
if not users_to_work_on:
|
|
|
|
yield self._end_background_update("populate_user_directory_process_users")
|
2019-07-23 09:00:55 -04:00
|
|
|
return 1
|
2019-03-18 13:50:24 -04:00
|
|
|
|
|
|
|
logger.info(
|
|
|
|
"Processing the next %d users of %d remaining"
|
|
|
|
% (len(users_to_work_on), progress["remaining"])
|
|
|
|
)
|
|
|
|
|
|
|
|
for user_id in users_to_work_on:
|
|
|
|
profile = yield self.get_profileinfo(get_localpart_from_id(user_id))
|
|
|
|
yield self.update_profile_in_user_dir(
|
|
|
|
user_id, profile.display_name, profile.avatar_url
|
|
|
|
)
|
|
|
|
|
|
|
|
# We've finished processing a user. Delete it from the table.
|
|
|
|
yield self._simple_delete_one(TEMP_TABLE + "_users", {"user_id": user_id})
|
|
|
|
# Update the remaining counter.
|
|
|
|
progress["remaining"] -= 1
|
|
|
|
yield self.runInteraction(
|
|
|
|
"populate_user_directory",
|
|
|
|
self._background_update_progress_txn,
|
|
|
|
"populate_user_directory_process_users",
|
|
|
|
progress,
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return len(users_to_work_on)
|
2019-03-18 13:50:24 -04:00
|
|
|
|
2019-02-05 07:16:28 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def is_room_world_readable_or_publicly_joinable(self, room_id):
|
2017-05-31 10:00:29 -04:00
|
|
|
"""Check if the room is either world_readable or publically joinable
|
|
|
|
"""
|
2019-02-05 07:16:28 -05:00
|
|
|
|
|
|
|
# Create a state filter that only queries join and history state event
|
|
|
|
types_to_filter = (
|
|
|
|
(EventTypes.JoinRules, ""),
|
|
|
|
(EventTypes.RoomHistoryVisibility, ""),
|
|
|
|
)
|
|
|
|
|
|
|
|
current_state_ids = yield self.get_filtered_current_state_ids(
|
2019-02-13 07:05:32 -05:00
|
|
|
room_id, StateFilter.from_types(types_to_filter)
|
2017-05-31 06:51:01 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
join_rules_id = current_state_ids.get((EventTypes.JoinRules, ""))
|
|
|
|
if join_rules_id:
|
|
|
|
join_rule_ev = yield self.get_event(join_rules_id, allow_none=True)
|
|
|
|
if join_rule_ev:
|
2017-06-01 06:09:49 -04:00
|
|
|
if join_rule_ev.content.get("join_rule") == JoinRules.PUBLIC:
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2017-05-31 06:51:01 -04:00
|
|
|
|
|
|
|
hist_vis_id = current_state_ids.get((EventTypes.RoomHistoryVisibility, ""))
|
|
|
|
if hist_vis_id:
|
|
|
|
hist_vis_ev = yield self.get_event(hist_vis_id, allow_none=True)
|
|
|
|
if hist_vis_ev:
|
|
|
|
if hist_vis_ev.content.get("history_visibility") == "world_readable":
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2017-05-31 06:51:01 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return False
|
2017-05-31 06:51:01 -04:00
|
|
|
|
2019-03-18 13:50:24 -04:00
|
|
|
def update_profile_in_user_dir(self, user_id, display_name, avatar_url):
|
|
|
|
"""
|
|
|
|
Update or add a user's profile in the user directory.
|
2017-05-31 10:00:29 -04:00
|
|
|
"""
|
2019-03-07 04:22:53 -05:00
|
|
|
|
2017-06-01 10:39:51 -04:00
|
|
|
def _update_profile_in_user_dir_txn(txn):
|
2017-06-13 06:11:26 -04:00
|
|
|
new_entry = self._simple_upsert_txn(
|
2017-06-01 10:39:51 -04:00
|
|
|
txn,
|
|
|
|
table="user_directory",
|
|
|
|
keyvalues={"user_id": user_id},
|
2017-06-13 06:11:26 -04:00
|
|
|
values={"display_name": display_name, "avatar_url": avatar_url},
|
|
|
|
lock=False, # We're only inserter
|
2017-06-01 10:39:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if isinstance(self.database_engine, PostgresEngine):
|
2017-11-29 13:27:05 -05:00
|
|
|
# We weight the localpart most highly, then display name and finally
|
2017-06-01 10:39:51 -04:00
|
|
|
# server name
|
2019-01-24 05:31:54 -05:00
|
|
|
if self.database_engine.can_native_upsert:
|
2017-06-13 06:11:26 -04:00
|
|
|
sql = """
|
|
|
|
INSERT INTO user_directory_search(user_id, vector)
|
|
|
|
VALUES (?,
|
|
|
|
setweight(to_tsvector('english', ?), 'A')
|
|
|
|
|| setweight(to_tsvector('english', ?), 'D')
|
|
|
|
|| setweight(to_tsvector('english', COALESCE(?, '')), 'B')
|
2019-01-24 05:31:54 -05:00
|
|
|
) ON CONFLICT (user_id) DO UPDATE SET vector=EXCLUDED.vector
|
2017-06-13 06:11:26 -04:00
|
|
|
"""
|
2017-06-13 06:19:18 -04:00
|
|
|
txn.execute(
|
|
|
|
sql,
|
|
|
|
(
|
2019-02-13 07:05:32 -05:00
|
|
|
user_id,
|
|
|
|
get_localpart_from_id(user_id),
|
|
|
|
get_domain_from_id(user_id),
|
|
|
|
display_name,
|
|
|
|
),
|
2017-06-13 06:11:26 -04:00
|
|
|
)
|
|
|
|
else:
|
2019-01-24 05:31:54 -05:00
|
|
|
# TODO: Remove this code after we've bumped the minimum version
|
|
|
|
# of postgres to always support upserts, so we can get rid of
|
|
|
|
# `new_entry` usage
|
|
|
|
if new_entry is True:
|
|
|
|
sql = """
|
|
|
|
INSERT INTO user_directory_search(user_id, vector)
|
|
|
|
VALUES (?,
|
|
|
|
setweight(to_tsvector('english', ?), 'A')
|
|
|
|
|| setweight(to_tsvector('english', ?), 'D')
|
|
|
|
|| setweight(to_tsvector('english', COALESCE(?, '')), 'B')
|
|
|
|
)
|
|
|
|
"""
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
|
|
|
(
|
2019-02-13 07:05:32 -05:00
|
|
|
user_id,
|
|
|
|
get_localpart_from_id(user_id),
|
|
|
|
get_domain_from_id(user_id),
|
|
|
|
display_name,
|
|
|
|
),
|
2019-01-24 05:31:54 -05:00
|
|
|
)
|
|
|
|
elif new_entry is False:
|
|
|
|
sql = """
|
|
|
|
UPDATE user_directory_search
|
|
|
|
SET vector = setweight(to_tsvector('english', ?), 'A')
|
|
|
|
|| setweight(to_tsvector('english', ?), 'D')
|
|
|
|
|| setweight(to_tsvector('english', COALESCE(?, '')), 'B')
|
|
|
|
WHERE user_id = ?
|
|
|
|
"""
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
|
|
|
(
|
|
|
|
get_localpart_from_id(user_id),
|
|
|
|
get_domain_from_id(user_id),
|
2019-02-13 07:05:32 -05:00
|
|
|
display_name,
|
|
|
|
user_id,
|
|
|
|
),
|
2019-01-24 05:31:54 -05:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise RuntimeError(
|
|
|
|
"upsert returned None when 'can_native_upsert' is False"
|
2017-06-13 06:19:18 -04:00
|
|
|
)
|
2017-06-01 10:39:51 -04:00
|
|
|
elif isinstance(self.database_engine, Sqlite3Engine):
|
2019-02-13 07:05:32 -05:00
|
|
|
value = "%s %s" % (user_id, display_name) if display_name else user_id
|
2017-06-13 06:11:26 -04:00
|
|
|
self._simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
table="user_directory_search",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
values={"value": value},
|
|
|
|
lock=False, # We're only inserter
|
2017-06-01 10:39:51 -04:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
# This should be unreachable.
|
|
|
|
raise Exception("Unrecognized database engine")
|
|
|
|
|
|
|
|
txn.call_after(self.get_user_in_directory.invalidate, (user_id,))
|
|
|
|
|
|
|
|
return self.runInteraction(
|
|
|
|
"update_profile_in_user_dir", _update_profile_in_user_dir_txn
|
|
|
|
)
|
2017-06-01 09:50:46 -04:00
|
|
|
|
2019-03-12 06:47:14 -04:00
|
|
|
def add_users_who_share_private_room(self, room_id, user_id_tuples):
|
|
|
|
"""Insert entries into the users_who_share_private_rooms table. The first
|
2017-06-15 04:59:04 -04:00
|
|
|
user should be a local user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
room_id (str)
|
|
|
|
user_id_tuples([(str, str)]): iterable of 2-tuple of user IDs.
|
|
|
|
"""
|
2019-02-13 07:05:32 -05:00
|
|
|
|
2017-06-15 04:59:04 -04:00
|
|
|
def _add_users_who_share_room_txn(txn):
|
2019-03-07 04:22:53 -05:00
|
|
|
self._simple_upsert_many_txn(
|
2017-06-15 04:59:04 -04:00
|
|
|
txn,
|
2019-03-12 06:47:14 -04:00
|
|
|
table="users_who_share_private_rooms",
|
2019-03-07 04:22:53 -05:00
|
|
|
key_names=["user_id", "other_user_id", "room_id"],
|
|
|
|
key_values=[
|
|
|
|
(user_id, other_user_id, room_id)
|
2017-06-15 04:59:04 -04:00
|
|
|
for user_id, other_user_id in user_id_tuples
|
|
|
|
],
|
2019-03-07 04:22:53 -05:00
|
|
|
value_names=(),
|
|
|
|
value_values=None,
|
2017-06-15 04:59:04 -04:00
|
|
|
)
|
2019-03-11 06:11:36 -04:00
|
|
|
|
2019-03-12 06:47:14 -04:00
|
|
|
return self.runInteraction(
|
|
|
|
"add_users_who_share_room", _add_users_who_share_room_txn
|
|
|
|
)
|
|
|
|
|
|
|
|
def add_users_in_public_rooms(self, room_id, user_ids):
|
|
|
|
"""Insert entries into the users_who_share_private_rooms table. The first
|
|
|
|
user should be a local user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
room_id (str)
|
|
|
|
user_ids (list[str])
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _add_users_in_public_rooms_txn(txn):
|
|
|
|
|
|
|
|
self._simple_upsert_many_txn(
|
|
|
|
txn,
|
|
|
|
table="users_in_public_rooms",
|
|
|
|
key_names=["user_id", "room_id"],
|
|
|
|
key_values=[(user_id, room_id) for user_id in user_ids],
|
|
|
|
value_names=(),
|
|
|
|
value_values=None,
|
|
|
|
)
|
|
|
|
|
2017-06-15 04:59:04 -04:00
|
|
|
return self.runInteraction(
|
2019-03-12 06:47:14 -04:00
|
|
|
"add_users_in_public_rooms", _add_users_in_public_rooms_txn
|
2017-06-15 04:59:04 -04:00
|
|
|
)
|
|
|
|
|
2019-10-03 13:19:08 -04:00
|
|
|
def delete_all_from_user_dir(self):
|
|
|
|
"""Delete the entire user directory
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _delete_all_from_user_dir_txn(txn):
|
|
|
|
txn.execute("DELETE FROM user_directory")
|
|
|
|
txn.execute("DELETE FROM user_directory_search")
|
|
|
|
txn.execute("DELETE FROM users_in_public_rooms")
|
|
|
|
txn.execute("DELETE FROM users_who_share_private_rooms")
|
|
|
|
txn.call_after(self.get_user_in_directory.invalidate_all)
|
|
|
|
|
|
|
|
return self.runInteraction(
|
|
|
|
"delete_all_from_user_dir", _delete_all_from_user_dir_txn
|
|
|
|
)
|
|
|
|
|
|
|
|
@cached()
|
|
|
|
def get_user_in_directory(self, user_id):
|
|
|
|
return self._simple_select_one(
|
|
|
|
table="user_directory",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcols=("display_name", "avatar_url"),
|
|
|
|
allow_none=True,
|
|
|
|
desc="get_user_in_directory",
|
|
|
|
)
|
|
|
|
|
|
|
|
def update_user_directory_stream_pos(self, stream_id):
|
|
|
|
return self._simple_update_one(
|
|
|
|
table="user_directory_stream_pos",
|
|
|
|
keyvalues={},
|
|
|
|
updatevalues={"stream_id": stream_id},
|
|
|
|
desc="update_user_directory_stream_pos",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class UserDirectoryStore(UserDirectoryBackgroundUpdateStore):
|
|
|
|
|
|
|
|
# How many records do we calculate before sending it to
|
|
|
|
# add_users_who_share_private_rooms?
|
|
|
|
SHARE_PRIVATE_WORKING_SET = 500
|
|
|
|
|
|
|
|
def __init__(self, db_conn, hs):
|
|
|
|
super(UserDirectoryStore, self).__init__(db_conn, hs)
|
|
|
|
|
|
|
|
def remove_from_user_dir(self, user_id):
|
|
|
|
def _remove_from_user_dir_txn(txn):
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn, table="user_directory", keyvalues={"user_id": user_id}
|
|
|
|
)
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn, table="user_directory_search", keyvalues={"user_id": user_id}
|
|
|
|
)
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn, table="users_in_public_rooms", keyvalues={"user_id": user_id}
|
|
|
|
)
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="users_who_share_private_rooms",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
)
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="users_who_share_private_rooms",
|
|
|
|
keyvalues={"other_user_id": user_id},
|
|
|
|
)
|
|
|
|
txn.call_after(self.get_user_in_directory.invalidate, (user_id,))
|
|
|
|
|
|
|
|
return self.runInteraction("remove_from_user_dir", _remove_from_user_dir_txn)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_users_in_dir_due_to_room(self, room_id):
|
|
|
|
"""Get all user_ids that are in the room directory because they're
|
|
|
|
in the given room_id
|
|
|
|
"""
|
|
|
|
user_ids_share_pub = yield self._simple_select_onecol(
|
|
|
|
table="users_in_public_rooms",
|
|
|
|
keyvalues={"room_id": room_id},
|
|
|
|
retcol="user_id",
|
|
|
|
desc="get_users_in_dir_due_to_room",
|
|
|
|
)
|
|
|
|
|
|
|
|
user_ids_share_priv = yield self._simple_select_onecol(
|
|
|
|
table="users_who_share_private_rooms",
|
|
|
|
keyvalues={"room_id": room_id},
|
|
|
|
retcol="other_user_id",
|
|
|
|
desc="get_users_in_dir_due_to_room",
|
|
|
|
)
|
|
|
|
|
|
|
|
user_ids = set(user_ids_share_pub)
|
|
|
|
user_ids.update(user_ids_share_priv)
|
|
|
|
|
|
|
|
return user_ids
|
|
|
|
|
2019-03-07 04:22:53 -05:00
|
|
|
def remove_user_who_share_room(self, user_id, room_id):
|
2017-06-15 04:59:04 -04:00
|
|
|
"""
|
2019-03-07 04:22:53 -05:00
|
|
|
Deletes entries in the users_who_share_*_rooms table. The first
|
2017-06-15 04:59:04 -04:00
|
|
|
user should be a local user.
|
|
|
|
|
|
|
|
Args:
|
2019-03-07 04:22:53 -05:00
|
|
|
user_id (str)
|
2017-06-15 04:59:04 -04:00
|
|
|
room_id (str)
|
|
|
|
"""
|
2019-02-13 07:05:32 -05:00
|
|
|
|
2017-06-15 04:59:04 -04:00
|
|
|
def _remove_user_who_share_room_txn(txn):
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
2019-03-07 04:22:53 -05:00
|
|
|
table="users_who_share_private_rooms",
|
|
|
|
keyvalues={"user_id": user_id, "room_id": room_id},
|
2017-06-15 04:59:04 -04:00
|
|
|
)
|
2019-03-07 04:22:53 -05:00
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="users_who_share_private_rooms",
|
|
|
|
keyvalues={"other_user_id": user_id, "room_id": room_id},
|
|
|
|
)
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
2019-03-12 06:47:14 -04:00
|
|
|
table="users_in_public_rooms",
|
2019-03-07 04:22:53 -05:00
|
|
|
keyvalues={"user_id": user_id, "room_id": room_id},
|
|
|
|
)
|
2019-03-11 06:11:36 -04:00
|
|
|
|
2017-06-15 04:59:04 -04:00
|
|
|
return self.runInteraction(
|
|
|
|
"remove_user_who_share_room", _remove_user_who_share_room_txn
|
2017-05-31 06:51:01 -04:00
|
|
|
)
|
|
|
|
|
2019-03-12 06:47:14 -04:00
|
|
|
@defer.inlineCallbacks
|
2019-03-12 10:30:54 -04:00
|
|
|
def get_user_dir_rooms_user_is_in(self, user_id):
|
2019-03-12 06:47:14 -04:00
|
|
|
"""
|
|
|
|
Returns the rooms that a user is in.
|
2017-06-15 05:15:00 -04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id(str): Must be a local user
|
|
|
|
|
|
|
|
Returns:
|
2019-03-07 04:22:53 -05:00
|
|
|
list: user_id
|
2017-06-15 05:15:00 -04:00
|
|
|
"""
|
2019-03-07 04:22:53 -05:00
|
|
|
rows = yield self._simple_select_onecol(
|
|
|
|
table="users_who_share_private_rooms",
|
|
|
|
keyvalues={"user_id": user_id},
|
2019-03-12 06:47:14 -04:00
|
|
|
retcol="room_id",
|
|
|
|
desc="get_rooms_user_is_in",
|
2019-03-07 04:22:53 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
pub_rows = yield self._simple_select_onecol(
|
2019-03-12 06:47:14 -04:00
|
|
|
table="users_in_public_rooms",
|
2019-02-13 07:05:32 -05:00
|
|
|
keyvalues={"user_id": user_id},
|
2019-03-12 06:47:14 -04:00
|
|
|
retcol="room_id",
|
|
|
|
desc="get_rooms_user_is_in",
|
2017-06-15 05:15:00 -04:00
|
|
|
)
|
|
|
|
|
2019-03-07 04:22:53 -05:00
|
|
|
users = set(pub_rows)
|
|
|
|
users.update(rows)
|
2019-07-23 09:00:55 -04:00
|
|
|
return list(users)
|
2017-06-15 05:15:00 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_rooms_in_common_for_users(self, user_id, other_user_id):
|
|
|
|
"""Given two user_ids find out the list of rooms they share.
|
|
|
|
"""
|
|
|
|
sql = """
|
|
|
|
SELECT room_id FROM (
|
|
|
|
SELECT c.room_id FROM current_state_events AS c
|
2019-07-17 10:33:37 -04:00
|
|
|
INNER JOIN room_memberships AS m USING (event_id)
|
2017-06-15 05:15:00 -04:00
|
|
|
WHERE type = 'm.room.member'
|
2019-07-17 10:33:37 -04:00
|
|
|
AND m.membership = 'join'
|
2017-06-15 05:15:00 -04:00
|
|
|
AND state_key = ?
|
|
|
|
) AS f1 INNER JOIN (
|
|
|
|
SELECT c.room_id FROM current_state_events AS c
|
2019-07-17 10:33:37 -04:00
|
|
|
INNER JOIN room_memberships AS m USING (event_id)
|
2017-06-15 05:15:00 -04:00
|
|
|
WHERE type = 'm.room.member'
|
2019-07-17 10:33:37 -04:00
|
|
|
AND m.membership = 'join'
|
2017-06-15 05:15:00 -04:00
|
|
|
AND state_key = ?
|
|
|
|
) f2 USING (room_id)
|
|
|
|
"""
|
|
|
|
|
|
|
|
rows = yield self._execute(
|
|
|
|
"get_rooms_in_common_for_users", None, sql, user_id, other_user_id
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return [room_id for room_id, in rows]
|
2017-06-15 05:15:00 -04:00
|
|
|
|
2017-05-31 06:51:01 -04:00
|
|
|
def get_user_directory_stream_pos(self):
|
|
|
|
return self._simple_select_one_onecol(
|
|
|
|
table="user_directory_stream_pos",
|
|
|
|
keyvalues={},
|
|
|
|
retcol="stream_id",
|
|
|
|
desc="get_user_directory_stream_pos",
|
|
|
|
)
|
|
|
|
|
2017-05-31 09:00:01 -04:00
|
|
|
@defer.inlineCallbacks
|
2017-06-15 05:00:28 -04:00
|
|
|
def search_user_dir(self, user_id, search_term, limit):
|
2017-05-31 10:00:29 -04: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>
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
"""
|
2017-11-29 11:46:45 -05:00
|
|
|
|
2017-12-04 09:58:39 -05:00
|
|
|
if self.hs.config.user_directory_search_all_users:
|
2019-03-18 13:50:24 -04:00
|
|
|
join_args = (user_id,)
|
|
|
|
where_clause = "user_id != ?"
|
2017-12-04 09:58:39 -05:00
|
|
|
else:
|
2018-01-25 16:20:28 -05:00
|
|
|
join_args = (user_id,)
|
2019-03-12 10:17:51 -04:00
|
|
|
where_clause = """
|
|
|
|
(
|
|
|
|
EXISTS (select 1 from users_in_public_rooms WHERE user_id = t.user_id)
|
|
|
|
OR EXISTS (
|
|
|
|
SELECT 1 FROM users_who_share_private_rooms
|
|
|
|
WHERE user_id = ? AND other_user_id = t.user_id
|
|
|
|
)
|
|
|
|
)
|
|
|
|
"""
|
2017-11-29 11:46:45 -05:00
|
|
|
|
2017-05-31 09:00:01 -04:00
|
|
|
if isinstance(self.database_engine, PostgresEngine):
|
2017-06-13 05:16:31 -04:00
|
|
|
full_query, exact_query, prefix_query = _parse_query_postgres(search_term)
|
|
|
|
|
2017-05-31 13:17:47 -04:00
|
|
|
# We order by rank and then if they have profile info
|
2017-06-13 05:16:31 -04:00
|
|
|
# The ranking algorithm is hand tweaked for "best" results. Broadly
|
|
|
|
# the idea is we give a higher weight to exact matches.
|
|
|
|
# The array of numbers are the weights for the various part of the
|
|
|
|
# search: (domain, _, display name, localpart)
|
2017-05-31 09:00:01 -04:00
|
|
|
sql = """
|
2018-03-28 06:19:45 -04:00
|
|
|
SELECT d.user_id AS user_id, display_name, avatar_url
|
2019-03-12 10:17:51 -04:00
|
|
|
FROM user_directory_search as t
|
2017-06-15 05:00:28 -04:00
|
|
|
INNER JOIN user_directory AS d USING (user_id)
|
|
|
|
WHERE
|
2017-12-04 09:58:39 -05:00
|
|
|
%s
|
2017-06-15 05:00:28 -04:00
|
|
|
AND vector @@ to_tsquery('english', ?)
|
2017-05-31 13:17:47 -04:00
|
|
|
ORDER BY
|
2019-03-07 04:22:53 -05:00
|
|
|
(CASE WHEN d.user_id IS NOT NULL THEN 4.0 ELSE 1.0 END)
|
2017-06-15 05:00:28 -04:00
|
|
|
* (CASE WHEN display_name IS NOT NULL THEN 1.2 ELSE 1.0 END)
|
|
|
|
* (CASE WHEN avatar_url IS NOT NULL THEN 1.2 ELSE 1.0 END)
|
|
|
|
* (
|
|
|
|
3 * ts_rank_cd(
|
|
|
|
'{0.1, 0.1, 0.9, 1.0}',
|
|
|
|
vector,
|
|
|
|
to_tsquery('english', ?),
|
|
|
|
8
|
|
|
|
)
|
|
|
|
+ ts_rank_cd(
|
|
|
|
'{0.1, 0.1, 0.9, 1.0}',
|
|
|
|
vector,
|
|
|
|
to_tsquery('english', ?),
|
|
|
|
8
|
|
|
|
)
|
2017-06-13 05:16:31 -04:00
|
|
|
)
|
|
|
|
DESC,
|
2017-05-31 13:17:47 -04:00
|
|
|
display_name IS NULL,
|
|
|
|
avatar_url IS NULL
|
2017-05-31 09:00:01 -04:00
|
|
|
LIMIT ?
|
2019-02-13 07:05:32 -05:00
|
|
|
""" % (
|
|
|
|
where_clause,
|
|
|
|
)
|
|
|
|
args = join_args + (full_query, exact_query, prefix_query, limit + 1)
|
2017-05-31 09:00:01 -04:00
|
|
|
elif isinstance(self.database_engine, Sqlite3Engine):
|
2017-06-13 05:16:31 -04:00
|
|
|
search_query = _parse_query_sqlite(search_term)
|
|
|
|
|
2017-05-31 09:00:01 -04:00
|
|
|
sql = """
|
2018-03-28 06:19:45 -04:00
|
|
|
SELECT d.user_id AS user_id, display_name, avatar_url
|
2019-03-12 10:17:51 -04:00
|
|
|
FROM user_directory_search as t
|
2017-06-15 05:00:28 -04:00
|
|
|
INNER JOIN user_directory AS d USING (user_id)
|
|
|
|
WHERE
|
2017-12-04 09:58:39 -05:00
|
|
|
%s
|
2017-06-15 05:00:28 -04:00
|
|
|
AND value MATCH ?
|
2017-05-31 13:17:47 -04:00
|
|
|
ORDER BY
|
2017-06-01 09:58:48 -04:00
|
|
|
rank(matchinfo(user_directory_search)) DESC,
|
2017-05-31 13:17:47 -04:00
|
|
|
display_name IS NULL,
|
|
|
|
avatar_url IS NULL
|
2017-05-31 09:00:01 -04:00
|
|
|
LIMIT ?
|
2019-02-13 07:05:32 -05:00
|
|
|
""" % (
|
|
|
|
where_clause,
|
|
|
|
)
|
2018-01-25 16:20:28 -05:00
|
|
|
args = join_args + (search_query, limit + 1)
|
2017-05-31 09:00:01 -04:00
|
|
|
else:
|
|
|
|
# This should be unreachable.
|
|
|
|
raise Exception("Unrecognized database engine")
|
|
|
|
|
|
|
|
results = yield self._execute(
|
|
|
|
"search_user_dir", self.cursor_to_dict, sql, *args
|
|
|
|
)
|
|
|
|
|
|
|
|
limited = len(results) > limit
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"limited": limited, "results": results}
|
2017-05-31 13:07:12 -04:00
|
|
|
|
|
|
|
|
2017-06-13 05:16:31 -04:00
|
|
|
def _parse_query_sqlite(search_term):
|
2017-05-31 13:07:12 -04:00
|
|
|
"""Takes a plain unicode string from the user and converts it into a form
|
|
|
|
that can be passed to database.
|
|
|
|
We use this so that we can add prefix matching, which isn't something
|
|
|
|
that is supported by default.
|
|
|
|
|
|
|
|
We specifically add both a prefix and non prefix matching term so that
|
|
|
|
exact matches get ranked higher.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Pull out the individual words, discarding any non-word characters.
|
|
|
|
results = re.findall(r"([\w\-]+)", search_term, re.UNICODE)
|
2019-02-13 07:05:32 -05:00
|
|
|
return " & ".join("(%s* OR %s)" % (result, result) for result in results)
|
2017-06-13 05:16:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _parse_query_postgres(search_term):
|
|
|
|
"""Takes a plain unicode string from the user and converts it into a form
|
|
|
|
that can be passed to database.
|
|
|
|
We use this so that we can add prefix matching, which isn't something
|
|
|
|
that is supported by default.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Pull out the individual words, discarding any non-word characters.
|
|
|
|
results = re.findall(r"([\w\-]+)", search_term, re.UNICODE)
|
|
|
|
|
2019-02-13 07:05:32 -05:00
|
|
|
both = " & ".join("(%s:* | %s)" % (result, result) for result in results)
|
2017-06-13 05:16:31 -04:00
|
|
|
exact = " & ".join("%s" % (result,) for result in results)
|
|
|
|
prefix = " & ".join("%s:*" % (result,) for result in results)
|
2017-05-31 13:07:12 -04:00
|
|
|
|
2017-06-13 05:16:31 -04:00
|
|
|
return both, exact, prefix
|