2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -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.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2021-11-15 07:59:05 -05:00
|
|
|
from typing import Iterable, List, Optional, Tuple
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-12-30 13:47:12 -05:00
|
|
|
import attr
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import SynapseError
|
2021-11-12 14:56:00 -05:00
|
|
|
from synapse.storage.database import LoggingTransaction
|
2021-11-15 07:59:05 -05:00
|
|
|
from synapse.storage.databases.main import CacheInvalidationWorkerStore
|
2020-08-07 13:36:29 -04:00
|
|
|
from synapse.types import RoomAlias
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.caches.descriptors import cached
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2021-12-30 13:47:12 -05:00
|
|
|
|
|
|
|
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
|
|
|
class RoomAliasMapping:
|
|
|
|
room_id: str
|
|
|
|
room_alias: str
|
|
|
|
servers: List[str]
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2021-11-15 07:59:05 -05:00
|
|
|
class DirectoryWorkerStore(CacheInvalidationWorkerStore):
|
2020-08-07 13:36:29 -04:00
|
|
|
async def get_association_from_room_alias(
|
|
|
|
self, room_alias: RoomAlias
|
|
|
|
) -> Optional[RoomAliasMapping]:
|
|
|
|
"""Gets the room_id and server list for a given room_alias
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-07 13:36:29 -04:00
|
|
|
room_alias: The alias to translate to an ID.
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-08-07 13:36:29 -04:00
|
|
|
The room alias mapping or None if no association can be found.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2020-08-07 13:36:29 -04:00
|
|
|
room_id = await self.db_pool.simple_select_one_onecol(
|
2014-08-12 10:10:52 -04:00
|
|
|
"room_aliases",
|
|
|
|
{"room_alias": room_alias.to_string()},
|
|
|
|
"room_id",
|
|
|
|
allow_none=True,
|
2015-03-20 11:59:18 -04:00
|
|
|
desc="get_association_from_room_alias",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if not room_id:
|
2019-07-23 09:00:55 -04:00
|
|
|
return None
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-08-07 13:36:29 -04:00
|
|
|
servers = await self.db_pool.simple_select_onecol(
|
2014-08-12 10:10:52 -04:00
|
|
|
"room_alias_servers",
|
|
|
|
{"room_alias": room_alias.to_string()},
|
|
|
|
"server",
|
2015-03-20 11:59:18 -04:00
|
|
|
desc="get_association_from_room_alias",
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if not servers:
|
2019-07-23 09:00:55 -04:00
|
|
|
return None
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return RoomAliasMapping(room_id, room_alias.to_string(), servers)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-08-26 07:19:32 -04:00
|
|
|
async def get_room_alias_creator(self, room_alias: str) -> str:
|
|
|
|
return await self.db_pool.simple_select_one_onecol(
|
2018-03-05 10:11:30 -05:00
|
|
|
table="room_aliases",
|
2019-04-03 05:07:29 -04:00
|
|
|
keyvalues={"room_alias": room_alias},
|
2018-03-05 10:11:30 -05:00
|
|
|
retcol="creator",
|
|
|
|
desc="get_room_alias_creator",
|
|
|
|
)
|
|
|
|
|
|
|
|
@cached(max_entries=5000)
|
2020-08-27 07:08:38 -04:00
|
|
|
async def get_aliases_for_room(self, room_id: str) -> List[str]:
|
|
|
|
return await self.db_pool.simple_select_onecol(
|
2018-03-05 10:11:30 -05:00
|
|
|
"room_aliases",
|
|
|
|
{"room_id": room_id},
|
|
|
|
"room_alias",
|
|
|
|
desc="get_aliases_for_room",
|
|
|
|
)
|
|
|
|
|
2020-08-07 13:36:29 -04:00
|
|
|
async def create_room_alias_association(
|
|
|
|
self,
|
|
|
|
room_alias: RoomAlias,
|
|
|
|
room_id: str,
|
|
|
|
servers: Iterable[str],
|
|
|
|
creator: Optional[str] = None,
|
|
|
|
) -> None:
|
2018-09-28 21:14:40 -04:00
|
|
|
"""Creates an association between a room alias and room_id/servers
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
Args:
|
2020-08-07 13:36:29 -04:00
|
|
|
room_alias: The alias to create.
|
|
|
|
room_id: The target of the alias.
|
|
|
|
servers: A list of servers through which it may be possible to join the room
|
|
|
|
creator: Optional user_id of creator.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2019-04-03 05:07:29 -04:00
|
|
|
|
2021-11-15 07:59:05 -05:00
|
|
|
def alias_txn(txn: LoggingTransaction) -> None:
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_txn(
|
2016-08-15 05:21:25 -04:00
|
|
|
txn,
|
2014-11-18 10:03:01 -05:00
|
|
|
"room_aliases",
|
|
|
|
{
|
|
|
|
"room_alias": room_alias.to_string(),
|
|
|
|
"room_id": room_id,
|
2016-03-01 09:46:31 -05:00
|
|
|
"creator": creator,
|
2014-11-18 10:03:01 -05:00
|
|
|
},
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-08-05 16:38:57 -04:00
|
|
|
self.db_pool.simple_insert_many_txn(
|
2016-08-15 05:21:25 -04:00
|
|
|
txn,
|
|
|
|
table="room_alias_servers",
|
2019-04-03 05:07:29 -04:00
|
|
|
values=[
|
|
|
|
{"room_alias": room_alias.to_string(), "server": server}
|
|
|
|
for server in servers
|
|
|
|
],
|
2016-08-15 05:21:25 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
self._invalidate_cache_and_stream(
|
|
|
|
txn, self.get_aliases_for_room, (room_id,)
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
2020-08-07 13:36:29 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2019-12-04 08:52:46 -05:00
|
|
|
"create_room_alias_association", alias_txn
|
|
|
|
)
|
2016-08-15 05:21:25 -04:00
|
|
|
except self.database_engine.module.IntegrityError:
|
|
|
|
raise SynapseError(
|
|
|
|
409, "Room alias %s already exists" % room_alias.to_string()
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2014-09-05 16:35:56 -04:00
|
|
|
|
2021-09-06 09:37:15 -04:00
|
|
|
|
|
|
|
class DirectoryStore(DirectoryWorkerStore):
|
2021-11-12 14:56:00 -05:00
|
|
|
async def delete_room_alias(self, room_alias: RoomAlias) -> Optional[str]:
|
2020-08-07 13:36:29 -04:00
|
|
|
room_id = await self.db_pool.runInteraction(
|
2019-04-03 05:07:29 -04:00
|
|
|
"delete_room_alias", self._delete_room_alias_txn, room_alias
|
2014-09-30 06:31:22 -04:00
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return room_id
|
2015-03-20 15:21:13 -04:00
|
|
|
|
2021-11-12 14:56:00 -05:00
|
|
|
def _delete_room_alias_txn(
|
|
|
|
self, txn: LoggingTransaction, room_alias: RoomAlias
|
|
|
|
) -> Optional[str]:
|
2015-03-19 11:59:48 -04:00
|
|
|
txn.execute(
|
2014-09-30 06:31:22 -04:00
|
|
|
"SELECT room_id FROM room_aliases WHERE room_alias = ?",
|
2019-04-03 05:07:29 -04:00
|
|
|
(room_alias.to_string(),),
|
2014-09-30 06:31:22 -04:00
|
|
|
)
|
|
|
|
|
2015-03-19 11:59:48 -04:00
|
|
|
res = txn.fetchone()
|
2014-09-30 06:31:22 -04:00
|
|
|
if res:
|
|
|
|
room_id = res[0]
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
txn.execute(
|
2019-04-03 05:07:29 -04:00
|
|
|
"DELETE FROM room_aliases WHERE room_alias = ?", (room_alias.to_string(),)
|
2014-09-30 06:31:22 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
txn.execute(
|
|
|
|
"DELETE FROM room_alias_servers WHERE room_alias = ?",
|
2019-04-03 05:07:29 -04:00
|
|
|
(room_alias.to_string(),),
|
2014-09-30 06:31:22 -04:00
|
|
|
)
|
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
self._invalidate_cache_and_stream(txn, self.get_aliases_for_room, (room_id,))
|
2018-03-05 10:12:22 -05:00
|
|
|
|
2014-09-30 06:31:22 -04:00
|
|
|
return room_id
|
|
|
|
|
2020-09-01 08:39:04 -04:00
|
|
|
async def update_aliases_for_room(
|
2020-03-30 12:53:25 -04:00
|
|
|
self,
|
|
|
|
old_room_id: str,
|
|
|
|
new_room_id: str,
|
|
|
|
creator: Optional[str] = None,
|
2020-09-01 08:39:04 -04:00
|
|
|
) -> None:
|
2020-03-30 12:53:25 -04:00
|
|
|
"""Repoint all of the aliases for a given room, to a different room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
old_room_id:
|
|
|
|
new_room_id:
|
|
|
|
creator: The user to record as the creator of the new mapping.
|
|
|
|
If None, the creator will be left unchanged.
|
|
|
|
"""
|
|
|
|
|
2021-11-15 07:59:05 -05:00
|
|
|
def _update_aliases_for_room_txn(txn: LoggingTransaction) -> None:
|
2020-03-30 12:53:25 -04:00
|
|
|
update_creator_sql = ""
|
2021-11-15 07:59:05 -05:00
|
|
|
sql_params: Tuple[str, ...] = (new_room_id, old_room_id)
|
2020-03-30 12:53:25 -04:00
|
|
|
if creator:
|
|
|
|
update_creator_sql = ", creator = ?"
|
|
|
|
sql_params = (new_room_id, creator, old_room_id)
|
|
|
|
|
|
|
|
sql = "UPDATE room_aliases SET room_id = ? %s WHERE room_id = ?" % (
|
|
|
|
update_creator_sql,
|
|
|
|
)
|
|
|
|
txn.execute(sql, sql_params)
|
2017-06-19 07:36:28 -04:00
|
|
|
self._invalidate_cache_and_stream(
|
|
|
|
txn, self.get_aliases_for_room, (old_room_id,)
|
|
|
|
)
|
|
|
|
self._invalidate_cache_and_stream(
|
|
|
|
txn, self.get_aliases_for_room, (new_room_id,)
|
|
|
|
)
|
2019-04-03 05:07:29 -04:00
|
|
|
|
2020-09-01 08:39:04 -04:00
|
|
|
await self.db_pool.runInteraction(
|
2017-06-19 07:36:28 -04:00
|
|
|
"_update_aliases_for_room_txn", _update_aliases_for_room_txn
|
|
|
|
)
|