2019-10-21 07:56:42 -04:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
|
|
|
# Copyright 2018 New Vector 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-04-22 11:43:50 -04:00
|
|
|
from typing import (
|
|
|
|
TYPE_CHECKING,
|
2022-05-17 12:06:45 -04:00
|
|
|
Callable,
|
2021-04-22 11:43:50 -04:00
|
|
|
Collection,
|
|
|
|
Dict,
|
|
|
|
FrozenSet,
|
|
|
|
Iterable,
|
|
|
|
List,
|
2022-07-25 05:21:06 -04:00
|
|
|
Mapping,
|
2021-04-22 11:43:50 -04:00
|
|
|
Optional,
|
|
|
|
Set,
|
|
|
|
Tuple,
|
2021-04-23 06:47:07 -04:00
|
|
|
Union,
|
2021-04-22 11:43:50 -04:00
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2021-04-23 06:47:07 -04:00
|
|
|
import attr
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
|
|
|
from synapse.metrics import LaterGauge
|
2022-09-12 07:58:33 -04:00
|
|
|
from synapse.metrics.background_process_metrics import wrap_as_background_process
|
2020-10-02 10:20:45 -04:00
|
|
|
from synapse.storage._base import SQLBaseStore, db_to_json, make_in_list_sql_clause
|
2022-05-17 10:29:06 -04:00
|
|
|
from synapse.storage.database import (
|
|
|
|
DatabasePool,
|
|
|
|
LoggingDatabaseConnection,
|
|
|
|
LoggingTransaction,
|
|
|
|
)
|
|
|
|
from synapse.storage.databases.main.cache import CacheInvalidationWorkerStore
|
2020-08-05 16:38:57 -04:00
|
|
|
from synapse.storage.databases.main.events_worker import EventsWorkerStore
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.storage.engines import Sqlite3Engine
|
|
|
|
from synapse.storage.roommember import (
|
|
|
|
GetRoomsForUserWithStreamOrdering,
|
|
|
|
MemberSummary,
|
|
|
|
ProfileInfo,
|
|
|
|
RoomsForUser,
|
|
|
|
)
|
2022-05-17 10:29:06 -04:00
|
|
|
from synapse.types import JsonDict, PersistedEventPosition, StateMap, get_domain_from_id
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.util.async_helpers import Linearizer
|
|
|
|
from synapse.util.caches import intern_string
|
2020-08-12 12:14:34 -04:00
|
|
|
from synapse.util.caches.descriptors import _CacheContext, cached, cachedList
|
2022-09-07 07:03:32 -04:00
|
|
|
from synapse.util.cancellation import cancellable
|
2022-07-25 05:21:06 -04:00
|
|
|
from synapse.util.iterutils import batch_iter
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.util.metrics import Measure
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
if TYPE_CHECKING:
|
2021-10-22 13:15:41 -04:00
|
|
|
from synapse.server import HomeServer
|
2020-08-12 12:14:34 -04:00
|
|
|
from synapse.state import _StateCacheEntry
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
_MEMBERSHIP_PROFILE_UPDATE_NAME = "room_membership_profile_update"
|
|
|
|
_CURRENT_STATE_MEMBERSHIP_UPDATE_NAME = "current_state_events_membership"
|
|
|
|
|
|
|
|
|
2022-03-25 10:58:56 -04:00
|
|
|
@attr.s(frozen=True, slots=True, auto_attribs=True)
|
|
|
|
class EventIdMembership:
|
|
|
|
"""Returned by `get_membership_from_event_ids`"""
|
|
|
|
|
|
|
|
user_id: str
|
|
|
|
membership: str
|
|
|
|
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
class RoomMemberWorkerStore(EventsWorkerStore):
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2021-04-23 06:47:07 -04:00
|
|
|
# Used by `_get_joined_hosts` to ensure only one thing mutates the cache
|
|
|
|
# at a time. Keyed by room_id.
|
|
|
|
self._joined_host_linearizer = Linearizer("_JoinedHostsCache")
|
|
|
|
|
2022-09-14 11:53:18 -04:00
|
|
|
self._server_notices_mxid = hs.config.servernotices.server_notices_mxid
|
|
|
|
|
2020-10-07 11:27:56 -04:00
|
|
|
if (
|
2021-09-13 13:07:12 -04:00
|
|
|
self.hs.config.worker.run_background_tasks
|
2021-09-23 12:03:01 -04:00
|
|
|
and self.hs.config.metrics.metrics_flags.known_servers
|
2020-10-07 11:27:56 -04:00
|
|
|
):
|
2019-10-21 07:56:42 -04:00
|
|
|
self._known_servers_count = 1
|
|
|
|
self.hs.get_clock().looping_call(
|
2020-10-20 11:29:38 -04:00
|
|
|
self._count_known_servers,
|
|
|
|
60 * 1000,
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
self.hs.get_clock().call_later(
|
2021-06-17 10:04:26 -04:00
|
|
|
1,
|
2020-10-20 11:29:38 -04:00
|
|
|
self._count_known_servers,
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
LaterGauge(
|
|
|
|
"synapse_federation_known_servers",
|
|
|
|
"",
|
|
|
|
[],
|
|
|
|
lambda: self._known_servers_count,
|
|
|
|
)
|
|
|
|
|
2020-10-20 11:29:38 -04:00
|
|
|
@wrap_as_background_process("_count_known_servers")
|
2022-05-17 10:29:06 -04:00
|
|
|
async def _count_known_servers(self) -> int:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
Count the servers that this server knows about.
|
|
|
|
|
|
|
|
The statistic is stored on the class for the
|
|
|
|
`synapse_federation_known_servers` LaterGauge to collect.
|
|
|
|
"""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def _transact(txn: LoggingTransaction) -> int:
|
2019-10-21 07:56:42 -04:00
|
|
|
if isinstance(self.database_engine, Sqlite3Engine):
|
|
|
|
query = """
|
|
|
|
SELECT COUNT(DISTINCT substr(out.user_id, pos+1))
|
|
|
|
FROM (
|
|
|
|
SELECT rm.user_id as user_id, instr(rm.user_id, ':')
|
|
|
|
AS pos FROM room_memberships as rm
|
|
|
|
INNER JOIN current_state_events as c ON rm.event_id = c.event_id
|
|
|
|
WHERE c.type = 'm.room.member'
|
|
|
|
) as out
|
|
|
|
"""
|
|
|
|
else:
|
|
|
|
query = """
|
|
|
|
SELECT COUNT(DISTINCT split_part(state_key, ':', 2))
|
|
|
|
FROM current_state_events
|
|
|
|
WHERE type = 'm.room.member' AND membership = 'join';
|
|
|
|
"""
|
|
|
|
txn.execute(query)
|
|
|
|
return list(txn)[0][0]
|
|
|
|
|
2020-08-14 07:24:26 -04:00
|
|
|
count = await self.db_pool.runInteraction("get_known_servers", _transact)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
# We always know about ourselves, even if we have nothing in
|
|
|
|
# room_memberships (for example, the server is new).
|
|
|
|
self._known_servers_count = max([count, 1])
|
|
|
|
return self._known_servers_count
|
|
|
|
|
2022-07-25 05:21:06 -04:00
|
|
|
@cached(max_entries=100000, iterable=True)
|
2020-08-28 11:34:50 -04:00
|
|
|
async def get_users_in_room(self, room_id: str) -> List[str]:
|
2022-08-30 02:38:14 -04:00
|
|
|
"""
|
|
|
|
Returns a list of users in the room sorted by longest in the room first
|
|
|
|
(aka. with the lowest depth). This is done to match the sort in
|
|
|
|
`get_current_hosts_in_room()` and so we can re-use the cache but it's
|
|
|
|
not horrible to have here either.
|
|
|
|
|
2022-09-08 10:55:29 -04:00
|
|
|
Uses `m.room.member`s in the room state at the current forward extremities to
|
|
|
|
determine which users are in the room.
|
|
|
|
|
|
|
|
Will return inaccurate results for rooms with partial state, since the state for
|
|
|
|
the forward extremities of those rooms will exclude most members. We may also
|
|
|
|
calculate room state incorrectly for such rooms and believe that a member is or
|
|
|
|
is not in the room when the opposite is true.
|
|
|
|
"""
|
2020-08-28 11:34:50 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2019-10-21 07:56:42 -04:00
|
|
|
"get_users_in_room", self.get_users_in_room_txn, room_id
|
|
|
|
)
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def get_users_in_room_txn(self, txn: LoggingTransaction, room_id: str) -> List[str]:
|
2022-08-30 02:38:14 -04:00
|
|
|
"""
|
|
|
|
Returns a list of users in the room sorted by longest in the room first
|
|
|
|
(aka. with the lowest depth). This is done to match the sort in
|
|
|
|
`get_current_hosts_in_room()` and so we can re-use the cache but it's
|
|
|
|
not horrible to have here either.
|
|
|
|
"""
|
2022-09-12 07:58:33 -04:00
|
|
|
sql = """
|
|
|
|
SELECT c.state_key FROM current_state_events as c
|
|
|
|
/* Get the depth of the event from the events table */
|
|
|
|
INNER JOIN events AS e USING (event_id)
|
|
|
|
WHERE c.type = 'm.room.member' AND c.room_id = ? AND membership = ?
|
|
|
|
/* Sorted by lowest depth first */
|
|
|
|
ORDER BY e.depth ASC;
|
|
|
|
"""
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
txn.execute(sql, (room_id, Membership.JOIN))
|
2020-05-15 14:12:03 -04:00
|
|
|
return [r[0] for r in txn]
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-07-11 16:08:39 -04:00
|
|
|
@cached()
|
|
|
|
def get_user_in_room_with_profile(
|
|
|
|
self, room_id: str, user_id: str
|
|
|
|
) -> Dict[str, ProfileInfo]:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@cachedList(
|
|
|
|
cached_method_name="get_user_in_room_with_profile", list_name="user_ids"
|
|
|
|
)
|
|
|
|
async def get_subset_users_in_room_with_profiles(
|
|
|
|
self, room_id: str, user_ids: Collection[str]
|
|
|
|
) -> Dict[str, ProfileInfo]:
|
|
|
|
"""Get a mapping from user ID to profile information for a list of users
|
|
|
|
in a given room.
|
|
|
|
|
|
|
|
The profile information comes directly from this room's `m.room.member`
|
|
|
|
events, and so may be specific to this room rather than part of a user's
|
|
|
|
global profile. To avoid privacy leaks, the profile data should only be
|
|
|
|
revealed to users who are already in this room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
room_id: The ID of the room to retrieve the users of.
|
|
|
|
user_ids: a list of users in the room to run the query for
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A mapping from user ID to ProfileInfo.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def _get_subset_users_in_room_with_profiles(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> Dict[str, ProfileInfo]:
|
|
|
|
clause, ids = make_in_list_sql_clause(
|
2022-07-18 15:35:45 -04:00
|
|
|
self.database_engine, "c.state_key", user_ids
|
2022-07-11 16:08:39 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT state_key, display_name, avatar_url FROM room_memberships as m
|
|
|
|
INNER JOIN current_state_events as c
|
|
|
|
ON m.event_id = c.event_id
|
|
|
|
AND m.room_id = c.room_id
|
|
|
|
AND m.user_id = c.state_key
|
|
|
|
WHERE c.type = 'm.room.member' AND c.room_id = ? AND m.membership = ? AND %s
|
|
|
|
""" % (
|
|
|
|
clause,
|
|
|
|
)
|
|
|
|
txn.execute(sql, (room_id, Membership.JOIN, *ids))
|
|
|
|
|
|
|
|
return {r[0]: ProfileInfo(display_name=r[1], avatar_url=r[2]) for r in txn}
|
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_subset_users_in_room_with_profiles",
|
|
|
|
_get_subset_users_in_room_with_profiles,
|
|
|
|
)
|
|
|
|
|
2021-04-16 13:17:18 -04:00
|
|
|
@cached(max_entries=100000, iterable=True)
|
|
|
|
async def get_users_in_room_with_profiles(
|
|
|
|
self, room_id: str
|
|
|
|
) -> Dict[str, ProfileInfo]:
|
|
|
|
"""Get a mapping from user ID to profile information for all users in a given room.
|
|
|
|
|
2021-09-10 05:54:38 -04:00
|
|
|
The profile information comes directly from this room's `m.room.member`
|
|
|
|
events, and so may be specific to this room rather than part of a user's
|
|
|
|
global profile. To avoid privacy leaks, the profile data should only be
|
|
|
|
revealed to users who are already in this room.
|
|
|
|
|
2021-04-16 13:17:18 -04:00
|
|
|
Args:
|
|
|
|
room_id: The ID of the room to retrieve the users of.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A mapping from user ID to ProfileInfo.
|
2022-08-16 08:16:56 -04:00
|
|
|
|
|
|
|
Preconditions:
|
|
|
|
- There is full state available for the room (it is not partial-stated).
|
2021-04-16 13:17:18 -04:00
|
|
|
"""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def _get_users_in_room_with_profiles(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> Dict[str, ProfileInfo]:
|
2021-04-16 13:17:18 -04:00
|
|
|
sql = """
|
2021-05-05 11:49:34 -04:00
|
|
|
SELECT state_key, display_name, avatar_url FROM room_memberships as m
|
|
|
|
INNER JOIN current_state_events as c
|
|
|
|
ON m.event_id = c.event_id
|
|
|
|
AND m.room_id = c.room_id
|
|
|
|
AND m.user_id = c.state_key
|
|
|
|
WHERE c.type = 'm.room.member' AND c.room_id = ? AND m.membership = ?
|
2021-04-16 13:17:18 -04:00
|
|
|
"""
|
|
|
|
txn.execute(sql, (room_id, Membership.JOIN))
|
|
|
|
|
|
|
|
return {r[0]: ProfileInfo(display_name=r[1], avatar_url=r[2]) for r in txn}
|
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_users_in_room_with_profiles",
|
|
|
|
_get_users_in_room_with_profiles,
|
|
|
|
)
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
@cached(max_entries=100000)
|
2020-08-28 11:34:50 -04:00
|
|
|
async def get_room_summary(self, room_id: str) -> Dict[str, MemberSummary]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get the details of a room roughly suitable for use by the room
|
|
|
|
summary extension to /sync. Useful when lazy loading room members.
|
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
room_id: The room ID to query
|
2019-10-21 07:56:42 -04:00
|
|
|
Returns:
|
2020-08-28 11:34:50 -04:00
|
|
|
dict of membership states, pointing to a MemberSummary named tuple.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def _get_room_summary_txn(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> Dict[str, MemberSummary]:
|
2019-10-21 07:56:42 -04:00
|
|
|
# first get counts.
|
|
|
|
# We do this all in one transaction to keep the cache small.
|
|
|
|
# FIXME: get rid of this when we have room_stats
|
|
|
|
|
2022-09-12 07:58:33 -04:00
|
|
|
# Note, rejected events will have a null membership field, so
|
|
|
|
# we we manually filter them out.
|
|
|
|
sql = """
|
|
|
|
SELECT count(*), membership FROM current_state_events
|
|
|
|
WHERE type = 'm.room.member' AND room_id = ?
|
|
|
|
AND membership IS NOT NULL
|
|
|
|
GROUP BY membership
|
|
|
|
"""
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
txn.execute(sql, (room_id,))
|
2022-05-17 10:29:06 -04:00
|
|
|
res: Dict[str, MemberSummary] = {}
|
2019-10-21 07:56:42 -04:00
|
|
|
for count, membership in txn:
|
2022-03-09 10:29:39 -05:00
|
|
|
res.setdefault(membership, MemberSummary([], count))
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
# we order by membership and then fairly arbitrarily by event_id so
|
|
|
|
# heroes are consistent
|
2022-09-12 07:58:33 -04:00
|
|
|
# Note, rejected events will have a null membership field, so
|
|
|
|
# we we manually filter them out.
|
|
|
|
sql = """
|
|
|
|
SELECT state_key, membership, event_id
|
|
|
|
FROM current_state_events
|
|
|
|
WHERE type = 'm.room.member' AND room_id = ?
|
|
|
|
AND membership IS NOT NULL
|
|
|
|
ORDER BY
|
|
|
|
CASE membership WHEN ? THEN 1 WHEN ? THEN 2 ELSE 3 END ASC,
|
|
|
|
event_id ASC
|
|
|
|
LIMIT ?
|
|
|
|
"""
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
# 6 is 5 (number of heroes) plus 1, in case one of them is the calling user.
|
|
|
|
txn.execute(sql, (room_id, Membership.JOIN, Membership.INVITE, 6))
|
|
|
|
for user_id, membership, event_id in txn:
|
2020-05-15 14:12:03 -04:00
|
|
|
summary = res[membership]
|
2019-10-21 07:56:42 -04:00
|
|
|
# we will always have a summary for this membership type at this
|
|
|
|
# point given the summary currently contains the counts.
|
|
|
|
members = summary.members
|
2020-05-15 14:12:03 -04:00
|
|
|
members.append((user_id, event_id))
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
return res
|
|
|
|
|
2020-08-28 11:34:50 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_room_summary", _get_room_summary_txn
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-07-11 16:08:39 -04:00
|
|
|
@cached()
|
|
|
|
async def get_number_joined_users_in_room(self, room_id: str) -> int:
|
|
|
|
return await self.db_pool.simple_select_one_onecol(
|
|
|
|
table="current_state_events",
|
|
|
|
keyvalues={"room_id": room_id, "membership": Membership.JOIN},
|
|
|
|
retcol="COUNT(*)",
|
|
|
|
desc="get_number_joined_users_in_room",
|
|
|
|
)
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
@cached()
|
2021-08-18 09:22:07 -04:00
|
|
|
async def get_invited_rooms_for_local_user(
|
|
|
|
self, user_id: str
|
|
|
|
) -> List[RoomsForUser]:
|
2020-08-12 12:14:34 -04:00
|
|
|
"""Get all the rooms the *local* user is invited to.
|
2020-01-15 09:59:33 -05:00
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
user_id: The user ID.
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
Returns:
|
2020-08-28 11:34:50 -04:00
|
|
|
A list of RoomsForUser.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2020-08-28 11:34:50 -04:00
|
|
|
return await self.get_rooms_for_local_user_where_membership_is(
|
2020-01-15 09:59:33 -05:00
|
|
|
user_id, [Membership.INVITE]
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
async def get_invite_for_local_user_in_room(
|
|
|
|
self, user_id: str, room_id: str
|
|
|
|
) -> Optional[RoomsForUser]:
|
|
|
|
"""Gets the invite for the given *local* user and room.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
user_id: The user ID to find the invite of.
|
|
|
|
room_id: The room to user was invited to.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-12 12:14:34 -04:00
|
|
|
Either a RoomsForUser or None if no invite was found.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
2020-08-12 12:14:34 -04:00
|
|
|
invites = await self.get_invited_rooms_for_local_user(user_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
for invite in invites:
|
|
|
|
if invite.room_id == room_id:
|
|
|
|
return invite
|
|
|
|
return None
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
async def get_rooms_for_local_user_where_membership_is(
|
2022-03-30 05:43:04 -04:00
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
membership_list: Collection[str],
|
|
|
|
excluded_rooms: Optional[List[str]] = None,
|
2020-09-03 07:54:10 -04:00
|
|
|
) -> List[RoomsForUser]:
|
2020-08-12 12:14:34 -04:00
|
|
|
"""Get all the rooms for this *local* user where the membership for this user
|
2019-10-21 07:56:42 -04:00
|
|
|
matches one in the membership list.
|
|
|
|
|
|
|
|
Filters out forgotten rooms.
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
user_id: The user ID.
|
|
|
|
membership_list: A list of synapse.api.constants.Membership
|
|
|
|
values which the user must be in.
|
2022-03-30 05:43:04 -04:00
|
|
|
excluded_rooms: A list of rooms to ignore.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-12 12:14:34 -04:00
|
|
|
The RoomsForUser that the user matches the membership types.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
if not membership_list:
|
2020-09-03 07:54:10 -04:00
|
|
|
return []
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
rooms = await self.db_pool.runInteraction(
|
2020-01-15 09:59:33 -05:00
|
|
|
"get_rooms_for_local_user_where_membership_is",
|
|
|
|
self._get_rooms_for_local_user_where_membership_is_txn,
|
2019-10-21 07:56:42 -04:00
|
|
|
user_id,
|
|
|
|
membership_list,
|
|
|
|
)
|
|
|
|
|
2022-03-30 05:43:04 -04:00
|
|
|
# Now we filter out forgotten and excluded rooms
|
|
|
|
rooms_to_exclude: Set[str] = await self.get_forgotten_rooms_for_user(user_id)
|
|
|
|
|
|
|
|
if excluded_rooms is not None:
|
|
|
|
rooms_to_exclude.update(set(excluded_rooms))
|
|
|
|
|
|
|
|
return [room for room in rooms if room.room_id not in rooms_to_exclude]
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-15 09:59:33 -05:00
|
|
|
def _get_rooms_for_local_user_where_membership_is_txn(
|
2022-03-30 05:43:04 -04:00
|
|
|
self,
|
2022-05-17 10:29:06 -04:00
|
|
|
txn: LoggingTransaction,
|
2022-03-30 05:43:04 -04:00
|
|
|
user_id: str,
|
|
|
|
membership_list: List[str],
|
2020-08-12 12:14:34 -04:00
|
|
|
) -> List[RoomsForUser]:
|
2022-07-11 16:08:39 -04:00
|
|
|
"""Get all the rooms for this *local* user where the membership for this user
|
|
|
|
matches one in the membership list.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id: The user ID.
|
|
|
|
membership_list: A list of synapse.api.constants.Membership
|
|
|
|
values which the user must be in.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The RoomsForUser that the user matches the membership types.
|
|
|
|
"""
|
2020-01-15 09:59:33 -05:00
|
|
|
# Paranoia check.
|
|
|
|
if not self.hs.is_mine_id(user_id):
|
|
|
|
raise Exception(
|
|
|
|
"Cannot call 'get_rooms_for_local_user_where_membership_is' on non-local user %r"
|
|
|
|
% (user_id,),
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-15 09:59:33 -05:00
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self.database_engine, "c.membership", membership_list
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-15 09:59:33 -05:00
|
|
|
sql = """
|
2021-08-19 11:12:55 -04:00
|
|
|
SELECT room_id, e.sender, c.membership, event_id, e.stream_ordering, r.room_version
|
2020-01-15 09:59:33 -05:00
|
|
|
FROM local_current_membership AS c
|
|
|
|
INNER JOIN events AS e USING (room_id, event_id)
|
2021-08-19 11:12:55 -04:00
|
|
|
INNER JOIN rooms AS r USING (room_id)
|
2020-01-15 09:59:33 -05:00
|
|
|
WHERE
|
|
|
|
user_id = ?
|
|
|
|
AND %s
|
|
|
|
""" % (
|
|
|
|
clause,
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-15 09:59:33 -05:00
|
|
|
txn.execute(sql, (user_id, *args))
|
2021-08-19 11:12:55 -04:00
|
|
|
results = [RoomsForUser(*r) for r in txn]
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
return results
|
|
|
|
|
2022-07-11 16:08:39 -04:00
|
|
|
@cached(iterable=True)
|
|
|
|
async def get_local_users_in_room(self, room_id: str) -> List[str]:
|
|
|
|
"""
|
|
|
|
Retrieves a list of the current roommembers who are local to the server.
|
|
|
|
"""
|
|
|
|
return await self.db_pool.simple_select_onecol(
|
|
|
|
table="local_current_membership",
|
|
|
|
keyvalues={"room_id": room_id, "membership": Membership.JOIN},
|
|
|
|
retcol="user_id",
|
|
|
|
desc="get_local_users_in_room",
|
|
|
|
)
|
|
|
|
|
2022-08-24 15:13:12 -04:00
|
|
|
async def check_local_user_in_room(self, user_id: str, room_id: str) -> bool:
|
|
|
|
"""
|
|
|
|
Check whether a given local user is currently joined to the given room.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A boolean indicating whether the user is currently joined to the room
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
Exeption when called with a non-local user to this homeserver
|
|
|
|
"""
|
|
|
|
if not self.hs.is_mine_id(user_id):
|
|
|
|
raise Exception(
|
|
|
|
"Cannot call 'check_local_user_in_room' on "
|
|
|
|
"non-local user %s" % (user_id,),
|
|
|
|
)
|
|
|
|
|
|
|
|
(
|
|
|
|
membership,
|
|
|
|
member_event_id,
|
|
|
|
) = await self.get_local_current_membership_for_user_in_room(
|
|
|
|
user_id=user_id,
|
|
|
|
room_id=room_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
return membership == Membership.JOIN
|
|
|
|
|
2022-09-14 11:53:18 -04:00
|
|
|
async def is_server_notice_room(self, room_id: str) -> bool:
|
|
|
|
"""
|
|
|
|
Determines whether the given room is a 'Server Notices' room, used for
|
|
|
|
sending server notices to a user.
|
|
|
|
|
|
|
|
This is determined by seeing whether the server notices user is present
|
|
|
|
in the room.
|
|
|
|
"""
|
|
|
|
if self._server_notices_mxid is None:
|
|
|
|
return False
|
|
|
|
is_server_notices_room = await self.check_local_user_in_room(
|
|
|
|
user_id=self._server_notices_mxid, room_id=room_id
|
|
|
|
)
|
|
|
|
return is_server_notices_room
|
|
|
|
|
2020-11-25 15:06:13 -05:00
|
|
|
async def get_local_current_membership_for_user_in_room(
|
|
|
|
self, user_id: str, room_id: str
|
|
|
|
) -> Tuple[Optional[str], Optional[str]]:
|
|
|
|
"""Retrieve the current local membership state and event ID for a user in a room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id: The ID of the user.
|
|
|
|
room_id: The ID of the room.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A tuple of (membership_type, event_id). Both will be None if a
|
|
|
|
room_id/user_id pair is not found.
|
|
|
|
"""
|
|
|
|
# Paranoia check.
|
|
|
|
if not self.hs.is_mine_id(user_id):
|
|
|
|
raise Exception(
|
|
|
|
"Cannot call 'get_local_current_membership_for_user_in_room' on "
|
|
|
|
"non-local user %s" % (user_id,),
|
|
|
|
)
|
|
|
|
|
|
|
|
results_dict = await self.db_pool.simple_select_one(
|
|
|
|
"local_current_membership",
|
|
|
|
{"room_id": room_id, "user_id": user_id},
|
|
|
|
("membership", "event_id"),
|
|
|
|
allow_none=True,
|
|
|
|
desc="get_local_current_membership_for_user_in_room",
|
|
|
|
)
|
|
|
|
if not results_dict:
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
return results_dict.get("membership"), results_dict.get("event_id")
|
|
|
|
|
2022-07-25 05:21:06 -04:00
|
|
|
@cached(max_entries=500000, iterable=True)
|
2020-08-28 11:34:50 -04:00
|
|
|
async def get_rooms_for_user_with_stream_ordering(
|
|
|
|
self, user_id: str
|
|
|
|
) -> FrozenSet[GetRoomsForUserWithStreamOrdering]:
|
2020-01-15 09:59:33 -05:00
|
|
|
"""Returns a set of room_ids the user is currently joined to.
|
|
|
|
|
|
|
|
If a remote user only returns rooms this server is currently
|
|
|
|
participating in.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
user_id
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-28 11:34:50 -04:00
|
|
|
Returns the rooms the user is in currently, along with the stream
|
2021-08-19 11:12:55 -04:00
|
|
|
ordering of the most recent join for that user and room, along with
|
|
|
|
the room version of the room.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
2020-08-28 11:34:50 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2020-01-15 09:59:33 -05:00
|
|
|
"get_rooms_for_user_with_stream_ordering",
|
|
|
|
self._get_rooms_for_user_with_stream_ordering_txn,
|
|
|
|
user_id,
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
|
2020-08-28 11:34:50 -04:00
|
|
|
def _get_rooms_for_user_with_stream_ordering_txn(
|
2022-05-17 10:29:06 -04:00
|
|
|
self, txn: LoggingTransaction, user_id: str
|
2020-08-28 11:34:50 -04:00
|
|
|
) -> FrozenSet[GetRoomsForUserWithStreamOrdering]:
|
2020-01-15 09:59:33 -05:00
|
|
|
# We use `current_state_events` here and not `local_current_membership`
|
|
|
|
# as a) this gets called with remote users and b) this only gets called
|
|
|
|
# for rooms the server is participating in.
|
2022-09-12 07:58:33 -04:00
|
|
|
sql = """
|
|
|
|
SELECT room_id, e.instance_name, e.stream_ordering
|
|
|
|
FROM current_state_events AS c
|
|
|
|
INNER JOIN events AS e USING (room_id, event_id)
|
|
|
|
WHERE
|
|
|
|
c.type = 'm.room.member'
|
|
|
|
AND c.state_key = ?
|
|
|
|
AND c.membership = ?
|
|
|
|
"""
|
2020-01-15 09:59:33 -05:00
|
|
|
|
|
|
|
txn.execute(sql, (user_id, Membership.JOIN))
|
2020-09-24 08:24:17 -04:00
|
|
|
return frozenset(
|
|
|
|
GetRoomsForUserWithStreamOrdering(
|
|
|
|
room_id, PersistedEventPosition(instance, stream_id)
|
|
|
|
)
|
|
|
|
for room_id, instance, stream_id in txn
|
|
|
|
)
|
2020-01-15 09:59:33 -05:00
|
|
|
|
2022-02-15 10:01:00 -05:00
|
|
|
@cachedList(
|
|
|
|
cached_method_name="get_rooms_for_user_with_stream_ordering",
|
|
|
|
list_name="user_ids",
|
|
|
|
)
|
|
|
|
async def get_rooms_for_users_with_stream_ordering(
|
|
|
|
self, user_ids: Collection[str]
|
|
|
|
) -> Dict[str, FrozenSet[GetRoomsForUserWithStreamOrdering]]:
|
|
|
|
"""A batched version of `get_rooms_for_user_with_stream_ordering`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Map from user_id to set of rooms that is currently in.
|
|
|
|
"""
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_rooms_for_users_with_stream_ordering",
|
|
|
|
self._get_rooms_for_users_with_stream_ordering_txn,
|
|
|
|
user_ids,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _get_rooms_for_users_with_stream_ordering_txn(
|
2022-05-17 10:29:06 -04:00
|
|
|
self, txn: LoggingTransaction, user_ids: Collection[str]
|
2022-02-15 10:01:00 -05:00
|
|
|
) -> Dict[str, FrozenSet[GetRoomsForUserWithStreamOrdering]]:
|
|
|
|
|
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self.database_engine,
|
|
|
|
"c.state_key",
|
|
|
|
user_ids,
|
|
|
|
)
|
|
|
|
|
2022-09-12 07:58:33 -04:00
|
|
|
sql = f"""
|
|
|
|
SELECT c.state_key, room_id, e.instance_name, e.stream_ordering
|
|
|
|
FROM current_state_events AS c
|
|
|
|
INNER JOIN events AS e USING (room_id, event_id)
|
|
|
|
WHERE
|
|
|
|
c.type = 'm.room.member'
|
|
|
|
AND c.membership = ?
|
|
|
|
AND {clause}
|
|
|
|
"""
|
2022-02-15 10:01:00 -05:00
|
|
|
|
|
|
|
txn.execute(sql, [Membership.JOIN] + args)
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
result: Dict[str, Set[GetRoomsForUserWithStreamOrdering]] = {
|
|
|
|
user_id: set() for user_id in user_ids
|
|
|
|
}
|
2022-02-15 10:01:00 -05:00
|
|
|
for user_id, room_id, instance, stream_id in txn:
|
|
|
|
result[user_id].add(
|
|
|
|
GetRoomsForUserWithStreamOrdering(
|
|
|
|
room_id, PersistedEventPosition(instance, stream_id)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
return {user_id: frozenset(v) for user_id, v in result.items()}
|
|
|
|
|
2020-01-30 11:10:30 -05:00
|
|
|
async def get_users_server_still_shares_room_with(
|
|
|
|
self, user_ids: Collection[str]
|
|
|
|
) -> Set[str]:
|
|
|
|
"""Given a list of users return the set that the server still share a
|
|
|
|
room with.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not user_ids:
|
|
|
|
return set()
|
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_users_server_still_shares_room_with",
|
|
|
|
self.get_users_server_still_shares_room_with_txn,
|
|
|
|
user_ids,
|
|
|
|
)
|
2020-01-30 11:10:30 -05:00
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
def get_users_server_still_shares_room_with_txn(
|
|
|
|
self,
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
user_ids: Collection[str],
|
|
|
|
) -> Set[str]:
|
|
|
|
if not user_ids:
|
|
|
|
return set()
|
2020-01-30 11:10:30 -05:00
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
sql = """
|
|
|
|
SELECT state_key FROM current_state_events
|
|
|
|
WHERE
|
|
|
|
type = 'm.room.member'
|
|
|
|
AND membership = 'join'
|
|
|
|
AND %s
|
|
|
|
GROUP BY state_key
|
|
|
|
"""
|
2020-01-30 11:10:30 -05:00
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self.database_engine, "state_key", user_ids
|
2020-01-30 11:10:30 -05:00
|
|
|
)
|
|
|
|
|
2022-09-27 08:01:08 -04:00
|
|
|
txn.execute(sql % (clause,), args)
|
|
|
|
|
|
|
|
return {row[0] for row in txn}
|
|
|
|
|
2022-09-07 07:03:32 -04:00
|
|
|
@cancellable
|
2021-08-18 09:22:07 -04:00
|
|
|
async def get_rooms_for_user(
|
2022-05-17 12:06:45 -04:00
|
|
|
self, user_id: str, on_invalidate: Optional[Callable[[], None]] = None
|
2021-08-18 09:22:07 -04:00
|
|
|
) -> FrozenSet[str]:
|
2020-01-15 09:59:33 -05:00
|
|
|
"""Returns a set of room_ids the user is currently joined to.
|
|
|
|
|
|
|
|
If a remote user only returns rooms this server is currently
|
|
|
|
participating in.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
2020-08-12 12:14:34 -04:00
|
|
|
rooms = await self.get_rooms_for_user_with_stream_ordering(
|
2019-10-21 07:56:42 -04:00
|
|
|
user_id, on_invalidate=on_invalidate
|
|
|
|
)
|
|
|
|
return frozenset(r.room_id for r in rooms)
|
|
|
|
|
2022-07-25 05:21:06 -04:00
|
|
|
@cached(max_entries=10000)
|
|
|
|
async def does_pair_of_users_share_a_room(
|
|
|
|
self, user_id: str, other_user_id: str
|
|
|
|
) -> bool:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@cachedList(
|
|
|
|
cached_method_name="does_pair_of_users_share_a_room", list_name="other_user_ids"
|
2021-09-22 09:21:58 -04:00
|
|
|
)
|
2022-07-25 05:21:06 -04:00
|
|
|
async def _do_users_share_a_room(
|
|
|
|
self, user_id: str, other_user_ids: Collection[str]
|
|
|
|
) -> Mapping[str, Optional[bool]]:
|
|
|
|
"""Return mapping from user ID to whether they share a room with the
|
|
|
|
given user.
|
|
|
|
|
|
|
|
Note: `None` and `False` are equivalent and mean they don't share a
|
|
|
|
room.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def do_users_share_a_room_txn(
|
|
|
|
txn: LoggingTransaction, user_ids: Collection[str]
|
|
|
|
) -> Dict[str, bool]:
|
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self.database_engine, "state_key", user_ids
|
|
|
|
)
|
|
|
|
|
|
|
|
# This query works by fetching both the list of rooms for the target
|
|
|
|
# user and the set of other users, and then checking if there is any
|
|
|
|
# overlap.
|
|
|
|
sql = f"""
|
|
|
|
SELECT b.state_key
|
|
|
|
FROM (
|
|
|
|
SELECT room_id FROM current_state_events
|
|
|
|
WHERE type = 'm.room.member' AND membership = 'join' AND state_key = ?
|
|
|
|
) AS a
|
|
|
|
INNER JOIN (
|
|
|
|
SELECT room_id, state_key FROM current_state_events
|
|
|
|
WHERE type = 'm.room.member' AND membership = 'join' AND {clause}
|
|
|
|
) AS b using (room_id)
|
|
|
|
LIMIT 1
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(sql, (user_id, *args))
|
|
|
|
return {u: True for u, in txn}
|
|
|
|
|
|
|
|
to_return = {}
|
|
|
|
for batch_user_ids in batch_iter(other_user_ids, 1000):
|
|
|
|
res = await self.db_pool.runInteraction(
|
|
|
|
"do_users_share_a_room", do_users_share_a_room_txn, batch_user_ids
|
|
|
|
)
|
|
|
|
to_return.update(res)
|
|
|
|
|
|
|
|
return to_return
|
|
|
|
|
|
|
|
async def do_users_share_a_room(
|
|
|
|
self, user_id: str, other_user_ids: Collection[str]
|
2020-08-12 12:14:34 -04:00
|
|
|
) -> Set[str]:
|
2022-07-25 05:21:06 -04:00
|
|
|
"""Return the set of users who share a room with the first users"""
|
|
|
|
|
|
|
|
user_dict = await self._do_users_share_a_room(user_id, other_user_ids)
|
|
|
|
|
|
|
|
return {u for u, share_room in user_dict.items() if share_room}
|
|
|
|
|
|
|
|
async def get_users_who_share_room_with_user(self, user_id: str) -> Set[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Returns the set of users who share a room with `user_id`"""
|
2022-07-25 05:21:06 -04:00
|
|
|
room_ids = await self.get_rooms_for_user(user_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
user_who_share_room = set()
|
|
|
|
for room_id in room_ids:
|
2022-07-25 05:21:06 -04:00
|
|
|
user_ids = await self.get_users_in_room(room_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
user_who_share_room.update(user_ids)
|
|
|
|
|
|
|
|
return user_who_share_room
|
|
|
|
|
2022-05-30 05:05:31 -04:00
|
|
|
@cached(cache_context=True, iterable=True)
|
|
|
|
async def get_mutual_rooms_between_users(
|
|
|
|
self, user_ids: FrozenSet[str], cache_context: _CacheContext
|
|
|
|
) -> FrozenSet[str]:
|
|
|
|
"""
|
|
|
|
Returns the set of rooms that all users in `user_ids` share.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_ids: A frozen set of all users to investigate and return
|
|
|
|
overlapping joined rooms for.
|
|
|
|
cache_context
|
|
|
|
"""
|
|
|
|
shared_room_ids: Optional[FrozenSet[str]] = None
|
|
|
|
for user_id in user_ids:
|
|
|
|
room_ids = await self.get_rooms_for_user(
|
|
|
|
user_id, on_invalidate=cache_context.invalidate
|
|
|
|
)
|
|
|
|
if shared_room_ids is not None:
|
|
|
|
shared_room_ids &= room_ids
|
|
|
|
else:
|
|
|
|
shared_room_ids = room_ids
|
|
|
|
|
|
|
|
return shared_room_ids or frozenset()
|
|
|
|
|
2022-08-23 05:49:59 -04:00
|
|
|
async def get_joined_user_ids_from_state(
|
2022-08-31 07:19:39 -04:00
|
|
|
self, room_id: str, state: StateMap[str]
|
2022-08-23 05:49:59 -04:00
|
|
|
) -> Set[str]:
|
2022-08-31 07:19:39 -04:00
|
|
|
"""
|
|
|
|
For a given set of state IDs, get a set of user IDs in the room.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-31 07:19:39 -04:00
|
|
|
This method checks the local event cache, before calling
|
|
|
|
`_get_user_ids_from_membership_event_ids` for any uncached events.
|
|
|
|
"""
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-31 07:19:39 -04:00
|
|
|
with Measure(self._clock, "get_joined_user_ids_from_state"):
|
|
|
|
users_in_room = set()
|
|
|
|
member_event_ids = [
|
|
|
|
e_id for key, e_id in state.items() if key[0] == EventTypes.Member
|
|
|
|
]
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-31 07:19:39 -04:00
|
|
|
# We check if we have any of the member event ids in the event cache
|
|
|
|
# before we ask the DB
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-31 07:19:39 -04:00
|
|
|
# We don't update the event cache hit ratio as it completely throws off
|
|
|
|
# the hit ratio counts. After all, we don't populate the cache if we
|
|
|
|
# miss it here
|
|
|
|
event_map = self._get_events_from_local_cache(
|
|
|
|
member_event_ids, update_metrics=False
|
2022-08-23 10:14:05 -04:00
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-31 07:19:39 -04:00
|
|
|
missing_member_event_ids = []
|
|
|
|
for event_id in member_event_ids:
|
|
|
|
ev_entry = event_map.get(event_id)
|
|
|
|
if ev_entry and not ev_entry.event.rejected_reason:
|
|
|
|
if ev_entry.event.membership == Membership.JOIN:
|
|
|
|
users_in_room.add(ev_entry.event.state_key)
|
|
|
|
else:
|
|
|
|
missing_member_event_ids.append(event_id)
|
|
|
|
|
|
|
|
if missing_member_event_ids:
|
|
|
|
event_to_memberships = (
|
|
|
|
await self._get_user_ids_from_membership_event_ids(
|
|
|
|
missing_member_event_ids
|
|
|
|
)
|
|
|
|
)
|
|
|
|
users_in_room.update(
|
|
|
|
user_id for user_id in event_to_memberships.values() if user_id
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-31 07:19:39 -04:00
|
|
|
return users_in_room
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-08-23 05:49:59 -04:00
|
|
|
@cached(
|
|
|
|
max_entries=10000,
|
|
|
|
# This name matches the old function that has been replaced - the cache name
|
|
|
|
# is kept here to maintain backwards compatibility.
|
|
|
|
name="_get_joined_profile_from_event_id",
|
|
|
|
)
|
|
|
|
def _get_user_id_from_membership_event_id(
|
2022-05-17 10:29:06 -04:00
|
|
|
self, event_id: str
|
|
|
|
) -> Optional[Tuple[str, ProfileInfo]]:
|
2019-10-21 07:56:42 -04:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@cachedList(
|
2022-08-23 05:49:59 -04:00
|
|
|
cached_method_name="_get_user_id_from_membership_event_id",
|
2020-08-14 07:24:26 -04:00
|
|
|
list_name="event_ids",
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
2022-08-23 05:49:59 -04:00
|
|
|
async def _get_user_ids_from_membership_event_ids(
|
2022-05-17 10:29:06 -04:00
|
|
|
self, event_ids: Iterable[str]
|
2022-08-23 10:14:05 -04:00
|
|
|
) -> Dict[str, Optional[str]]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""For given set of member event_ids check if they point to a join
|
2022-08-23 10:14:05 -04:00
|
|
|
event.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
event_ids: The member event IDs to lookup
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2022-08-23 10:14:05 -04:00
|
|
|
Map from event ID to `user_id`, or None if event is not a join.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2020-08-14 07:24:26 -04:00
|
|
|
rows = await self.db_pool.simple_select_many_batch(
|
2019-10-21 07:56:42 -04:00
|
|
|
table="room_memberships",
|
|
|
|
column="event_id",
|
|
|
|
iterable=event_ids,
|
2022-08-23 05:49:59 -04:00
|
|
|
retcols=("user_id", "event_id"),
|
2019-10-21 07:56:42 -04:00
|
|
|
keyvalues={"membership": Membership.JOIN},
|
2022-07-18 16:15:23 -04:00
|
|
|
batch_size=1000,
|
2022-08-23 05:49:59 -04:00
|
|
|
desc="_get_user_ids_from_membership_event_ids",
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
|
2022-08-23 05:49:59 -04:00
|
|
|
return {row["event_id"]: row["user_id"] for row in rows}
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
@cached(max_entries=10000)
|
|
|
|
async def is_host_joined(self, room_id: str, host: str) -> bool:
|
2021-07-13 08:59:27 -04:00
|
|
|
return await self._check_host_room_membership(room_id, host, Membership.JOIN)
|
|
|
|
|
|
|
|
@cached(max_entries=10000)
|
|
|
|
async def is_host_invited(self, room_id: str, host: str) -> bool:
|
|
|
|
return await self._check_host_room_membership(room_id, host, Membership.INVITE)
|
|
|
|
|
|
|
|
async def _check_host_room_membership(
|
|
|
|
self, room_id: str, host: str, membership: str
|
|
|
|
) -> bool:
|
2019-10-21 07:56:42 -04:00
|
|
|
if "%" in host or "_" in host:
|
|
|
|
raise Exception("Invalid host name")
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT state_key FROM current_state_events AS c
|
|
|
|
INNER JOIN room_memberships AS m USING (event_id)
|
2021-07-13 08:59:27 -04:00
|
|
|
WHERE m.membership = ?
|
2019-10-21 07:56:42 -04:00
|
|
|
AND type = 'm.room.member'
|
|
|
|
AND c.room_id = ?
|
|
|
|
AND state_key LIKE ?
|
|
|
|
LIMIT 1
|
|
|
|
"""
|
|
|
|
|
|
|
|
# We do need to be careful to ensure that host doesn't have any wild cards
|
|
|
|
# in it, but we checked above for known ones and we'll check below that
|
|
|
|
# the returned user actually has the correct domain.
|
|
|
|
like_clause = "%:" + host
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
rows = await self.db_pool.execute(
|
2021-07-13 08:59:27 -04:00
|
|
|
"is_host_joined", None, sql, membership, room_id, like_clause
|
2020-08-05 16:38:57 -04:00
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
if not rows:
|
|
|
|
return False
|
|
|
|
|
|
|
|
user_id = rows[0][0]
|
|
|
|
if get_domain_from_id(user_id) != host:
|
|
|
|
# This can only happen if the host name has something funky in it
|
|
|
|
raise Exception("Invalid host name")
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2022-06-06 11:46:11 -04:00
|
|
|
@cached(iterable=True, max_entries=10000)
|
2022-08-30 02:38:14 -04:00
|
|
|
async def get_current_hosts_in_room(self, room_id: str) -> List[str]:
|
|
|
|
"""
|
|
|
|
Get current hosts in room based on current state.
|
|
|
|
|
|
|
|
The heuristic of sorting by servers who have been in the room the
|
|
|
|
longest is good because they're most likely to have anything we ask
|
|
|
|
about.
|
|
|
|
|
2022-09-08 10:55:29 -04:00
|
|
|
Uses `m.room.member`s in the room state at the current forward extremities to
|
|
|
|
determine which hosts are in the room.
|
|
|
|
|
|
|
|
Will return inaccurate results for rooms with partial state, since the state for
|
|
|
|
the forward extremities of those rooms will exclude most members. We may also
|
|
|
|
calculate room state incorrectly for such rooms and believe that a host is or
|
|
|
|
is not in the room when the opposite is true.
|
|
|
|
|
2022-08-30 02:38:14 -04:00
|
|
|
Returns:
|
|
|
|
Returns a list of servers sorted by longest in the room first. (aka.
|
|
|
|
sorted by join with the lowest depth first).
|
|
|
|
"""
|
2022-06-06 11:46:11 -04:00
|
|
|
|
|
|
|
# First we check if we already have `get_users_in_room` in the cache, as
|
|
|
|
# we can just calculate result from that
|
|
|
|
users = self.get_users_in_room.cache.get_immediate(
|
|
|
|
(room_id,), None, update_metrics=False
|
|
|
|
)
|
2022-08-30 02:38:14 -04:00
|
|
|
if users is None and isinstance(self.database_engine, Sqlite3Engine):
|
2022-06-06 11:46:11 -04:00
|
|
|
# If we're using SQLite then let's just always use
|
|
|
|
# `get_users_in_room` rather than funky SQL.
|
|
|
|
users = await self.get_users_in_room(room_id)
|
2022-08-30 02:38:14 -04:00
|
|
|
|
|
|
|
if users is not None:
|
|
|
|
# Because `users` is sorted from lowest -> highest depth, the list
|
|
|
|
# of domains will also be sorted that way.
|
|
|
|
domains: List[str] = []
|
|
|
|
# We use a `Set` just for fast lookups
|
|
|
|
domain_set: Set[str] = set()
|
|
|
|
for u in users:
|
2022-09-08 10:55:03 -04:00
|
|
|
if ":" not in u:
|
|
|
|
continue
|
2022-08-30 02:38:14 -04:00
|
|
|
domain = get_domain_from_id(u)
|
|
|
|
if domain not in domain_set:
|
|
|
|
domain_set.add(domain)
|
|
|
|
domains.append(domain)
|
|
|
|
return domains
|
2022-06-06 11:46:11 -04:00
|
|
|
|
|
|
|
# For PostgreSQL we can use a regex to pull out the domains from the
|
|
|
|
# joined users in `current_state_events` via regex.
|
|
|
|
|
2022-08-30 02:38:14 -04:00
|
|
|
def get_current_hosts_in_room_txn(txn: LoggingTransaction) -> List[str]:
|
|
|
|
# Returns a list of servers currently joined in the room sorted by
|
|
|
|
# longest in the room first (aka. with the lowest depth). The
|
|
|
|
# heuristic of sorting by servers who have been in the room the
|
|
|
|
# longest is good because they're most likely to have anything we
|
|
|
|
# ask about.
|
2022-06-06 11:46:11 -04:00
|
|
|
sql = """
|
2022-08-30 02:38:14 -04:00
|
|
|
SELECT
|
|
|
|
/* Match the domain part of the MXID */
|
|
|
|
substring(c.state_key FROM '@[^:]*:(.*)$') as server_domain
|
|
|
|
FROM current_state_events c
|
|
|
|
/* Get the depth of the event from the events table */
|
|
|
|
INNER JOIN events AS e USING (event_id)
|
2022-06-06 11:46:11 -04:00
|
|
|
WHERE
|
2022-08-30 02:38:14 -04:00
|
|
|
/* Find any join state events in the room */
|
|
|
|
c.type = 'm.room.member'
|
|
|
|
AND c.membership = 'join'
|
|
|
|
AND c.room_id = ?
|
|
|
|
/* Group all state events from the same domain into their own buckets (groups) */
|
|
|
|
GROUP BY server_domain
|
|
|
|
/* Sorted by lowest depth first */
|
|
|
|
ORDER BY min(e.depth) ASC;
|
2022-06-06 11:46:11 -04:00
|
|
|
"""
|
|
|
|
txn.execute(sql, (room_id,))
|
2022-09-08 10:55:03 -04:00
|
|
|
# `server_domain` will be `NULL` for malformed MXIDs with no colons.
|
|
|
|
return [d for d, in txn if d is not None]
|
2022-06-06 11:46:11 -04:00
|
|
|
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_current_hosts_in_room", get_current_hosts_in_room_txn
|
|
|
|
)
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
async def get_joined_hosts(
|
2022-07-14 09:57:02 -04:00
|
|
|
self, room_id: str, state: StateMap[str], state_entry: "_StateCacheEntry"
|
2022-05-17 10:29:06 -04:00
|
|
|
) -> FrozenSet[str]:
|
|
|
|
state_group: Union[object, int] = state_entry.state_group
|
2019-10-21 07:56:42 -04:00
|
|
|
if not state_group:
|
|
|
|
# If state_group is None it means it has yet to be assigned a
|
|
|
|
# state group, i.e. we need to make sure that calls with a state_group
|
|
|
|
# of None don't hit previous cached calls with a None state_group.
|
|
|
|
# To do this we set the state_group to a new object as object() != object()
|
|
|
|
state_group = object()
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
assert state_group is not None
|
2019-10-21 07:56:42 -04:00
|
|
|
with Measure(self._clock, "get_joined_hosts"):
|
2020-08-12 12:14:34 -04:00
|
|
|
return await self._get_joined_hosts(
|
2022-07-14 09:57:02 -04:00
|
|
|
room_id, state_group, state, state_entry=state_entry
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
@cached(num_args=2, max_entries=10000, iterable=True)
|
|
|
|
async def _get_joined_hosts(
|
2022-05-17 10:29:06 -04:00
|
|
|
self,
|
|
|
|
room_id: str,
|
|
|
|
state_group: Union[object, int],
|
2022-07-14 09:57:02 -04:00
|
|
|
state: StateMap[str],
|
2022-05-17 10:29:06 -04:00
|
|
|
state_entry: "_StateCacheEntry",
|
2021-04-23 06:47:07 -04:00
|
|
|
) -> FrozenSet[str]:
|
2022-03-09 10:29:39 -05:00
|
|
|
# We don't use `state_group`, it's there so that we can cache based on
|
2021-04-23 06:47:07 -04:00
|
|
|
# it. However, its important that its never None, since two
|
|
|
|
# current_state's with a state_group of None are likely to be different.
|
|
|
|
#
|
|
|
|
# The `state_group` must match the `state_entry.state_group` (if not None).
|
2019-10-21 07:56:42 -04:00
|
|
|
assert state_group is not None
|
2021-04-23 06:47:07 -04:00
|
|
|
assert state_entry.state_group is None or state_entry.state_group == state_group
|
|
|
|
|
|
|
|
# We use a secondary cache of previous work to allow us to build up the
|
|
|
|
# joined hosts for the given state group based on previous state groups.
|
|
|
|
#
|
|
|
|
# We cache one object per room containing the results of the last state
|
|
|
|
# group we got joined hosts for. The idea is that generally
|
|
|
|
# `get_joined_hosts` is called with the "current" state group for the
|
|
|
|
# room, and so consecutive calls will be for consecutive state groups
|
|
|
|
# which point to the previous state group.
|
2022-05-17 10:29:06 -04:00
|
|
|
cache = await self._get_joined_hosts_cache(room_id) # type: ignore[misc]
|
2021-04-23 06:47:07 -04:00
|
|
|
|
|
|
|
# If the state group in the cache matches, we already have the data we need.
|
|
|
|
if state_entry.state_group == cache.state_group:
|
|
|
|
return frozenset(cache.hosts_to_joined_users)
|
|
|
|
|
|
|
|
# Since we'll mutate the cache we need to lock.
|
2022-04-05 10:43:52 -04:00
|
|
|
async with self._joined_host_linearizer.queue(room_id):
|
2021-04-23 06:47:07 -04:00
|
|
|
if state_entry.state_group == cache.state_group:
|
|
|
|
# Same state group, so nothing to do. We've already checked for
|
|
|
|
# this above, but the cache may have changed while waiting on
|
|
|
|
# the lock.
|
|
|
|
pass
|
|
|
|
elif state_entry.prev_group == cache.state_group:
|
|
|
|
# The cached work is for the previous state group, so we work out
|
|
|
|
# the delta.
|
2022-05-17 10:29:06 -04:00
|
|
|
assert state_entry.delta_ids is not None
|
2021-04-23 06:47:07 -04:00
|
|
|
for (typ, state_key), event_id in state_entry.delta_ids.items():
|
|
|
|
if typ != EventTypes.Member:
|
|
|
|
continue
|
|
|
|
|
|
|
|
host = intern_string(get_domain_from_id(state_key))
|
|
|
|
user_id = state_key
|
|
|
|
known_joins = cache.hosts_to_joined_users.setdefault(host, set())
|
|
|
|
|
|
|
|
event = await self.get_event(event_id)
|
|
|
|
if event.membership == Membership.JOIN:
|
|
|
|
known_joins.add(user_id)
|
|
|
|
else:
|
|
|
|
known_joins.discard(user_id)
|
|
|
|
|
|
|
|
if not known_joins:
|
|
|
|
cache.hosts_to_joined_users.pop(host, None)
|
|
|
|
else:
|
|
|
|
# The cache doesn't match the state group or prev state group,
|
|
|
|
# so we calculate the result from first principles.
|
2022-08-23 05:49:59 -04:00
|
|
|
joined_user_ids = await self.get_joined_user_ids_from_state(
|
2022-08-31 07:19:39 -04:00
|
|
|
room_id, state
|
2021-04-23 06:47:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
cache.hosts_to_joined_users = {}
|
2022-08-23 05:49:59 -04:00
|
|
|
for user_id in joined_user_ids:
|
2021-04-23 06:47:07 -04:00
|
|
|
host = intern_string(get_domain_from_id(user_id))
|
|
|
|
cache.hosts_to_joined_users.setdefault(host, set()).add(user_id)
|
|
|
|
|
|
|
|
if state_entry.state_group:
|
|
|
|
cache.state_group = state_entry.state_group
|
|
|
|
else:
|
|
|
|
cache.state_group = object()
|
|
|
|
|
|
|
|
return frozenset(cache.hosts_to_joined_users)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
@cached(max_entries=10000)
|
2020-08-12 12:14:34 -04:00
|
|
|
def _get_joined_hosts_cache(self, room_id: str) -> "_JoinedHostsCache":
|
2021-04-23 06:47:07 -04:00
|
|
|
return _JoinedHostsCache()
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
@cached(num_args=2)
|
|
|
|
async def did_forget(self, user_id: str, room_id: str) -> bool:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Returns whether user_id has elected to discard history for room_id.
|
|
|
|
|
|
|
|
Returns False if they have since re-joined."""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def f(txn: LoggingTransaction) -> int:
|
2019-10-21 07:56:42 -04:00
|
|
|
sql = (
|
|
|
|
"SELECT"
|
|
|
|
" COUNT(*)"
|
|
|
|
" FROM"
|
|
|
|
" room_memberships"
|
|
|
|
" WHERE"
|
|
|
|
" user_id = ?"
|
|
|
|
" AND"
|
|
|
|
" room_id = ?"
|
|
|
|
" AND"
|
|
|
|
" forgotten = 0"
|
|
|
|
)
|
|
|
|
txn.execute(sql, (user_id, room_id))
|
|
|
|
rows = txn.fetchall()
|
|
|
|
return rows[0][0]
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
count = await self.db_pool.runInteraction("did_forget_membership", f)
|
2019-10-21 07:56:42 -04:00
|
|
|
return count == 0
|
|
|
|
|
|
|
|
@cached()
|
2020-08-28 11:34:50 -04:00
|
|
|
async def get_forgotten_rooms_for_user(self, user_id: str) -> Set[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Gets all rooms the user has forgotten.
|
|
|
|
|
|
|
|
Args:
|
2020-08-28 11:34:50 -04:00
|
|
|
user_id: The user ID to query the rooms of.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-28 11:34:50 -04:00
|
|
|
The forgotten rooms.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def _get_forgotten_rooms_for_user_txn(txn: LoggingTransaction) -> Set[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
# This is a slightly convoluted query that first looks up all rooms
|
|
|
|
# that the user has forgotten in the past, then rechecks that list
|
|
|
|
# to see if any have subsequently been updated. This is done so that
|
|
|
|
# we can use a partial index on `forgotten = 1` on the assumption
|
|
|
|
# that few users will actually forget many rooms.
|
|
|
|
#
|
|
|
|
# Note that a room is considered "forgotten" if *all* membership
|
|
|
|
# events for that user and room have the forgotten field set (as
|
|
|
|
# when a user forgets a room we update all rows for that user and
|
|
|
|
# room, not just the current one).
|
|
|
|
sql = """
|
|
|
|
SELECT room_id, (
|
|
|
|
SELECT count(*) FROM room_memberships
|
|
|
|
WHERE room_id = m.room_id AND user_id = m.user_id AND forgotten = 0
|
|
|
|
) AS count
|
|
|
|
FROM room_memberships AS m
|
|
|
|
WHERE user_id = ? AND forgotten = 1
|
|
|
|
GROUP BY room_id, user_id;
|
|
|
|
"""
|
|
|
|
txn.execute(sql, (user_id,))
|
2020-02-21 07:15:07 -05:00
|
|
|
return {row[0] for row in txn if row[1] == 0}
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-28 11:34:50 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2019-10-21 07:56:42 -04:00
|
|
|
"get_forgotten_rooms_for_user", _get_forgotten_rooms_for_user_txn
|
|
|
|
)
|
|
|
|
|
2022-08-17 05:42:01 -04:00
|
|
|
async def is_locally_forgotten_room(self, room_id: str) -> bool:
|
|
|
|
"""Returns whether all local users have forgotten this room_id.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
room_id: The room ID to query.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Whether the room is forgotten.
|
|
|
|
"""
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT count(*) > 0 FROM local_current_membership
|
|
|
|
INNER JOIN room_memberships USING (room_id, event_id)
|
|
|
|
WHERE
|
|
|
|
room_id = ?
|
|
|
|
AND forgotten = 0;
|
|
|
|
"""
|
|
|
|
|
|
|
|
rows = await self.db_pool.execute("is_forgotten_room", None, sql, room_id)
|
|
|
|
|
|
|
|
# `count(*)` returns always an integer
|
|
|
|
# If any rows still exist it means someone has not forgotten this room yet
|
|
|
|
return not rows[0][0]
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
async def get_rooms_user_has_been_in(self, user_id: str) -> Set[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get all rooms that the user has ever been in.
|
|
|
|
|
|
|
|
Args:
|
2020-08-12 12:14:34 -04:00
|
|
|
user_id: The user ID to get the rooms of.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-12 12:14:34 -04:00
|
|
|
Set of room IDs.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
room_ids = await self.db_pool.simple_select_onecol(
|
2019-10-21 07:56:42 -04:00
|
|
|
table="room_memberships",
|
|
|
|
keyvalues={"membership": Membership.JOIN, "user_id": user_id},
|
|
|
|
retcol="room_id",
|
|
|
|
desc="get_rooms_user_has_been_in",
|
|
|
|
)
|
|
|
|
|
|
|
|
return set(room_ids)
|
|
|
|
|
2022-03-25 10:58:56 -04:00
|
|
|
@cached(max_entries=5000)
|
|
|
|
async def _get_membership_from_event_id(
|
|
|
|
self, member_event_id: str
|
|
|
|
) -> Optional[EventIdMembership]:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@cachedList(
|
|
|
|
cached_method_name="_get_membership_from_event_id", list_name="member_event_ids"
|
|
|
|
)
|
2020-08-17 12:18:01 -04:00
|
|
|
async def get_membership_from_event_ids(
|
2019-12-04 05:16:44 -05:00
|
|
|
self, member_event_ids: Iterable[str]
|
2022-03-25 10:58:56 -04:00
|
|
|
) -> Dict[str, Optional[EventIdMembership]]:
|
|
|
|
"""Get user_id and membership of a set of event IDs.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Mapping from event ID to `EventIdMembership` if the event is a
|
|
|
|
membership event, otherwise the value is None.
|
|
|
|
"""
|
2019-12-04 05:16:44 -05:00
|
|
|
|
2022-03-25 10:58:56 -04:00
|
|
|
rows = await self.db_pool.simple_select_many_batch(
|
2019-12-04 05:16:44 -05:00
|
|
|
table="room_memberships",
|
|
|
|
column="event_id",
|
|
|
|
iterable=member_event_ids,
|
|
|
|
retcols=("user_id", "membership", "event_id"),
|
|
|
|
keyvalues={},
|
|
|
|
batch_size=500,
|
|
|
|
desc="get_membership_from_event_ids",
|
|
|
|
)
|
2022-03-25 10:58:56 -04:00
|
|
|
|
|
|
|
return {
|
|
|
|
row["event_id"]: EventIdMembership(
|
|
|
|
membership=row["membership"], user_id=row["user_id"]
|
|
|
|
)
|
|
|
|
for row in rows
|
|
|
|
}
|
2019-12-04 05:16:44 -05:00
|
|
|
|
2020-02-19 05:15:49 -05:00
|
|
|
async def is_local_host_in_room_ignoring_users(
|
|
|
|
self, room_id: str, ignore_users: Collection[str]
|
|
|
|
) -> bool:
|
|
|
|
"""Check if there are any local users, excluding those in the given
|
|
|
|
list, in the room.
|
|
|
|
"""
|
|
|
|
|
|
|
|
clause, args = make_in_list_sql_clause(
|
|
|
|
self.database_engine, "user_id", ignore_users
|
|
|
|
)
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT 1 FROM local_current_membership
|
|
|
|
WHERE
|
|
|
|
room_id = ? AND membership = ?
|
|
|
|
AND NOT (%s)
|
|
|
|
LIMIT 1
|
|
|
|
""" % (
|
|
|
|
clause,
|
|
|
|
)
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def _is_local_host_in_room_ignoring_users_txn(
|
|
|
|
txn: LoggingTransaction,
|
|
|
|
) -> bool:
|
2020-02-19 05:15:49 -05:00
|
|
|
txn.execute(sql, (room_id, Membership.JOIN, *args))
|
|
|
|
|
|
|
|
return bool(txn.fetchone())
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2020-02-19 05:15:49 -05:00
|
|
|
"is_local_host_in_room_ignoring_users",
|
|
|
|
_is_local_host_in_room_ignoring_users_txn,
|
|
|
|
)
|
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2019-12-04 10:09:36 -05:00
|
|
|
class RoomMemberBackgroundUpdateStore(SQLBaseStore):
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_update_handler(
|
2019-10-21 07:56:42 -04:00
|
|
|
_MEMBERSHIP_PROFILE_UPDATE_NAME, self._background_add_membership_profile
|
|
|
|
)
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_update_handler(
|
2019-10-21 07:56:42 -04:00
|
|
|
_CURRENT_STATE_MEMBERSHIP_UPDATE_NAME,
|
|
|
|
self._background_current_state_membership,
|
|
|
|
)
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
2019-10-21 07:56:42 -04:00
|
|
|
"room_membership_forgotten_idx",
|
|
|
|
index_name="room_memberships_user_room_forgotten",
|
|
|
|
table="room_memberships",
|
|
|
|
columns=["user_id", "room_id"],
|
|
|
|
where_clause="forgotten = 1",
|
|
|
|
)
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
async def _background_add_membership_profile(
|
|
|
|
self, progress: JsonDict, batch_size: int
|
|
|
|
) -> int:
|
2019-10-21 07:56:42 -04:00
|
|
|
target_min_stream_id = progress.get(
|
2022-05-17 10:29:06 -04:00
|
|
|
"target_min_stream_id_inclusive", self._min_stream_order_on_start # type: ignore[attr-defined]
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
max_stream_id = progress.get(
|
2022-05-17 10:29:06 -04:00
|
|
|
"max_stream_id_exclusive", self._stream_order_on_start + 1 # type: ignore[attr-defined]
|
2019-10-21 07:56:42 -04:00
|
|
|
)
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def add_membership_profile_txn(txn: LoggingTransaction) -> int:
|
2019-10-21 07:56:42 -04:00
|
|
|
sql = """
|
|
|
|
SELECT stream_ordering, event_id, events.room_id, event_json.json
|
|
|
|
FROM events
|
|
|
|
INNER JOIN event_json USING (event_id)
|
|
|
|
INNER JOIN room_memberships USING (event_id)
|
|
|
|
WHERE ? <= stream_ordering AND stream_ordering < ?
|
|
|
|
AND type = 'm.room.member'
|
|
|
|
ORDER BY stream_ordering DESC
|
|
|
|
LIMIT ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(sql, (target_min_stream_id, max_stream_id, batch_size))
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
rows = self.db_pool.cursor_to_dict(txn)
|
2019-10-21 07:56:42 -04:00
|
|
|
if not rows:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
min_stream_id = rows[-1]["stream_ordering"]
|
|
|
|
|
|
|
|
to_update = []
|
|
|
|
for row in rows:
|
|
|
|
event_id = row["event_id"]
|
|
|
|
room_id = row["room_id"]
|
|
|
|
try:
|
2020-07-16 11:32:19 -04:00
|
|
|
event_json = db_to_json(row["json"])
|
2019-10-21 07:56:42 -04:00
|
|
|
content = event_json["content"]
|
|
|
|
except Exception:
|
|
|
|
continue
|
|
|
|
|
|
|
|
display_name = content.get("displayname", None)
|
|
|
|
avatar_url = content.get("avatar_url", None)
|
|
|
|
|
|
|
|
if display_name or avatar_url:
|
|
|
|
to_update.append((display_name, avatar_url, event_id, room_id))
|
|
|
|
|
|
|
|
to_update_sql = """
|
|
|
|
UPDATE room_memberships SET display_name = ?, avatar_url = ?
|
|
|
|
WHERE event_id = ? AND room_id = ?
|
|
|
|
"""
|
2021-01-21 09:44:12 -05:00
|
|
|
txn.execute_batch(to_update_sql, to_update)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
progress = {
|
|
|
|
"target_min_stream_id_inclusive": target_min_stream_id,
|
|
|
|
"max_stream_id_exclusive": min_stream_id,
|
|
|
|
}
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates._background_update_progress_txn(
|
2019-10-21 07:56:42 -04:00
|
|
|
txn, _MEMBERSHIP_PROFILE_UPDATE_NAME, progress
|
|
|
|
)
|
|
|
|
|
|
|
|
return len(rows)
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
result = await self.db_pool.runInteraction(
|
2019-10-21 07:56:42 -04:00
|
|
|
_MEMBERSHIP_PROFILE_UPDATE_NAME, add_membership_profile_txn
|
|
|
|
)
|
|
|
|
|
|
|
|
if not result:
|
2020-08-12 12:14:34 -04:00
|
|
|
await self.db_pool.updates._end_background_update(
|
2019-12-04 10:09:36 -05:00
|
|
|
_MEMBERSHIP_PROFILE_UPDATE_NAME
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
return result
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
async def _background_current_state_membership(
|
|
|
|
self, progress: JsonDict, batch_size: int
|
|
|
|
) -> int:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Update the new membership column on current_state_events.
|
|
|
|
|
|
|
|
This works by iterating over all rooms in alphebetical order.
|
|
|
|
"""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def _background_current_state_membership_txn(
|
|
|
|
txn: LoggingTransaction, last_processed_room: str
|
|
|
|
) -> Tuple[int, bool]:
|
2019-10-21 07:56:42 -04:00
|
|
|
processed = 0
|
|
|
|
while processed < batch_size:
|
|
|
|
txn.execute(
|
|
|
|
"""
|
|
|
|
SELECT MIN(room_id) FROM current_state_events WHERE room_id > ?
|
|
|
|
""",
|
|
|
|
(last_processed_room,),
|
|
|
|
)
|
|
|
|
row = txn.fetchone()
|
|
|
|
if not row or not row[0]:
|
|
|
|
return processed, True
|
|
|
|
|
2019-10-31 11:43:24 -04:00
|
|
|
(next_room,) = row
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
sql = """
|
|
|
|
UPDATE current_state_events
|
|
|
|
SET membership = (
|
|
|
|
SELECT membership FROM room_memberships
|
|
|
|
WHERE event_id = current_state_events.event_id
|
|
|
|
)
|
|
|
|
WHERE room_id = ?
|
|
|
|
"""
|
|
|
|
txn.execute(sql, (next_room,))
|
|
|
|
processed += txn.rowcount
|
|
|
|
|
|
|
|
last_processed_room = next_room
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates._background_update_progress_txn(
|
2019-10-21 07:56:42 -04:00
|
|
|
txn,
|
|
|
|
_CURRENT_STATE_MEMBERSHIP_UPDATE_NAME,
|
|
|
|
{"last_processed_room": last_processed_room},
|
|
|
|
)
|
|
|
|
|
|
|
|
return processed, False
|
|
|
|
|
|
|
|
# If we haven't got a last processed room then just use the empty
|
|
|
|
# string, which will compare before all room IDs correctly.
|
|
|
|
last_processed_room = progress.get("last_processed_room", "")
|
|
|
|
|
2020-08-12 12:14:34 -04:00
|
|
|
row_count, finished = await self.db_pool.runInteraction(
|
2019-10-21 07:56:42 -04:00
|
|
|
"_background_current_state_membership_update",
|
|
|
|
_background_current_state_membership_txn,
|
|
|
|
last_processed_room,
|
|
|
|
)
|
|
|
|
|
|
|
|
if finished:
|
2020-08-12 12:14:34 -04:00
|
|
|
await self.db_pool.updates._end_background_update(
|
2019-12-04 10:09:36 -05:00
|
|
|
_CURRENT_STATE_MEMBERSHIP_UPDATE_NAME
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
return row_count
|
|
|
|
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
class RoomMemberStore(
|
|
|
|
RoomMemberWorkerStore,
|
|
|
|
RoomMemberBackgroundUpdateStore,
|
|
|
|
CacheInvalidationWorkerStore,
|
|
|
|
):
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-28 11:34:50 -04:00
|
|
|
async def forget(self, user_id: str, room_id: str) -> None:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Indicate that user_id wishes to discard history for room_id."""
|
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def f(txn: LoggingTransaction) -> None:
|
2019-10-21 07:56:42 -04:00
|
|
|
sql = (
|
|
|
|
"UPDATE"
|
|
|
|
" room_memberships"
|
|
|
|
" SET"
|
|
|
|
" forgotten = 1"
|
|
|
|
" WHERE"
|
|
|
|
" user_id = ?"
|
|
|
|
" AND"
|
|
|
|
" room_id = ?"
|
|
|
|
)
|
|
|
|
txn.execute(sql, (user_id, room_id))
|
|
|
|
|
|
|
|
self._invalidate_cache_and_stream(txn, self.did_forget, (user_id, room_id))
|
|
|
|
self._invalidate_cache_and_stream(
|
|
|
|
txn, self.get_forgotten_rooms_for_user, (user_id,)
|
|
|
|
)
|
|
|
|
|
2020-08-28 11:34:50 -04:00
|
|
|
await self.db_pool.runInteraction("forget_membership", f)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
@attr.s(slots=True, auto_attribs=True)
|
2020-09-04 06:54:56 -04:00
|
|
|
class _JoinedHostsCache:
|
2021-04-23 06:47:07 -04:00
|
|
|
"""The cached data used by the `_get_joined_hosts_cache`."""
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2021-04-23 06:47:07 -04:00
|
|
|
# Dict of host to the set of their users in the room at the state group.
|
2022-01-13 08:49:28 -05:00
|
|
|
hosts_to_joined_users: Dict[str, Set[str]] = attr.Factory(dict)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2021-04-23 06:47:07 -04:00
|
|
|
# The state group `hosts_to_joined_users` is derived from. Will be an object
|
|
|
|
# if the instance is newly created or if the state is not based on a state
|
|
|
|
# group. (An object is used as a sentinel value to ensure that it never is
|
|
|
|
# equal to anything else).
|
2022-01-13 08:49:28 -05:00
|
|
|
state_group: Union[object, int] = attr.Factory(object)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2022-05-17 10:29:06 -04:00
|
|
|
def __len__(self) -> int:
|
2021-04-23 06:47:07 -04:00
|
|
|
return sum(len(v) for v in self.hosts_to_joined_users.values())
|