2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-05 13:01:18 -05:00
|
|
|
# Copyright 2014 - 2016 OpenMarket Ltd
|
2018-02-06 11:40:38 -05:00
|
|
|
# Copyright 2018 New Vector 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
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Contains functions for performing events on rooms."""
|
2018-07-27 10:12:50 -04:00
|
|
|
import itertools
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
import math
|
|
|
|
import string
|
|
|
|
from collections import OrderedDict
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-10-26 17:51:34 -04:00
|
|
|
from six import iteritems, string_types
|
2018-07-25 17:10:39 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from twisted.internet import defer
|
2015-01-26 11:11:28 -05:00
|
|
|
|
2019-04-01 05:24:38 -04:00
|
|
|
from synapse.api.constants import EventTypes, JoinRules, RoomCreationPreset
|
2018-10-12 06:13:40 -04:00
|
|
|
from synapse.api.errors import AuthError, Codes, NotFoundError, StoreError, SynapseError
|
2019-05-23 10:00:20 -04:00
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS
|
2018-10-25 12:49:55 -04:00
|
|
|
from synapse.storage.state import StateFilter
|
2018-07-24 11:46:30 -04:00
|
|
|
from synapse.types import RoomAlias, RoomID, RoomStreamToken, StreamToken, UserID
|
2016-04-01 09:06:00 -04:00
|
|
|
from synapse.util import stringutils
|
2018-08-22 05:57:54 -04:00
|
|
|
from synapse.util.async_helpers import Linearizer
|
2019-06-25 09:19:21 -04:00
|
|
|
from synapse.util.caches.response_cache import ResponseCache
|
2016-05-11 08:42:37 -04:00
|
|
|
from synapse.visibility import filter_events_for_client
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from ._base import BaseHandler
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2015-11-05 11:43:19 -05:00
|
|
|
id_server_scheme = "https://"
|
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
FIVE_MINUTES_IN_MS = 5 * 60 * 1000
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-09-05 16:35:56 -04:00
|
|
|
class RoomCreationHandler(BaseHandler):
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-07-13 11:48:06 -04:00
|
|
|
PRESETS_DICT = {
|
2015-07-14 05:20:31 -04:00
|
|
|
RoomCreationPreset.PRIVATE_CHAT: {
|
2015-07-13 11:48:06 -04:00
|
|
|
"join_rules": JoinRules.INVITE,
|
2015-09-09 04:57:49 -04:00
|
|
|
"history_visibility": "shared",
|
2015-07-14 05:37:42 -04:00
|
|
|
"original_invitees_have_ops": False,
|
2016-03-17 12:07:35 -04:00
|
|
|
"guest_can_join": True,
|
2015-07-13 11:48:06 -04:00
|
|
|
},
|
2015-10-02 06:22:56 -04:00
|
|
|
RoomCreationPreset.TRUSTED_PRIVATE_CHAT: {
|
|
|
|
"join_rules": JoinRules.INVITE,
|
|
|
|
"history_visibility": "shared",
|
|
|
|
"original_invitees_have_ops": True,
|
2016-03-17 12:07:35 -04:00
|
|
|
"guest_can_join": True,
|
2015-10-02 06:22:56 -04:00
|
|
|
},
|
2015-07-14 05:20:31 -04:00
|
|
|
RoomCreationPreset.PUBLIC_CHAT: {
|
2015-07-13 11:48:06 -04:00
|
|
|
"join_rules": JoinRules.PUBLIC,
|
|
|
|
"history_visibility": "shared",
|
2015-07-14 05:37:42 -04:00
|
|
|
"original_invitees_have_ops": False,
|
2016-03-17 12:07:35 -04:00
|
|
|
"guest_can_join": False,
|
2015-07-13 11:48:06 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-10-04 05:47:54 -04:00
|
|
|
def __init__(self, hs):
|
|
|
|
super(RoomCreationHandler, self).__init__(hs)
|
|
|
|
|
|
|
|
self.spam_checker = hs.get_spam_checker()
|
2018-01-15 11:52:07 -05:00
|
|
|
self.event_creation_handler = hs.get_event_creation_handler()
|
2018-10-25 12:42:37 -04:00
|
|
|
self.room_member_handler = hs.get_room_member_handler()
|
2019-05-23 10:00:20 -04:00
|
|
|
self.config = hs.config
|
2017-10-04 05:47:54 -04:00
|
|
|
|
2018-08-22 05:57:54 -04:00
|
|
|
# linearizer to stop two upgrades happening at once
|
|
|
|
self._upgrade_linearizer = Linearizer("room_upgrade_linearizer")
|
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
# If a user tries to update the same room multiple times in quick
|
|
|
|
# succession, only process the first attempt and return its result to
|
|
|
|
# subsequent requests
|
|
|
|
self._upgrade_response_cache = ResponseCache(
|
|
|
|
hs, "room_upgrade", timeout_ms=FIVE_MINUTES_IN_MS
|
|
|
|
)
|
2019-06-17 10:48:57 -04:00
|
|
|
self._server_notices_mxid = hs.config.server_notices_mxid
|
|
|
|
|
|
|
|
self.third_party_event_rules = hs.get_third_party_event_rules()
|
|
|
|
|
2018-08-22 05:57:54 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def upgrade_room(self, requester, old_room_id, new_version):
|
|
|
|
"""Replace a room with a new room with a different version
|
|
|
|
|
|
|
|
Args:
|
|
|
|
requester (synapse.types.Requester): the user requesting the upgrade
|
|
|
|
old_room_id (unicode): the id of the room to be replaced
|
|
|
|
new_version (unicode): the new room version to use
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred[unicode]: the new room id
|
|
|
|
"""
|
|
|
|
yield self.ratelimit(requester)
|
|
|
|
|
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
# Check if this room is already being upgraded by another person
|
|
|
|
for key in self._upgrade_response_cache.pending_result_cache:
|
|
|
|
if key[0] == old_room_id and key[1] != user_id:
|
|
|
|
# Two different people are trying to upgrade the same room.
|
|
|
|
# Send the second an error.
|
|
|
|
#
|
|
|
|
# Note that this of course only gets caught if both users are
|
|
|
|
# on the same homeserver.
|
|
|
|
raise SynapseError(
|
|
|
|
400, "An upgrade for this room is currently in progress"
|
2018-08-22 05:57:54 -04:00
|
|
|
)
|
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
# Upgrade the room
|
|
|
|
#
|
|
|
|
# If this user has sent multiple upgrade requests for the same room
|
|
|
|
# and one of them is not complete yet, cache the response and
|
|
|
|
# return it to all subsequent requests
|
|
|
|
ret = yield self._upgrade_response_cache.wrap(
|
|
|
|
(old_room_id, user_id),
|
|
|
|
self._upgrade_room,
|
|
|
|
requester,
|
|
|
|
old_room_id,
|
|
|
|
new_version, # args for _upgrade_room
|
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return ret
|
2018-08-22 05:57:54 -04:00
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _upgrade_room(self, requester, old_room_id, new_version):
|
|
|
|
user_id = requester.user.to_string()
|
2018-08-22 05:57:54 -04:00
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
# start by allocating a new room id
|
|
|
|
r = yield self.store.get_room(old_room_id)
|
|
|
|
if r is None:
|
|
|
|
raise NotFoundError("Unknown room id %s" % (old_room_id,))
|
|
|
|
new_room_id = yield self._generate_room_id(
|
|
|
|
creator_id=user_id, is_public=r["is_public"]
|
|
|
|
)
|
2018-10-24 18:14:36 -04:00
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
logger.info("Creating new room %s to replace %s", new_room_id, old_room_id)
|
2018-10-26 10:11:35 -04:00
|
|
|
|
2019-06-25 09:19:21 -04:00
|
|
|
# we create and auth the tombstone event before properly creating the new
|
|
|
|
# room, to check our user has perms in the old room.
|
|
|
|
tombstone_event, tombstone_context = (
|
|
|
|
yield self.event_creation_handler.create_event(
|
|
|
|
requester,
|
|
|
|
{
|
|
|
|
"type": EventTypes.Tombstone,
|
|
|
|
"state_key": "",
|
|
|
|
"room_id": old_room_id,
|
|
|
|
"sender": user_id,
|
|
|
|
"content": {
|
|
|
|
"body": "This room has been replaced",
|
|
|
|
"replacement_room": new_room_id,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
token_id=requester.access_token_id,
|
2018-10-26 18:47:37 -04:00
|
|
|
)
|
2019-06-25 09:19:21 -04:00
|
|
|
)
|
|
|
|
old_room_version = yield self.store.get_room_version(old_room_id)
|
|
|
|
yield self.auth.check_from_context(
|
|
|
|
old_room_version, tombstone_event, tombstone_context
|
|
|
|
)
|
|
|
|
|
|
|
|
yield self.clone_existing_room(
|
|
|
|
requester,
|
|
|
|
old_room_id=old_room_id,
|
|
|
|
new_room_id=new_room_id,
|
|
|
|
new_room_version=new_version,
|
|
|
|
tombstone_event_id=tombstone_event.event_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
# now send the tombstone
|
|
|
|
yield self.event_creation_handler.send_nonmember_event(
|
|
|
|
requester, tombstone_event, tombstone_context
|
|
|
|
)
|
|
|
|
|
|
|
|
old_room_state = yield tombstone_context.get_current_state_ids(self.store)
|
|
|
|
|
|
|
|
# update any aliases
|
|
|
|
yield self._move_aliases_to_new_room(
|
|
|
|
requester, old_room_id, new_room_id, old_room_state
|
|
|
|
)
|
|
|
|
|
|
|
|
# and finally, shut down the PLs in the old room, and update them in the new
|
|
|
|
# room.
|
|
|
|
yield self._update_upgraded_room_pls(
|
|
|
|
requester, old_room_id, new_room_id, old_room_state
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return new_room_id
|
2018-10-26 18:47:37 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _update_upgraded_room_pls(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, requester, old_room_id, new_room_id, old_room_state
|
2018-10-26 18:47:37 -04:00
|
|
|
):
|
|
|
|
"""Send updated power levels in both rooms after an upgrade
|
|
|
|
|
|
|
|
Args:
|
|
|
|
requester (synapse.types.Requester): the user requesting the upgrade
|
|
|
|
old_room_id (unicode): the id of the room to be replaced
|
|
|
|
new_room_id (unicode): the id of the replacement room
|
|
|
|
old_room_state (dict[tuple[str, str], str]): the state map for the old room
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Deferred
|
|
|
|
"""
|
|
|
|
old_room_pl_event_id = old_room_state.get((EventTypes.PowerLevels, ""))
|
|
|
|
|
|
|
|
if old_room_pl_event_id is None:
|
|
|
|
logger.warning(
|
|
|
|
"Not supported: upgrading a room with no PL event. Not setting PLs "
|
2019-06-20 05:32:02 -04:00
|
|
|
"in old room."
|
2018-10-26 18:47:37 -04:00
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
old_room_pl_state = yield self.store.get_event(old_room_pl_event_id)
|
|
|
|
|
|
|
|
# we try to stop regular users from speaking by setting the PL required
|
|
|
|
# to send regular events and invites to 'Moderator' level. That's normally
|
|
|
|
# 50, but if the default PL in a room is 50 or more, then we set the
|
|
|
|
# required PL above that.
|
|
|
|
|
|
|
|
pl_content = dict(old_room_pl_state.content)
|
|
|
|
users_default = int(pl_content.get("users_default", 0))
|
|
|
|
restricted_level = max(users_default + 1, 50)
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
for v in ("invite", "events_default"):
|
|
|
|
current = int(pl_content.get(v, 0))
|
|
|
|
if current < restricted_level:
|
|
|
|
logger.info(
|
|
|
|
"Setting level for %s in %s to %i (was %i)",
|
2019-06-20 05:32:02 -04:00
|
|
|
v,
|
|
|
|
old_room_id,
|
|
|
|
restricted_level,
|
|
|
|
current,
|
2018-10-24 18:14:36 -04:00
|
|
|
)
|
2018-10-26 18:47:37 -04:00
|
|
|
pl_content[v] = restricted_level
|
|
|
|
updated = True
|
2018-10-24 18:14:36 -04:00
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.info("Not setting level for %s (already %i)", v, current)
|
2018-10-26 18:47:37 -04:00
|
|
|
|
|
|
|
if updated:
|
|
|
|
try:
|
|
|
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
2019-06-20 05:32:02 -04:00
|
|
|
requester,
|
|
|
|
{
|
2018-10-26 18:47:37 -04:00
|
|
|
"type": EventTypes.PowerLevels,
|
2019-06-20 05:32:02 -04:00
|
|
|
"state_key": "",
|
2018-10-26 18:47:37 -04:00
|
|
|
"room_id": old_room_id,
|
|
|
|
"sender": requester.user.to_string(),
|
|
|
|
"content": pl_content,
|
2019-06-20 05:32:02 -04:00
|
|
|
},
|
|
|
|
ratelimit=False,
|
2018-10-26 18:47:37 -04:00
|
|
|
)
|
|
|
|
except AuthError as e:
|
|
|
|
logger.warning("Unable to update PLs in old room: %s", e)
|
|
|
|
|
|
|
|
logger.info("Setting correct PLs in new room")
|
|
|
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
2019-06-20 05:32:02 -04:00
|
|
|
requester,
|
|
|
|
{
|
2018-10-26 18:47:37 -04:00
|
|
|
"type": EventTypes.PowerLevels,
|
2019-06-20 05:32:02 -04:00
|
|
|
"state_key": "",
|
2018-10-26 18:47:37 -04:00
|
|
|
"room_id": new_room_id,
|
|
|
|
"sender": requester.user.to_string(),
|
|
|
|
"content": old_room_pl_state.content,
|
2019-06-20 05:32:02 -04:00
|
|
|
},
|
|
|
|
ratelimit=False,
|
2018-10-26 18:47:37 -04:00
|
|
|
)
|
2018-08-22 05:57:54 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2019-01-17 09:11:24 -05:00
|
|
|
def clone_existing_room(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, requester, old_room_id, new_room_id, new_room_version, tombstone_event_id
|
2018-08-22 05:57:54 -04:00
|
|
|
):
|
|
|
|
"""Populate a new room based on an old room
|
|
|
|
|
|
|
|
Args:
|
|
|
|
requester (synapse.types.Requester): the user requesting the upgrade
|
|
|
|
old_room_id (unicode): the id of the room to be replaced
|
|
|
|
new_room_id (unicode): the id to give the new room (should already have been
|
|
|
|
created with _gemerate_room_id())
|
|
|
|
new_room_version (unicode): the new room version to use
|
|
|
|
tombstone_event_id (unicode|str): the ID of the tombstone event in the old
|
|
|
|
room.
|
|
|
|
Returns:
|
|
|
|
Deferred[None]
|
|
|
|
"""
|
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
|
|
|
if not self.spam_checker.user_may_create_room(user_id):
|
|
|
|
raise SynapseError(403, "You are not permitted to create rooms")
|
|
|
|
|
|
|
|
creation_content = {
|
|
|
|
"room_version": new_room_version,
|
2019-06-20 05:32:02 -04:00
|
|
|
"predecessor": {"room_id": old_room_id, "event_id": tombstone_event_id},
|
2018-08-22 05:57:54 -04:00
|
|
|
}
|
|
|
|
|
2019-01-30 11:33:51 -05:00
|
|
|
# Check if old room was non-federatable
|
|
|
|
|
|
|
|
# Get old room's create event
|
2019-01-31 13:21:39 -05:00
|
|
|
old_room_create_event = yield self.store.get_create_event_for_room(old_room_id)
|
2019-01-30 11:33:51 -05:00
|
|
|
|
|
|
|
# Check if the create event specified a non-federatable room
|
2019-01-31 06:34:45 -05:00
|
|
|
if not old_room_create_event.content.get("m.federate", True):
|
2019-01-30 11:33:51 -05:00
|
|
|
# If so, mark the new room as non-federatable as well
|
|
|
|
creation_content["m.federate"] = False
|
|
|
|
|
2018-10-12 07:05:18 -04:00
|
|
|
initial_state = dict()
|
|
|
|
|
2019-01-17 10:22:03 -05:00
|
|
|
# Replicate relevant room events
|
2018-10-12 12:05:48 -04:00
|
|
|
types_to_copy = (
|
|
|
|
(EventTypes.JoinRules, ""),
|
|
|
|
(EventTypes.Name, ""),
|
|
|
|
(EventTypes.Topic, ""),
|
|
|
|
(EventTypes.RoomHistoryVisibility, ""),
|
2018-10-26 18:56:40 -04:00
|
|
|
(EventTypes.GuestAccess, ""),
|
|
|
|
(EventTypes.RoomAvatar, ""),
|
2019-01-21 04:42:59 -05:00
|
|
|
(EventTypes.Encryption, ""),
|
2019-02-11 06:30:37 -05:00
|
|
|
(EventTypes.ServerACL, ""),
|
2019-04-02 12:15:24 -04:00
|
|
|
(EventTypes.RelatedGroups, ""),
|
2018-10-12 12:05:48 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
old_room_state_ids = yield self.store.get_filtered_current_state_ids(
|
2019-06-20 05:32:02 -04:00
|
|
|
old_room_id, StateFilter.from_types(types_to_copy)
|
2018-10-12 12:05:48 -04:00
|
|
|
)
|
|
|
|
# map from event_id to BaseEvent
|
|
|
|
old_room_state_events = yield self.store.get_events(old_room_state_ids.values())
|
|
|
|
|
2018-10-26 17:51:34 -04:00
|
|
|
for k, old_event_id in iteritems(old_room_state_ids):
|
|
|
|
old_event = old_room_state_events.get(old_event_id)
|
|
|
|
if old_event:
|
|
|
|
initial_state[k] = old_event.content
|
2018-08-22 05:57:54 -04:00
|
|
|
|
|
|
|
yield self._send_events_for_new_room(
|
|
|
|
requester,
|
|
|
|
new_room_id,
|
2018-10-12 12:05:48 -04:00
|
|
|
# we expect to override all the presets with initial_state, so this is
|
|
|
|
# somewhat arbitrary.
|
|
|
|
preset_config=RoomCreationPreset.PRIVATE_CHAT,
|
2018-08-22 05:57:54 -04:00
|
|
|
invite_list=[],
|
|
|
|
initial_state=initial_state,
|
|
|
|
creation_content=creation_content,
|
|
|
|
)
|
|
|
|
|
2019-02-18 09:02:09 -05:00
|
|
|
# Transfer membership events
|
2019-02-18 11:56:34 -05:00
|
|
|
old_room_member_state_ids = yield self.store.get_filtered_current_state_ids(
|
2019-06-20 05:32:02 -04:00
|
|
|
old_room_id, StateFilter.from_types([(EventTypes.Member, None)])
|
2019-02-18 11:56:34 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# map from event_id to BaseEvent
|
2019-02-18 13:23:37 -05:00
|
|
|
old_room_member_state_events = yield self.store.get_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
old_room_member_state_ids.values()
|
2019-02-18 13:23:37 -05:00
|
|
|
)
|
2019-02-18 11:56:34 -05:00
|
|
|
for k, old_event in iteritems(old_room_member_state_events):
|
2019-02-18 09:02:09 -05:00
|
|
|
# Only transfer ban events
|
2019-06-20 05:32:02 -04:00
|
|
|
if (
|
|
|
|
"membership" in old_event.content
|
|
|
|
and old_event.content["membership"] == "ban"
|
|
|
|
):
|
2019-02-18 09:02:09 -05:00
|
|
|
yield self.room_member_handler.update_membership(
|
|
|
|
requester,
|
2019-06-20 05:32:02 -04:00
|
|
|
UserID.from_string(old_event["state_key"]),
|
2019-02-18 09:02:09 -05:00
|
|
|
new_room_id,
|
|
|
|
"ban",
|
|
|
|
ratelimit=False,
|
|
|
|
content=old_event.content,
|
|
|
|
)
|
|
|
|
|
2018-08-22 05:57:54 -04:00
|
|
|
# XXX invites/joins
|
|
|
|
# XXX 3pid invites
|
2018-10-26 10:11:35 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _move_aliases_to_new_room(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, requester, old_room_id, new_room_id, old_room_state
|
2018-10-26 10:11:35 -04:00
|
|
|
):
|
|
|
|
directory_handler = self.hs.get_handlers().directory_handler
|
|
|
|
|
|
|
|
aliases = yield self.store.get_aliases_for_room(old_room_id)
|
|
|
|
|
|
|
|
# check to see if we have a canonical alias.
|
|
|
|
canonical_alias = None
|
|
|
|
canonical_alias_event_id = old_room_state.get((EventTypes.CanonicalAlias, ""))
|
|
|
|
if canonical_alias_event_id:
|
|
|
|
canonical_alias_event = yield self.store.get_event(canonical_alias_event_id)
|
|
|
|
if canonical_alias_event:
|
|
|
|
canonical_alias = canonical_alias_event.content.get("alias", "")
|
|
|
|
|
|
|
|
# first we try to remove the aliases from the old room (we suppress sending
|
|
|
|
# the room_aliases event until the end).
|
|
|
|
#
|
|
|
|
# Note that we'll only be able to remove aliases that (a) aren't owned by an AS,
|
|
|
|
# and (b) unless the user is a server admin, which the user created.
|
|
|
|
#
|
|
|
|
# This is probably correct - given we don't allow such aliases to be deleted
|
|
|
|
# normally, it would be odd to allow it in the case of doing a room upgrade -
|
|
|
|
# but it makes the upgrade less effective, and you have to wonder why a room
|
|
|
|
# admin can't remove aliases that point to that room anyway.
|
|
|
|
# (cf https://github.com/matrix-org/synapse/issues/2360)
|
|
|
|
#
|
|
|
|
removed_aliases = []
|
|
|
|
for alias_str in aliases:
|
|
|
|
alias = RoomAlias.from_string(alias_str)
|
|
|
|
try:
|
|
|
|
yield directory_handler.delete_association(
|
2019-06-20 05:32:02 -04:00
|
|
|
requester, alias, send_event=False
|
2018-10-26 10:11:35 -04:00
|
|
|
)
|
2018-10-29 11:20:19 -04:00
|
|
|
removed_aliases.append(alias_str)
|
2018-10-26 10:11:35 -04:00
|
|
|
except SynapseError as e:
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.warning("Unable to remove alias %s from old room: %s", alias, e)
|
2018-10-26 10:11:35 -04:00
|
|
|
|
|
|
|
# if we didn't find any aliases, or couldn't remove anyway, we can skip the rest
|
|
|
|
# of this.
|
|
|
|
if not removed_aliases:
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
# this can fail if, for some reason, our user doesn't have perms to send
|
|
|
|
# m.room.aliases events in the old room (note that we've already checked that
|
|
|
|
# they have perms to send a tombstone event, so that's not terribly likely).
|
|
|
|
#
|
|
|
|
# If that happens, it's regrettable, but we should carry on: it's the same
|
|
|
|
# as when you remove an alias from the directory normally - it just means that
|
|
|
|
# the aliases event gets out of sync with the directory
|
|
|
|
# (cf https://github.com/vector-im/riot-web/issues/2369)
|
2019-06-20 05:32:02 -04:00
|
|
|
yield directory_handler.send_room_alias_update_event(requester, old_room_id)
|
2018-10-26 10:11:35 -04:00
|
|
|
except AuthError as e:
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.warning("Failed to send updated alias event on old room: %s", e)
|
2018-10-26 10:11:35 -04:00
|
|
|
|
|
|
|
# we can now add any aliases we successfully removed to the new room.
|
|
|
|
for alias in removed_aliases:
|
|
|
|
try:
|
|
|
|
yield directory_handler.create_association(
|
2019-06-20 05:32:02 -04:00
|
|
|
requester,
|
|
|
|
RoomAlias.from_string(alias),
|
|
|
|
new_room_id,
|
|
|
|
servers=(self.hs.hostname,),
|
|
|
|
send_event=False,
|
|
|
|
check_membership=False,
|
2018-10-26 10:11:35 -04:00
|
|
|
)
|
|
|
|
logger.info("Moved alias %s to new room", alias)
|
|
|
|
except SynapseError as e:
|
|
|
|
# I'm not really expecting this to happen, but it could if the spam
|
|
|
|
# checking module decides it shouldn't, or similar.
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.error("Error adding alias %s to new room: %s", alias, e)
|
2018-10-26 10:11:35 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
if canonical_alias and (canonical_alias in removed_aliases):
|
|
|
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
|
|
|
requester,
|
|
|
|
{
|
|
|
|
"type": EventTypes.CanonicalAlias,
|
|
|
|
"state_key": "",
|
|
|
|
"room_id": new_room_id,
|
|
|
|
"sender": requester.user.to_string(),
|
2019-06-20 05:32:02 -04:00
|
|
|
"content": {"alias": canonical_alias},
|
2018-10-26 10:11:35 -04:00
|
|
|
},
|
2019-06-20 05:32:02 -04:00
|
|
|
ratelimit=False,
|
2018-10-26 10:11:35 -04:00
|
|
|
)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
yield directory_handler.send_room_alias_update_event(requester, new_room_id)
|
2018-10-26 10:11:35 -04:00
|
|
|
except SynapseError as e:
|
|
|
|
# again I'm not really expecting this to fail, but if it does, I'd rather
|
|
|
|
# we returned the new room to the client at this point.
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.error("Unable to send updated alias events in new room: %s", e)
|
2018-08-22 05:57:54 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
2019-06-20 05:32:02 -04:00
|
|
|
def create_room(self, requester, config, ratelimit=True, creator_join_profile=None):
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Creates a new room.
|
|
|
|
|
|
|
|
Args:
|
2018-05-17 04:01:09 -04:00
|
|
|
requester (synapse.types.Requester):
|
|
|
|
The user who requested the room creation.
|
2014-08-12 10:10:52 -04:00
|
|
|
config (dict) : A dict of configuration options.
|
2018-05-17 04:01:09 -04:00
|
|
|
ratelimit (bool): set to False to disable the rate limiter
|
2018-05-17 06:34:28 -04:00
|
|
|
|
|
|
|
creator_join_profile (dict|None):
|
|
|
|
Set to override the displayname and avatar for the creating
|
|
|
|
user in this room. If unset, displayname and avatar will be
|
|
|
|
derived from the user's profile. If set, should contain the
|
|
|
|
values to go in the body of the 'join' event (typically
|
|
|
|
`avatar_url` and/or `displayname`.
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
Returns:
|
2018-05-17 04:01:09 -04:00
|
|
|
Deferred[dict]:
|
|
|
|
a dict containing the keys `room_id` and, if an alias was
|
|
|
|
requested, `room_alias`.
|
2014-08-12 10:10:52 -04:00
|
|
|
Raises:
|
2016-02-15 13:13:10 -05:00
|
|
|
SynapseError if the room ID couldn't be stored, or something went
|
|
|
|
horribly wrong.
|
2018-08-16 16:25:16 -04:00
|
|
|
ResourceLimitError if server is blocked to some resource being
|
|
|
|
exceeded
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2016-02-15 13:13:10 -05:00
|
|
|
user_id = requester.user.to_string()
|
|
|
|
|
2018-12-14 13:20:59 -05:00
|
|
|
yield self.auth.check_auth_blocking(user_id)
|
2018-08-16 16:25:16 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if (
|
|
|
|
self._server_notices_mxid is not None
|
|
|
|
and requester.user.to_string() == self._server_notices_mxid
|
|
|
|
):
|
2019-06-17 10:48:57 -04:00
|
|
|
# allow the server notices mxid to create rooms
|
|
|
|
is_requester_admin = True
|
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
is_requester_admin = yield self.auth.is_server_admin(requester.user)
|
2019-06-17 10:48:57 -04:00
|
|
|
|
|
|
|
# Check whether the third party rules allows/changes the room create
|
|
|
|
# request.
|
|
|
|
yield self.third_party_event_rules.on_create_room(
|
2019-06-20 05:32:02 -04:00
|
|
|
requester, config, is_requester_admin=is_requester_admin
|
2019-06-17 10:48:57 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if not is_requester_admin and not self.spam_checker.user_may_create_room(
|
2019-06-20 05:32:02 -04:00
|
|
|
user_id
|
2019-06-17 10:48:57 -04:00
|
|
|
):
|
2017-10-04 07:44:27 -04:00
|
|
|
raise SynapseError(403, "You are not permitted to create rooms")
|
2017-10-04 05:47:54 -04:00
|
|
|
|
2017-06-19 09:10:13 -04:00
|
|
|
if ratelimit:
|
|
|
|
yield self.ratelimit(requester)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-05-23 10:00:20 -04:00
|
|
|
room_version = config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"room_version", self.config.default_room_version.identifier
|
2019-05-23 10:00:20 -04:00
|
|
|
)
|
|
|
|
|
2018-07-25 17:10:39 -04:00
|
|
|
if not isinstance(room_version, string_types):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise SynapseError(400, "room_version must be a string", Codes.BAD_JSON)
|
2018-07-25 17:10:39 -04:00
|
|
|
|
|
|
|
if room_version not in KNOWN_ROOM_VERSIONS:
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"Your homeserver does not support this room version",
|
|
|
|
Codes.UNSUPPORTED_ROOM_VERSION,
|
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
if "room_alias_name" in config:
|
2015-05-14 08:11:28 -04:00
|
|
|
for wchar in string.whitespace:
|
|
|
|
if wchar in config["room_alias_name"]:
|
|
|
|
raise SynapseError(400, "Invalid characters in room alias")
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
room_alias = RoomAlias(config["room_alias_name"], self.hs.hostname)
|
|
|
|
mapping = yield self.store.get_association_from_room_alias(room_alias)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if mapping:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise SynapseError(400, "Room alias already taken", Codes.ROOM_IN_USE)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
|
|
|
room_alias = None
|
|
|
|
|
2014-09-05 20:10:07 -04:00
|
|
|
invite_list = config.get("invite", [])
|
|
|
|
for i in invite_list:
|
|
|
|
try:
|
2015-01-23 06:47:15 -05:00
|
|
|
UserID.from_string(i)
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2014-09-05 20:10:07 -04:00
|
|
|
raise SynapseError(400, "Invalid user_id: %s" % (i,))
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
yield self.event_creation_handler.assert_accepted_privacy_policy(requester)
|
2018-05-22 03:56:52 -04:00
|
|
|
|
2019-08-15 04:45:57 -04:00
|
|
|
power_level_content_override = config.get("power_level_content_override")
|
|
|
|
if (
|
|
|
|
power_level_content_override
|
|
|
|
and "users" in power_level_content_override
|
|
|
|
and user_id not in power_level_content_override["users"]
|
|
|
|
):
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"Not a valid power_level_content_override: 'users' did not contain %s"
|
|
|
|
% (user_id,),
|
|
|
|
)
|
|
|
|
|
2016-01-05 06:56:21 -05:00
|
|
|
invite_3pid_list = config.get("invite_3pid", [])
|
|
|
|
|
2016-03-23 09:49:10 -04:00
|
|
|
visibility = config.get("visibility", None)
|
|
|
|
is_public = visibility == "public"
|
2014-08-28 05:59:15 -04:00
|
|
|
|
2018-10-25 12:40:41 -04:00
|
|
|
room_id = yield self._generate_room_id(creator_id=user_id, is_public=is_public)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-09-11 11:02:42 -04:00
|
|
|
directory_handler = self.hs.get_handlers().directory_handler
|
2014-11-18 10:03:01 -05:00
|
|
|
if room_alias:
|
|
|
|
yield directory_handler.create_association(
|
2018-10-18 11:14:24 -04:00
|
|
|
requester=requester,
|
2014-11-18 10:03:01 -05:00
|
|
|
room_id=room_id,
|
|
|
|
room_alias=room_alias,
|
|
|
|
servers=[self.hs.hostname],
|
2018-10-18 11:14:24 -04:00
|
|
|
send_event=False,
|
2019-05-02 04:21:29 -04:00
|
|
|
check_membership=False,
|
2014-11-18 10:03:01 -05:00
|
|
|
)
|
|
|
|
|
2015-07-13 11:48:06 -04:00
|
|
|
preset_config = config.get(
|
|
|
|
"preset",
|
2016-03-23 09:49:10 -04:00
|
|
|
RoomCreationPreset.PRIVATE_CHAT
|
|
|
|
if visibility == "private"
|
2019-06-20 05:32:02 -04:00
|
|
|
else RoomCreationPreset.PUBLIC_CHAT,
|
2015-07-13 11:48:06 -04:00
|
|
|
)
|
|
|
|
|
2015-07-16 10:25:29 -04:00
|
|
|
raw_initial_state = config.get("initial_state", [])
|
|
|
|
|
|
|
|
initial_state = OrderedDict()
|
|
|
|
for val in raw_initial_state:
|
|
|
|
initial_state[(val["type"], val.get("state_key", ""))] = val["content"]
|
|
|
|
|
2015-09-01 10:09:23 -04:00
|
|
|
creation_content = config.get("creation_content", {})
|
|
|
|
|
2018-07-25 17:10:39 -04:00
|
|
|
# override any attempt to set room versions via the creation_content
|
|
|
|
creation_content["room_version"] = room_version
|
|
|
|
|
2016-02-16 07:00:50 -05:00
|
|
|
yield self._send_events_for_new_room(
|
|
|
|
requester,
|
|
|
|
room_id,
|
2015-07-13 11:48:06 -04:00
|
|
|
preset_config=preset_config,
|
|
|
|
invite_list=invite_list,
|
2015-07-16 10:25:29 -04:00
|
|
|
initial_state=initial_state,
|
2015-09-01 10:09:23 -04:00
|
|
|
creation_content=creation_content,
|
2015-09-23 05:07:31 -04:00
|
|
|
room_alias=room_alias,
|
2019-08-15 04:45:57 -04:00
|
|
|
power_level_content_override=power_level_content_override,
|
2018-05-17 06:34:28 -04:00
|
|
|
creator_join_profile=creator_join_profile,
|
2014-08-27 10:11:51 -04:00
|
|
|
)
|
|
|
|
|
2014-09-02 05:02:14 -04:00
|
|
|
if "name" in config:
|
|
|
|
name = config["name"]
|
2018-01-15 11:52:07 -05:00
|
|
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
2016-03-03 11:43:42 -05:00
|
|
|
requester,
|
|
|
|
{
|
|
|
|
"type": EventTypes.Name,
|
|
|
|
"room_id": room_id,
|
|
|
|
"sender": user_id,
|
|
|
|
"state_key": "",
|
|
|
|
"content": {"name": name},
|
|
|
|
},
|
2019-06-20 05:32:02 -04:00
|
|
|
ratelimit=False,
|
|
|
|
)
|
2014-09-02 05:02:14 -04:00
|
|
|
|
|
|
|
if "topic" in config:
|
|
|
|
topic = config["topic"]
|
2018-01-15 11:52:07 -05:00
|
|
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
2016-03-03 11:43:42 -05:00
|
|
|
requester,
|
|
|
|
{
|
|
|
|
"type": EventTypes.Topic,
|
|
|
|
"room_id": room_id,
|
|
|
|
"sender": user_id,
|
|
|
|
"state_key": "",
|
|
|
|
"content": {"topic": topic},
|
|
|
|
},
|
2019-06-20 05:32:02 -04:00
|
|
|
ratelimit=False,
|
|
|
|
)
|
2014-09-02 05:02:14 -04:00
|
|
|
|
2014-09-05 20:10:07 -04:00
|
|
|
for invitee in invite_list:
|
2017-11-28 10:19:15 -05:00
|
|
|
content = {}
|
|
|
|
is_direct = config.get("is_direct", None)
|
|
|
|
if is_direct:
|
|
|
|
content["is_direct"] = is_direct
|
2017-11-28 10:23:26 -05:00
|
|
|
|
2018-10-25 12:42:37 -04:00
|
|
|
yield self.room_member_handler.update_membership(
|
2016-02-15 13:21:30 -05:00
|
|
|
requester,
|
|
|
|
UserID.from_string(invitee),
|
|
|
|
room_id,
|
|
|
|
"invite",
|
|
|
|
ratelimit=False,
|
2016-09-12 11:34:20 -04:00
|
|
|
content=content,
|
2016-02-15 13:21:30 -05:00
|
|
|
)
|
2014-11-17 11:37:33 -05:00
|
|
|
|
2016-01-05 06:56:21 -05:00
|
|
|
for invite_3pid in invite_3pid_list:
|
|
|
|
id_server = invite_3pid["id_server"]
|
2019-09-11 11:02:42 -04:00
|
|
|
id_access_token = invite_3pid.get("id_access_token") # optional
|
2016-01-05 06:56:21 -05:00
|
|
|
address = invite_3pid["address"]
|
|
|
|
medium = invite_3pid["medium"]
|
2018-03-01 05:54:37 -05:00
|
|
|
yield self.hs.get_room_member_handler().do_3pid_invite(
|
2016-01-05 06:56:21 -05:00
|
|
|
room_id,
|
2016-02-16 07:00:50 -05:00
|
|
|
requester.user,
|
2016-01-05 06:56:21 -05:00
|
|
|
medium,
|
|
|
|
address,
|
|
|
|
id_server,
|
2016-02-15 13:21:30 -05:00
|
|
|
requester,
|
2016-01-05 07:57:45 -05:00
|
|
|
txn_id=None,
|
2019-09-11 11:02:42 -04:00
|
|
|
id_access_token=id_access_token,
|
2016-01-05 06:56:21 -05:00
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
result = {"room_id": room_id}
|
2014-11-17 11:37:33 -05:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
if room_alias:
|
|
|
|
result["room_alias"] = room_alias.to_string()
|
2019-06-20 05:32:02 -04:00
|
|
|
yield directory_handler.send_room_alias_update_event(requester, room_id)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-02-16 07:00:50 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _send_events_for_new_room(
|
2019-06-20 05:32:02 -04:00
|
|
|
self,
|
|
|
|
creator, # A Requester object.
|
|
|
|
room_id,
|
|
|
|
preset_config,
|
|
|
|
invite_list,
|
|
|
|
initial_state,
|
|
|
|
creation_content,
|
|
|
|
room_alias=None,
|
|
|
|
power_level_content_override=None,
|
|
|
|
creator_join_profile=None,
|
2016-02-16 07:00:50 -05:00
|
|
|
):
|
2014-12-08 05:16:18 -05:00
|
|
|
def create(etype, content, **kwargs):
|
2019-06-20 05:32:02 -04:00
|
|
|
e = {"type": etype, "content": content}
|
2014-12-04 10:50:01 -05:00
|
|
|
|
|
|
|
e.update(event_keys)
|
2014-12-08 05:16:18 -05:00
|
|
|
e.update(kwargs)
|
2014-12-04 10:50:01 -05:00
|
|
|
|
|
|
|
return e
|
2014-09-01 11:15:34 -04:00
|
|
|
|
2016-02-16 07:00:50 -05:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def send(etype, content, **kwargs):
|
|
|
|
event = create(etype, content, **kwargs)
|
2018-10-31 11:42:23 -04:00
|
|
|
logger.info("Sending %s in new room", etype)
|
2018-01-15 11:52:07 -05:00
|
|
|
yield self.event_creation_handler.create_and_send_nonmember_event(
|
2019-06-20 05:32:02 -04:00
|
|
|
creator, event, ratelimit=False
|
2016-03-03 11:43:42 -05:00
|
|
|
)
|
2016-02-16 07:00:50 -05:00
|
|
|
|
|
|
|
config = RoomCreationHandler.PRESETS_DICT[preset_config]
|
|
|
|
|
|
|
|
creator_id = creator.user.to_string()
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
event_keys = {"room_id": room_id, "sender": creator_id, "state_key": ""}
|
2016-02-16 07:00:50 -05:00
|
|
|
|
|
|
|
creation_content.update({"creator": creator_id})
|
2019-06-20 05:32:02 -04:00
|
|
|
yield send(etype=EventTypes.Create, content=creation_content)
|
2014-08-28 05:59:15 -04:00
|
|
|
|
2018-10-31 11:42:23 -04:00
|
|
|
logger.info("Sending %s in new room", EventTypes.Member)
|
2018-10-25 12:42:37 -04:00
|
|
|
yield self.room_member_handler.update_membership(
|
2016-02-16 07:00:50 -05:00
|
|
|
creator,
|
|
|
|
creator.user,
|
|
|
|
room_id,
|
|
|
|
"join",
|
|
|
|
ratelimit=False,
|
2018-05-17 06:34:28 -04:00
|
|
|
content=creator_join_profile,
|
2014-11-18 10:29:48 -05:00
|
|
|
)
|
|
|
|
|
2017-06-19 09:10:13 -04:00
|
|
|
# We treat the power levels override specially as this needs to be one
|
|
|
|
# of the first events that get sent into a room.
|
2019-06-20 05:32:02 -04:00
|
|
|
pl_content = initial_state.pop((EventTypes.PowerLevels, ""), None)
|
2017-06-19 09:10:13 -04:00
|
|
|
if pl_content is not None:
|
2019-06-20 05:32:02 -04:00
|
|
|
yield send(etype=EventTypes.PowerLevels, content=pl_content)
|
2017-06-19 09:10:13 -04:00
|
|
|
else:
|
2015-07-16 10:25:29 -04:00
|
|
|
power_level_content = {
|
2019-06-20 05:32:02 -04:00
|
|
|
"users": {creator_id: 100},
|
2015-07-16 10:25:29 -04:00
|
|
|
"users_default": 0,
|
|
|
|
"events": {
|
2015-08-20 09:35:40 -04:00
|
|
|
EventTypes.Name: 50,
|
2015-07-16 10:25:29 -04:00
|
|
|
EventTypes.PowerLevels: 100,
|
|
|
|
EventTypes.RoomHistoryVisibility: 100,
|
2015-08-20 09:35:40 -04:00
|
|
|
EventTypes.CanonicalAlias: 50,
|
|
|
|
EventTypes.RoomAvatar: 50,
|
2015-07-16 10:25:29 -04:00
|
|
|
},
|
|
|
|
"events_default": 0,
|
|
|
|
"state_default": 50,
|
|
|
|
"ban": 50,
|
|
|
|
"kick": 50,
|
|
|
|
"redact": 50,
|
|
|
|
"invite": 0,
|
|
|
|
}
|
2015-07-13 11:48:06 -04:00
|
|
|
|
2015-07-16 10:25:29 -04:00
|
|
|
if config["original_invitees_have_ops"]:
|
|
|
|
for invitee in invite_list:
|
|
|
|
power_level_content["users"][invitee] = 100
|
2015-07-13 11:48:06 -04:00
|
|
|
|
2018-10-25 12:50:06 -04:00
|
|
|
if power_level_content_override:
|
|
|
|
power_level_content.update(power_level_content_override)
|
2017-06-19 09:10:13 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
yield send(etype=EventTypes.PowerLevels, content=power_level_content)
|
2014-08-28 05:59:15 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if room_alias and (EventTypes.CanonicalAlias, "") not in initial_state:
|
2016-02-16 07:00:50 -05:00
|
|
|
yield send(
|
2015-09-30 11:46:24 -04:00
|
|
|
etype=EventTypes.CanonicalAlias,
|
|
|
|
content={"alias": room_alias.to_string()},
|
|
|
|
)
|
2015-09-23 05:07:31 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if (EventTypes.JoinRules, "") not in initial_state:
|
2016-02-16 07:00:50 -05:00
|
|
|
yield send(
|
2019-06-20 05:32:02 -04:00
|
|
|
etype=EventTypes.JoinRules, content={"join_rule": config["join_rules"]}
|
2015-07-16 10:25:29 -04:00
|
|
|
)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if (EventTypes.RoomHistoryVisibility, "") not in initial_state:
|
2016-02-16 07:00:50 -05:00
|
|
|
yield send(
|
2015-07-16 10:25:29 -04:00
|
|
|
etype=EventTypes.RoomHistoryVisibility,
|
2019-06-20 05:32:02 -04:00
|
|
|
content={"history_visibility": config["history_visibility"]},
|
2015-07-16 10:25:29 -04:00
|
|
|
)
|
|
|
|
|
2016-03-17 12:07:35 -04:00
|
|
|
if config["guest_can_join"]:
|
2019-06-20 05:32:02 -04:00
|
|
|
if (EventTypes.GuestAccess, "") not in initial_state:
|
2016-03-17 12:07:35 -04:00
|
|
|
yield send(
|
2019-06-20 05:32:02 -04:00
|
|
|
etype=EventTypes.GuestAccess, content={"guest_access": "can_join"}
|
2016-03-17 12:07:35 -04:00
|
|
|
)
|
|
|
|
|
2015-07-16 10:25:29 -04:00
|
|
|
for (etype, state_key), content in initial_state.items():
|
2019-06-20 05:32:02 -04:00
|
|
|
yield send(etype=etype, state_key=state_key, content=content)
|
2014-08-28 05:59:15 -04:00
|
|
|
|
2018-10-25 12:40:41 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _generate_room_id(self, creator_id, is_public):
|
|
|
|
# autogen room IDs and try to create it. We may clash, so just
|
|
|
|
# try a few times till one goes through, giving up eventually.
|
|
|
|
attempts = 0
|
|
|
|
while attempts < 5:
|
|
|
|
try:
|
|
|
|
random_string = stringutils.random_string(18)
|
2019-06-20 05:32:02 -04:00
|
|
|
gen_room_id = RoomID(random_string, self.hs.hostname).to_string()
|
2018-08-22 05:57:54 -04:00
|
|
|
if isinstance(gen_room_id, bytes):
|
2019-06-20 05:32:02 -04:00
|
|
|
gen_room_id = gen_room_id.decode("utf-8")
|
2018-10-25 12:40:41 -04:00
|
|
|
yield self.store.store_room(
|
|
|
|
room_id=gen_room_id,
|
|
|
|
room_creator_user_id=creator_id,
|
|
|
|
is_public=is_public,
|
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return gen_room_id
|
2018-10-25 12:40:41 -04:00
|
|
|
except StoreError:
|
|
|
|
attempts += 1
|
|
|
|
raise StoreError(500, "Couldn't generate a room ID.")
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-07-18 10:29:45 -04:00
|
|
|
class RoomContextHandler(object):
|
|
|
|
def __init__(self, hs):
|
|
|
|
self.hs = hs
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
|
2015-10-28 09:45:56 -04:00
|
|
|
@defer.inlineCallbacks
|
2018-07-27 10:12:50 -04:00
|
|
|
def get_event_context(self, user, room_id, event_id, limit, event_filter):
|
2015-10-28 10:05:50 -04:00
|
|
|
"""Retrieves events, pagination tokens and state around a given event
|
|
|
|
in a room.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user (UserID)
|
|
|
|
room_id (str)
|
|
|
|
event_id (str)
|
|
|
|
limit (int): The maximum number of events to return in total
|
|
|
|
(excluding state).
|
2018-07-27 10:12:50 -04:00
|
|
|
event_filter (Filter|None): the filter to apply to the events returned
|
|
|
|
(excluding the target event_id)
|
2015-10-28 10:05:50 -04:00
|
|
|
|
|
|
|
Returns:
|
2016-01-13 09:19:22 -05:00
|
|
|
dict, or None if the event isn't found
|
2015-10-28 10:05:50 -04:00
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
before_limit = math.floor(limit / 2.0)
|
2015-10-28 09:45:56 -04:00
|
|
|
after_limit = limit - before_limit
|
|
|
|
|
2017-02-20 09:54:50 -05:00
|
|
|
users = yield self.store.get_users_in_room(room_id)
|
|
|
|
is_peeking = user.to_string() not in users
|
|
|
|
|
2016-01-13 09:19:22 -05:00
|
|
|
def filter_evts(events):
|
2016-05-11 08:42:37 -04:00
|
|
|
return filter_events_for_client(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.store, user.to_string(), events, is_peeking=is_peeking
|
2016-05-11 08:42:37 -04:00
|
|
|
)
|
2016-01-13 09:19:22 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
event = yield self.store.get_event(
|
|
|
|
event_id, get_prev_content=True, allow_none=True
|
|
|
|
)
|
2016-01-13 09:19:22 -05:00
|
|
|
if not event:
|
2019-07-23 09:00:55 -04:00
|
|
|
return None
|
2016-01-13 09:19:22 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
filtered = yield (filter_evts([event]))
|
2016-01-13 09:19:22 -05:00
|
|
|
if not filtered:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise AuthError(403, "You don't have permission to access that event.")
|
2016-01-13 09:19:22 -05:00
|
|
|
|
2015-10-28 09:45:56 -04:00
|
|
|
results = yield self.store.get_events_around(
|
2018-07-27 10:12:50 -04:00
|
|
|
room_id, event_id, before_limit, after_limit, event_filter
|
2015-10-28 09:45:56 -04:00
|
|
|
)
|
|
|
|
|
2016-01-13 09:19:22 -05:00
|
|
|
results["events_before"] = yield filter_evts(results["events_before"])
|
|
|
|
results["events_after"] = yield filter_evts(results["events_after"])
|
|
|
|
results["event"] = event
|
2015-10-28 09:45:56 -04:00
|
|
|
|
|
|
|
if results["events_after"]:
|
|
|
|
last_event_id = results["events_after"][-1].event_id
|
|
|
|
else:
|
|
|
|
last_event_id = event_id
|
|
|
|
|
2018-07-27 10:12:50 -04:00
|
|
|
if event_filter and event_filter.lazy_load_members():
|
2018-10-25 12:49:55 -04:00
|
|
|
state_filter = StateFilter.from_lazy_load_member_list(
|
|
|
|
ev.sender
|
|
|
|
for ev in itertools.chain(
|
|
|
|
results["events_before"],
|
|
|
|
(results["event"],),
|
|
|
|
results["events_after"],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
state_filter = StateFilter.all()
|
2018-07-27 10:12:50 -04:00
|
|
|
|
|
|
|
# XXX: why do we return the state as of the last event rather than the
|
|
|
|
# first? Shouldn't we be consistent with /sync?
|
|
|
|
# https://github.com/matrix-org/matrix-doc/issues/687
|
|
|
|
|
2015-10-28 09:45:56 -04:00
|
|
|
state = yield self.store.get_state_for_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
[last_event_id], state_filter=state_filter
|
2015-10-28 09:45:56 -04:00
|
|
|
)
|
2018-05-31 05:03:47 -04:00
|
|
|
results["state"] = list(state[last_event_id].values())
|
2015-10-28 09:45:56 -04:00
|
|
|
|
2018-07-24 11:46:30 -04:00
|
|
|
# We use a dummy token here as we only care about the room portion of
|
|
|
|
# the token, which we replace.
|
|
|
|
token = StreamToken.START
|
|
|
|
|
|
|
|
results["start"] = token.copy_and_replace(
|
2015-10-28 09:45:56 -04:00
|
|
|
"room_key", results["start"]
|
|
|
|
).to_string()
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
results["end"] = token.copy_and_replace("room_key", results["end"]).to_string()
|
2015-10-28 09:45:56 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return results
|
2015-10-28 09:45:56 -04:00
|
|
|
|
|
|
|
|
2014-08-29 12:09:15 -04:00
|
|
|
class RoomEventSource(object):
|
|
|
|
def __init__(self, hs):
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2015-11-05 09:32:26 -05:00
|
|
|
def get_new_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
self, user, from_key, limit, room_ids, is_guest, explicit_room_id=None
|
2015-11-05 09:32:26 -05:00
|
|
|
):
|
2014-08-29 12:09:15 -04:00
|
|
|
# We just ignore the key for now.
|
|
|
|
|
2014-08-29 14:15:23 -04:00
|
|
|
to_key = yield self.get_current_key()
|
2014-08-29 12:09:15 -04:00
|
|
|
|
2016-02-02 09:11:14 -05:00
|
|
|
from_token = RoomStreamToken.parse(from_key)
|
|
|
|
if from_token.topological:
|
|
|
|
logger.warn("Stream has topological part!!!! %r", from_key)
|
|
|
|
from_key = "s%s" % (from_token.stream,)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
app_service = self.store.get_app_service_by_user_id(user.to_string())
|
2015-02-25 10:00:59 -05:00
|
|
|
if app_service:
|
2018-03-05 10:42:57 -05:00
|
|
|
# We no longer support AS users using /sync directly.
|
|
|
|
# See https://github.com/matrix-org/matrix-doc/issues/1144
|
|
|
|
raise NotImplementedError()
|
2015-02-25 10:00:59 -05:00
|
|
|
else:
|
2016-02-02 11:12:10 -05:00
|
|
|
room_events = yield self.store.get_membership_changes_for_user(
|
2016-02-01 11:26:51 -05:00
|
|
|
user.to_string(), from_key, to_key
|
|
|
|
)
|
|
|
|
|
|
|
|
room_to_events = yield self.store.get_room_events_stream_for_rooms(
|
|
|
|
room_ids=room_ids,
|
2015-02-25 10:00:59 -05:00
|
|
|
from_key=from_key,
|
|
|
|
to_key=to_key,
|
2016-02-01 11:26:51 -05:00
|
|
|
limit=limit or 10,
|
2019-06-20 05:32:02 -04:00
|
|
|
order="ASC",
|
2015-02-25 10:00:59 -05:00
|
|
|
)
|
2014-08-29 12:09:15 -04:00
|
|
|
|
2016-02-01 11:26:51 -05:00
|
|
|
events = list(room_events)
|
|
|
|
events.extend(e for evs, _ in room_to_events.values() for e in evs)
|
|
|
|
|
2016-02-01 11:32:46 -05:00
|
|
|
events.sort(key=lambda e: e.internal_metadata.order)
|
2016-02-01 11:26:51 -05:00
|
|
|
|
|
|
|
if limit:
|
|
|
|
events[:] = events[:limit]
|
|
|
|
|
|
|
|
if events:
|
|
|
|
end_key = events[-1].internal_metadata.after
|
|
|
|
else:
|
|
|
|
end_key = to_key
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return (events, end_key)
|
2014-08-29 12:09:15 -04:00
|
|
|
|
2016-10-24 08:35:51 -04:00
|
|
|
def get_current_key(self):
|
|
|
|
return self.store.get_room_events_max_id()
|
|
|
|
|
|
|
|
def get_current_key_for_room(self, room_id):
|
|
|
|
return self.store.get_room_events_max_id(room_id)
|
2014-08-29 12:09:15 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-10-29 11:57:23 -04:00
|
|
|
def get_pagination_rows(self, user, config, key):
|
2014-08-29 12:09:15 -04:00
|
|
|
events, next_key = yield self.store.paginate_room_events(
|
|
|
|
room_id=key,
|
2014-10-29 11:57:23 -04:00
|
|
|
from_key=config.from_key,
|
|
|
|
to_key=config.to_key,
|
|
|
|
direction=config.direction,
|
|
|
|
limit=config.limit,
|
2014-08-29 12:09:15 -04:00
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return (events, next_key)
|