2019-10-21 07:56:42 -04:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2020-01-31 05:28:15 -05:00
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
2019-10-21 07:56:42 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2020-01-06 10:22:46 -05:00
|
|
|
import collections.abc
|
2019-10-21 07:56:42 -04:00
|
|
|
import logging
|
|
|
|
from collections import namedtuple
|
2020-07-30 07:20:41 -04:00
|
|
|
from typing import Iterable, Optional, Set
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-30 12:17:44 -05:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
2020-01-31 05:28:15 -05:00
|
|
|
from synapse.api.errors import NotFoundError, UnsupportedRoomVersionError
|
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS, RoomVersion
|
2020-07-30 07:20:41 -04:00
|
|
|
from synapse.events import EventBase
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.storage._base import SQLBaseStore
|
2021-07-28 11:46:37 -04:00
|
|
|
from synapse.storage.database import DatabasePool, LoggingTransaction
|
2020-08-05 16:38:57 -04:00
|
|
|
from synapse.storage.databases.main.events_worker import EventsWorkerStore
|
|
|
|
from synapse.storage.databases.main.roommember import RoomMemberWorkerStore
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.storage.state import StateFilter
|
2020-08-28 09:37:55 -04:00
|
|
|
from synapse.types import StateMap
|
2019-12-20 05:48:24 -05:00
|
|
|
from synapse.util.caches import intern_string
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.util.caches.descriptors import cached, cachedList
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
MAX_STATE_DELTA_HOPS = 100
|
|
|
|
|
|
|
|
|
|
|
|
class _GetStateGroupDelta(
|
|
|
|
namedtuple("_GetStateGroupDelta", ("prev_group", "delta_ids"))
|
|
|
|
):
|
|
|
|
"""Return type of get_state_group_delta that implements __len__, which lets
|
|
|
|
us use the itrable flag when caching
|
|
|
|
"""
|
|
|
|
|
|
|
|
__slots__ = []
|
|
|
|
|
|
|
|
def __len__(self):
|
|
|
|
return len(self.delta_ids) if self.delta_ids else 0
|
|
|
|
|
|
|
|
|
|
|
|
# this inherits from EventsWorkerStore because it calls self.get_events
|
2019-12-20 05:48:24 -05:00
|
|
|
class StateGroupWorkerStore(EventsWorkerStore, SQLBaseStore):
|
2019-10-21 07:56:42 -04:00
|
|
|
"""The parts of StateGroupStore that can be called from workers."""
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
def __init__(self, database: DatabasePool, db_conn, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-31 05:28:15 -05:00
|
|
|
async def get_room_version(self, room_id: str) -> RoomVersion:
|
|
|
|
"""Get the room_version of a given room
|
|
|
|
Raises:
|
|
|
|
NotFoundError: if the room is unknown
|
2021-07-28 11:46:37 -04:00
|
|
|
UnsupportedRoomVersionError: if the room uses an unknown room version.
|
|
|
|
Typically this happens if support for the room's version has been
|
|
|
|
removed from Synapse.
|
|
|
|
"""
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_room_version_txn",
|
|
|
|
self.get_room_version_txn,
|
|
|
|
room_id,
|
|
|
|
)
|
2020-01-31 05:28:15 -05:00
|
|
|
|
2021-07-28 11:46:37 -04:00
|
|
|
def get_room_version_txn(
|
|
|
|
self, txn: LoggingTransaction, room_id: str
|
|
|
|
) -> RoomVersion:
|
|
|
|
"""Get the room_version of a given room
|
|
|
|
Args:
|
|
|
|
txn: Transaction object
|
|
|
|
room_id: The room_id of the room you are trying to get the version for
|
|
|
|
Raises:
|
|
|
|
NotFoundError: if the room is unknown
|
2020-01-31 05:28:15 -05:00
|
|
|
UnsupportedRoomVersionError: if the room uses an unknown room version.
|
|
|
|
Typically this happens if support for the room's version has been
|
|
|
|
removed from Synapse.
|
|
|
|
"""
|
2021-07-28 11:46:37 -04:00
|
|
|
room_version_id = self.get_room_version_id_txn(txn, room_id)
|
2020-01-31 05:28:15 -05:00
|
|
|
v = KNOWN_ROOM_VERSIONS.get(room_version_id)
|
|
|
|
|
|
|
|
if not v:
|
|
|
|
raise UnsupportedRoomVersionError(
|
|
|
|
"Room %s uses a room version %s which is no longer supported"
|
|
|
|
% (room_id, room_version_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
return v
|
|
|
|
|
2020-01-27 09:30:57 -05:00
|
|
|
@cached(max_entries=10000)
|
2020-01-31 05:06:21 -05:00
|
|
|
async def get_room_version_id(self, room_id: str) -> str:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get the room_version of a given room
|
2021-07-28 11:46:37 -04:00
|
|
|
Raises:
|
|
|
|
NotFoundError: if the room is unknown
|
|
|
|
"""
|
|
|
|
return await self.db_pool.runInteraction(
|
|
|
|
"get_room_version_id_txn",
|
|
|
|
self.get_room_version_id_txn,
|
|
|
|
room_id,
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2021-07-28 11:46:37 -04:00
|
|
|
def get_room_version_id_txn(self, txn: LoggingTransaction, room_id: str) -> str:
|
|
|
|
"""Get the room_version of a given room
|
|
|
|
Args:
|
|
|
|
txn: Transaction object
|
|
|
|
room_id: The room_id of the room you are trying to get the version for
|
2019-10-21 07:56:42 -04:00
|
|
|
Raises:
|
2020-01-27 09:30:57 -05:00
|
|
|
NotFoundError: if the room is unknown
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
2020-01-27 09:30:57 -05:00
|
|
|
|
|
|
|
# First we try looking up room version from the database, but for old
|
|
|
|
# rooms we might not have added the room version to it yet so we fall
|
|
|
|
# back to previous behaviour and look in current state events.
|
2021-07-28 11:46:37 -04:00
|
|
|
#
|
2020-01-27 09:30:57 -05:00
|
|
|
# We really should have an entry in the rooms table for every room we
|
|
|
|
# care about, but let's be a bit paranoid (at least while the background
|
|
|
|
# update is happening) to avoid breaking existing rooms.
|
2021-07-28 11:46:37 -04:00
|
|
|
room_version = self.db_pool.simple_select_one_onecol_txn(
|
|
|
|
txn,
|
2020-01-27 09:30:57 -05:00
|
|
|
table="rooms",
|
|
|
|
keyvalues={"room_id": room_id},
|
|
|
|
retcol="room_version",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
|
2021-07-28 11:46:37 -04:00
|
|
|
if room_version is None:
|
|
|
|
raise NotFoundError("Could not room_version for %s" % (room_id,))
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2021-07-28 11:46:37 -04:00
|
|
|
return room_version
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
async def get_room_predecessor(self, room_id: str) -> Optional[dict]:
|
2019-12-11 08:07:25 -05:00
|
|
|
"""Get the predecessor of an upgraded room if it exists.
|
2019-10-21 07:56:42 -04:00
|
|
|
Otherwise return None.
|
|
|
|
|
|
|
|
Args:
|
2020-07-30 07:20:41 -04:00
|
|
|
room_id: The room ID.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-07-30 07:20:41 -04:00
|
|
|
A dictionary containing the structure of the predecessor
|
|
|
|
field from the room's create event. The structure is subject to other servers,
|
|
|
|
but it is expected to be:
|
|
|
|
* room_id (str): The room ID of the predecessor room
|
|
|
|
* event_id (str): The ID of the tombstone event in the predecessor room
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
None if a predecessor key is not found, or is not a dictionary.
|
2019-12-11 08:07:25 -05:00
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
Raises:
|
2019-12-11 08:07:25 -05:00
|
|
|
NotFoundError if the given room is unknown
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
# Retrieve the room's create event
|
2020-07-30 07:20:41 -04:00
|
|
|
create_event = await self.get_create_event_for_room(room_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2019-12-11 08:07:25 -05:00
|
|
|
# Retrieve the predecessor key of the create event
|
|
|
|
predecessor = create_event.content.get("predecessor", None)
|
|
|
|
|
|
|
|
# Ensure the key is a dictionary
|
2020-01-06 10:22:46 -05:00
|
|
|
if not isinstance(predecessor, collections.abc.Mapping):
|
2019-12-11 08:07:25 -05:00
|
|
|
return None
|
|
|
|
|
|
|
|
return predecessor
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
async def get_create_event_for_room(self, room_id: str) -> EventBase:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get the create state event for a room.
|
|
|
|
|
|
|
|
Args:
|
2020-07-30 07:20:41 -04:00
|
|
|
room_id: The room ID.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-07-30 07:20:41 -04:00
|
|
|
The room creation event.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Raises:
|
|
|
|
NotFoundError if the room is unknown
|
|
|
|
"""
|
2020-07-30 07:20:41 -04:00
|
|
|
state_ids = await self.get_current_state_ids(room_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
create_id = state_ids.get((EventTypes.Create, ""))
|
|
|
|
|
|
|
|
# If we can't find the create event, assume we've hit a dead end
|
|
|
|
if not create_id:
|
2019-12-11 08:07:25 -05:00
|
|
|
raise NotFoundError("Unknown room %s" % (room_id,))
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
# Retrieve the room's create event and return
|
2020-07-30 07:20:41 -04:00
|
|
|
create_event = await self.get_event(create_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
return create_event
|
|
|
|
|
|
|
|
@cached(max_entries=100000, iterable=True)
|
2020-08-28 09:37:55 -04:00
|
|
|
async def get_current_state_ids(self, room_id: str) -> StateMap[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get the current state event ids for a room based on the
|
|
|
|
current_state_events table.
|
|
|
|
|
|
|
|
Args:
|
2020-08-28 09:37:55 -04:00
|
|
|
room_id: The room to get the state IDs of.
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-28 09:37:55 -04:00
|
|
|
The current state of the room.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def _get_current_state_ids_txn(txn):
|
|
|
|
txn.execute(
|
|
|
|
"""SELECT type, state_key, event_id FROM current_state_events
|
|
|
|
WHERE room_id = ?
|
|
|
|
""",
|
|
|
|
(room_id,),
|
|
|
|
)
|
|
|
|
|
2020-05-15 14:12:03 -04:00
|
|
|
return {(intern_string(r[0]), intern_string(r[1])): r[2] for r in txn}
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-28 09:37:55 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2019-12-04 08:52:46 -05:00
|
|
|
"get_current_state_ids", _get_current_state_ids_txn
|
|
|
|
)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
# FIXME: how should this be cached?
|
2020-08-28 09:37:55 -04:00
|
|
|
async def get_filtered_current_state_ids(
|
2021-04-08 17:38:54 -04:00
|
|
|
self, room_id: str, state_filter: Optional[StateFilter] = None
|
2020-08-28 09:37:55 -04:00
|
|
|
) -> StateMap[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get the current state event of a given type for a room based on the
|
|
|
|
current_state_events table. This may not be as up-to-date as the result
|
|
|
|
of doing a fresh state resolution as per state_handler.get_current_state
|
|
|
|
|
|
|
|
Args:
|
2020-01-16 08:31:22 -05:00
|
|
|
room_id
|
|
|
|
state_filter: The state filter used to fetch state
|
2019-10-21 07:56:42 -04:00
|
|
|
from the database.
|
|
|
|
|
|
|
|
Returns:
|
2020-08-28 09:37:55 -04:00
|
|
|
Map from type/state_key to event ID.
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2021-04-08 17:38:54 -04:00
|
|
|
where_clause, where_args = (
|
|
|
|
state_filter or StateFilter.all()
|
|
|
|
).make_sql_filter_clause()
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
if not where_clause:
|
|
|
|
# We delegate to the cached version
|
2020-08-28 09:37:55 -04:00
|
|
|
return await self.get_current_state_ids(room_id)
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
def _get_filtered_current_state_ids_txn(txn):
|
|
|
|
results = {}
|
|
|
|
sql = """
|
|
|
|
SELECT type, state_key, event_id FROM current_state_events
|
|
|
|
WHERE room_id = ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
if where_clause:
|
|
|
|
sql += " AND (%s)" % (where_clause,)
|
|
|
|
|
|
|
|
args = [room_id]
|
|
|
|
args.extend(where_args)
|
|
|
|
txn.execute(sql, args)
|
|
|
|
for row in txn:
|
|
|
|
typ, state_key, event_id = row
|
|
|
|
key = (intern_string(typ), intern_string(state_key))
|
|
|
|
results[key] = event_id
|
|
|
|
|
|
|
|
return results
|
|
|
|
|
2020-08-28 09:37:55 -04:00
|
|
|
return await self.db_pool.runInteraction(
|
2019-10-21 07:56:42 -04:00
|
|
|
"get_filtered_current_state_ids", _get_filtered_current_state_ids_txn
|
|
|
|
)
|
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
async def get_canonical_alias_for_room(self, room_id: str) -> Optional[str]:
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Get canonical alias for room, if any
|
|
|
|
|
|
|
|
Args:
|
2020-07-30 07:20:41 -04:00
|
|
|
room_id: The room ID
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-07-30 07:20:41 -04:00
|
|
|
The canonical alias, if any
|
2019-10-21 07:56:42 -04:00
|
|
|
"""
|
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
state = await self.get_filtered_current_state_ids(
|
2019-10-21 07:56:42 -04:00
|
|
|
room_id, StateFilter.from_types([(EventTypes.CanonicalAlias, "")])
|
|
|
|
)
|
|
|
|
|
|
|
|
event_id = state.get((EventTypes.CanonicalAlias, ""))
|
|
|
|
if not event_id:
|
|
|
|
return
|
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
event = await self.get_event(event_id, allow_none=True)
|
2019-10-21 07:56:42 -04:00
|
|
|
if not event:
|
|
|
|
return
|
|
|
|
|
|
|
|
return event.content.get("canonical_alias")
|
|
|
|
|
|
|
|
@cached(max_entries=50000)
|
2020-08-26 07:19:32 -04:00
|
|
|
async def _get_state_group_for_event(self, event_id: str) -> Optional[int]:
|
|
|
|
return await self.db_pool.simple_select_one_onecol(
|
2019-10-21 07:56:42 -04:00
|
|
|
table="event_to_state_groups",
|
|
|
|
keyvalues={"event_id": event_id},
|
|
|
|
retcol="state_group",
|
|
|
|
allow_none=True,
|
|
|
|
desc="_get_state_group_for_event",
|
|
|
|
)
|
|
|
|
|
|
|
|
@cachedList(
|
|
|
|
cached_method_name="_get_state_group_for_event",
|
|
|
|
list_name="event_ids",
|
|
|
|
num_args=1,
|
|
|
|
)
|
2020-08-14 07:24:26 -04:00
|
|
|
async def _get_state_group_for_events(self, event_ids):
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Returns mapping event_id -> state_group"""
|
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="event_to_state_groups",
|
|
|
|
column="event_id",
|
|
|
|
iterable=event_ids,
|
|
|
|
keyvalues={},
|
|
|
|
retcols=("event_id", "state_group"),
|
|
|
|
desc="_get_state_group_for_events",
|
|
|
|
)
|
|
|
|
|
|
|
|
return {row["event_id"]: row["state_group"] for row in rows}
|
|
|
|
|
2020-07-30 07:20:41 -04:00
|
|
|
async def get_referenced_state_groups(
|
|
|
|
self, state_groups: Iterable[int]
|
|
|
|
) -> Set[int]:
|
2019-10-30 11:12:49 -04:00
|
|
|
"""Check if the state groups are referenced by events.
|
|
|
|
|
|
|
|
Args:
|
2020-07-30 07:20:41 -04:00
|
|
|
state_groups
|
2019-10-30 11:12:49 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-07-30 07:20:41 -04:00
|
|
|
The subset of state groups that are referenced.
|
2019-10-30 11:12:49 -04:00
|
|
|
"""
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
rows = await self.db_pool.simple_select_many_batch(
|
2019-10-30 11:12:49 -04:00
|
|
|
table="event_to_state_groups",
|
|
|
|
column="state_group",
|
|
|
|
iterable=state_groups,
|
|
|
|
keyvalues={},
|
|
|
|
retcols=("DISTINCT state_group",),
|
|
|
|
desc="get_referenced_state_groups",
|
|
|
|
)
|
|
|
|
|
2020-02-21 07:15:07 -05:00
|
|
|
return {row["state_group"] for row in rows}
|
2019-10-30 11:12:49 -04:00
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-01-30 12:17:44 -05:00
|
|
|
class MainStateBackgroundUpdateStore(RoomMemberWorkerStore):
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
CURRENT_STATE_INDEX_UPDATE_NAME = "current_state_members_idx"
|
|
|
|
EVENT_STATE_GROUP_INDEX_UPDATE_NAME = "event_to_state_groups_sg_index"
|
2020-01-30 12:17:44 -05:00
|
|
|
DELETE_CURRENT_STATE_UPDATE_NAME = "delete_old_current_state_events"
|
2019-10-21 07:56:42 -04:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
def __init__(self, database: DatabasePool, db_conn, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|
2019-12-20 05:48:24 -05:00
|
|
|
|
2020-01-30 12:17:44 -05:00
|
|
|
self.server_name = hs.hostname
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
2019-10-21 07:56:42 -04:00
|
|
|
self.CURRENT_STATE_INDEX_UPDATE_NAME,
|
|
|
|
index_name="current_state_events_member_index",
|
|
|
|
table="current_state_events",
|
|
|
|
columns=["state_key"],
|
|
|
|
where_clause="type='m.room.member'",
|
|
|
|
)
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_index_update(
|
2019-10-21 07:56:42 -04:00
|
|
|
self.EVENT_STATE_GROUP_INDEX_UPDATE_NAME,
|
|
|
|
index_name="event_to_state_groups_sg_index",
|
|
|
|
table="event_to_state_groups",
|
|
|
|
columns=["state_group"],
|
|
|
|
)
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates.register_background_update_handler(
|
2020-01-30 12:17:44 -05:00
|
|
|
self.DELETE_CURRENT_STATE_UPDATE_NAME,
|
|
|
|
self._background_remove_left_rooms,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def _background_remove_left_rooms(self, progress, batch_size):
|
|
|
|
"""Background update to delete rows from `current_state_events` and
|
|
|
|
`event_forward_extremities` tables of rooms that the server is no
|
|
|
|
longer joined to.
|
|
|
|
"""
|
|
|
|
|
|
|
|
last_room_id = progress.get("last_room_id", "")
|
|
|
|
|
|
|
|
def _background_remove_left_rooms_txn(txn):
|
2020-07-15 13:33:03 -04:00
|
|
|
# get a batch of room ids to consider
|
2020-01-30 12:17:44 -05:00
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT room_id FROM current_state_events
|
|
|
|
WHERE room_id > ? ORDER BY room_id LIMIT ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(sql, (last_room_id, batch_size))
|
2020-02-21 07:15:07 -05:00
|
|
|
room_ids = [row[0] for row in txn]
|
2020-01-30 12:17:44 -05:00
|
|
|
if not room_ids:
|
|
|
|
return True, set()
|
|
|
|
|
2020-07-15 13:33:03 -04:00
|
|
|
###########################################################################
|
|
|
|
#
|
|
|
|
# exclude rooms where we have active members
|
|
|
|
|
2020-01-30 12:17:44 -05:00
|
|
|
sql = """
|
|
|
|
SELECT room_id
|
2020-07-15 13:33:03 -04:00
|
|
|
FROM local_current_membership
|
2020-01-30 12:17:44 -05:00
|
|
|
WHERE
|
|
|
|
room_id > ? AND room_id <= ?
|
|
|
|
AND membership = 'join'
|
|
|
|
GROUP BY room_id
|
|
|
|
"""
|
|
|
|
|
2020-07-15 13:33:03 -04:00
|
|
|
txn.execute(sql, (last_room_id, room_ids[-1]))
|
2020-02-21 07:15:07 -05:00
|
|
|
joined_room_ids = {row[0] for row in txn}
|
2020-07-15 13:33:03 -04:00
|
|
|
to_delete = set(room_ids) - joined_room_ids
|
|
|
|
|
|
|
|
###########################################################################
|
|
|
|
#
|
|
|
|
# exclude rooms which we are in the process of constructing; these otherwise
|
|
|
|
# qualify as "rooms with no local users", and would have their
|
|
|
|
# forward extremities cleaned up.
|
|
|
|
|
|
|
|
# the following query will return a list of rooms which have forward
|
|
|
|
# extremities that are *not* also the create event in the room - ie
|
|
|
|
# those that are not being created currently.
|
|
|
|
|
|
|
|
sql = """
|
|
|
|
SELECT DISTINCT efe.room_id
|
|
|
|
FROM event_forward_extremities efe
|
|
|
|
LEFT JOIN current_state_events cse ON
|
|
|
|
cse.event_id = efe.event_id
|
|
|
|
AND cse.type = 'm.room.create'
|
|
|
|
AND cse.state_key = ''
|
|
|
|
WHERE
|
|
|
|
cse.event_id IS NULL
|
|
|
|
AND efe.room_id > ? AND efe.room_id <= ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(sql, (last_room_id, room_ids[-1]))
|
|
|
|
|
|
|
|
# build a set of those rooms within `to_delete` that do not appear in
|
|
|
|
# the above, leaving us with the rooms in `to_delete` that *are* being
|
|
|
|
# created.
|
|
|
|
creating_rooms = to_delete.difference(row[0] for row in txn)
|
|
|
|
logger.info("skipping rooms which are being created: %s", creating_rooms)
|
|
|
|
|
|
|
|
# now remove the rooms being created from the list of those to delete.
|
|
|
|
#
|
|
|
|
# (we could have just taken the intersection of `to_delete` with the result
|
|
|
|
# of the sql query, but it's useful to be able to log `creating_rooms`; and
|
|
|
|
# having done so, it's quicker to remove the (few) creating rooms from
|
|
|
|
# `to_delete` than it is to form the intersection with the (larger) list of
|
|
|
|
# not-creating-rooms)
|
|
|
|
|
|
|
|
to_delete -= creating_rooms
|
2020-01-30 12:17:44 -05:00
|
|
|
|
2020-07-15 13:33:03 -04:00
|
|
|
###########################################################################
|
|
|
|
#
|
|
|
|
# now clear the state for the rooms
|
2020-01-30 12:17:44 -05:00
|
|
|
|
2020-07-15 13:33:03 -04:00
|
|
|
logger.info("Deleting current state left rooms: %r", to_delete)
|
2020-01-30 12:55:34 -05:00
|
|
|
|
2020-01-30 12:17:44 -05:00
|
|
|
# First we get all users that we still think were joined to the
|
|
|
|
# room. This is so that we can mark those device lists as
|
|
|
|
# potentially stale, since there may have been a period where the
|
|
|
|
# server didn't share a room with the remote user and therefore may
|
|
|
|
# have missed any device updates.
|
2020-08-05 16:38:57 -04:00
|
|
|
rows = self.db_pool.simple_select_many_txn(
|
2020-01-30 12:17:44 -05:00
|
|
|
txn,
|
|
|
|
table="current_state_events",
|
|
|
|
column="room_id",
|
2020-07-15 13:33:03 -04:00
|
|
|
iterable=to_delete,
|
2020-01-30 12:17:44 -05:00
|
|
|
keyvalues={"type": EventTypes.Member, "membership": Membership.JOIN},
|
|
|
|
retcols=("state_key",),
|
|
|
|
)
|
|
|
|
|
2020-02-21 07:15:07 -05:00
|
|
|
potentially_left_users = {row["state_key"] for row in rows}
|
2020-01-30 12:17:44 -05:00
|
|
|
|
|
|
|
# Now lets actually delete the rooms from the DB.
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_delete_many_txn(
|
2020-01-30 12:17:44 -05:00
|
|
|
txn,
|
|
|
|
table="current_state_events",
|
|
|
|
column="room_id",
|
2021-09-20 05:26:13 -04:00
|
|
|
values=to_delete,
|
2020-01-30 12:17:44 -05:00
|
|
|
keyvalues={},
|
|
|
|
)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_delete_many_txn(
|
2020-01-30 12:17:44 -05:00
|
|
|
txn,
|
|
|
|
table="event_forward_extremities",
|
|
|
|
column="room_id",
|
2021-09-20 05:26:13 -04:00
|
|
|
values=to_delete,
|
2020-01-30 12:17:44 -05:00
|
|
|
keyvalues={},
|
|
|
|
)
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.updates._background_update_progress_txn(
|
2020-01-30 12:17:44 -05:00
|
|
|
txn,
|
|
|
|
self.DELETE_CURRENT_STATE_UPDATE_NAME,
|
|
|
|
{"last_room_id": room_ids[-1]},
|
|
|
|
)
|
|
|
|
|
|
|
|
return False, potentially_left_users
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
finished, potentially_left_users = await self.db_pool.runInteraction(
|
2020-01-30 12:17:44 -05:00
|
|
|
"_background_remove_left_rooms", _background_remove_left_rooms_txn
|
|
|
|
)
|
|
|
|
|
|
|
|
if finished:
|
2020-08-05 16:38:57 -04:00
|
|
|
await self.db_pool.updates._end_background_update(
|
2020-01-30 12:17:44 -05:00
|
|
|
self.DELETE_CURRENT_STATE_UPDATE_NAME
|
|
|
|
)
|
|
|
|
|
|
|
|
# Now go and check if we still share a room with the remote users in
|
|
|
|
# the deleted rooms. If not mark their device lists as stale.
|
|
|
|
joined_users = await self.get_users_server_still_shares_room_with(
|
|
|
|
potentially_left_users
|
|
|
|
)
|
|
|
|
|
|
|
|
for user_id in potentially_left_users - joined_users:
|
|
|
|
await self.mark_remote_user_device_list_as_unsubscribed(user_id)
|
|
|
|
|
|
|
|
return batch_size
|
2019-10-21 07:56:42 -04:00
|
|
|
|
|
|
|
|
2019-12-20 05:48:24 -05:00
|
|
|
class StateStore(StateGroupWorkerStore, MainStateBackgroundUpdateStore):
|
2019-10-21 07:56:42 -04:00
|
|
|
"""Keeps track of the state at a given event.
|
|
|
|
|
|
|
|
This is done by the concept of `state groups`. Every event is a assigned
|
|
|
|
a state group (identified by an arbitrary string), which references a
|
|
|
|
collection of state events. The current state of an event is then the
|
|
|
|
collection of state events referenced by the event's state group.
|
|
|
|
|
|
|
|
Hence, every change in the current state causes a new state group to be
|
|
|
|
generated. However, if no change happens (e.g., if we get a message event
|
|
|
|
with only one parent it inherits the state group from its parent.)
|
|
|
|
|
|
|
|
There are three tables:
|
|
|
|
* `state_groups`: Stores group name, first event with in the group and
|
|
|
|
room id.
|
|
|
|
* `event_to_state_groups`: Maps events to state groups.
|
|
|
|
* `state_groups_state`: Maps state group to state events.
|
|
|
|
"""
|
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
def __init__(self, database: DatabasePool, db_conn, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|