2014-08-12 16:10:52 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 16:10:52 +02: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-13 04:14:34 +02:00
|
|
|
|
2018-07-09 08:09:20 +02:00
|
|
|
import logging
|
|
|
|
import random
|
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
2019-03-21 12:20:13 +01:00
|
|
|
from synapse.api.errors import AuthError, SynapseError
|
2016-02-15 18:10:40 +01:00
|
|
|
from synapse.events import EventBase
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.events.utils import serialize_event
|
|
|
|
from synapse.types import UserID
|
|
|
|
from synapse.util.logutils import log_function
|
2018-08-02 16:03:27 +02:00
|
|
|
from synapse.visibility import filter_events_for_client
|
2014-08-26 20:40:29 +02:00
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
from ._base import BaseHandler
|
|
|
|
|
2014-08-26 19:57:46 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class EventStreamHandler(BaseHandler):
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(EventStreamHandler, self).__init__(hs)
|
|
|
|
|
|
|
|
# Count of active streams per user
|
|
|
|
self._streams_per_user = {}
|
|
|
|
# Grace timers per user to delay the "stopped" signal
|
|
|
|
self._stop_timer_per_user = {}
|
|
|
|
|
|
|
|
self.distributor = hs.get_distributor()
|
|
|
|
self.distributor.declare("started_user_eventstream")
|
|
|
|
self.distributor.declare("stopped_user_eventstream")
|
|
|
|
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
2014-08-26 19:57:46 +02:00
|
|
|
self.notifier = hs.get_notifier()
|
2016-08-26 15:54:30 +02:00
|
|
|
self.state = hs.get_state_handler()
|
2018-05-22 11:57:56 +02:00
|
|
|
self._server_notices_sender = hs.get_server_notices_sender()
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-28 15:58:51 +02:00
|
|
|
@log_function
|
2015-01-08 14:57:29 +01:00
|
|
|
def get_stream(self, auth_user_id, pagin_config, timeout=0,
|
2015-08-24 17:19:43 +02:00
|
|
|
as_client_event=True, affect_presence=True,
|
2016-01-21 17:10:37 +01:00
|
|
|
only_keys=None, room_id=None, is_guest=False):
|
2015-08-24 17:19:43 +02:00
|
|
|
"""Fetches the events stream for a given user.
|
|
|
|
|
2016-01-21 17:10:37 +01:00
|
|
|
If `only_keys` is not None, events from keys will be sent down.
|
2015-08-24 17:19:43 +02:00
|
|
|
"""
|
2018-05-22 11:57:56 +02:00
|
|
|
|
2019-03-21 12:20:13 +01:00
|
|
|
if room_id:
|
|
|
|
blocked = yield self.store.is_room_blocked(room_id)
|
|
|
|
if blocked:
|
|
|
|
raise SynapseError(403, "This room has been blocked on this server")
|
|
|
|
|
2018-05-22 11:57:56 +02:00
|
|
|
# send any outstanding server notices to the user.
|
|
|
|
yield self._server_notices_sender.on_user_syncing(auth_user_id)
|
|
|
|
|
2015-01-23 12:47:15 +01:00
|
|
|
auth_user = UserID.from_string(auth_user_id)
|
2016-05-16 19:56:37 +02:00
|
|
|
presence_handler = self.hs.get_presence_handler()
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2016-02-15 18:10:40 +01:00
|
|
|
context = yield presence_handler.user_syncing(
|
|
|
|
auth_user_id, affect_presence=affect_presence,
|
|
|
|
)
|
|
|
|
with context:
|
2015-03-06 11:25:36 +01:00
|
|
|
if timeout:
|
|
|
|
# If they've set a timeout set a minimum limit.
|
|
|
|
timeout = max(timeout, 500)
|
|
|
|
|
|
|
|
# Add some randomness to this value to try and mitigate against
|
|
|
|
# thundering herds on restart.
|
2016-02-02 18:18:50 +01:00
|
|
|
timeout = random.randint(int(timeout * 0.9), int(timeout * 1.1))
|
2015-03-06 11:25:36 +01:00
|
|
|
|
2015-05-08 17:32:18 +02:00
|
|
|
events, tokens = yield self.notifier.get_events_for(
|
2015-11-02 16:10:59 +01:00
|
|
|
auth_user, pagin_config, timeout,
|
2016-01-21 17:10:37 +01:00
|
|
|
only_keys=only_keys,
|
2016-01-20 16:34:07 +01:00
|
|
|
is_guest=is_guest, explicit_room_id=room_id
|
2015-05-08 17:32:18 +02:00
|
|
|
)
|
2014-08-27 15:13:06 +02:00
|
|
|
|
2016-02-15 18:10:40 +01:00
|
|
|
# When the user joins a new room, or another user joins a currently
|
|
|
|
# joined room, we need to send down presence for those users.
|
|
|
|
to_add = []
|
|
|
|
for event in events:
|
|
|
|
if not isinstance(event, EventBase):
|
|
|
|
continue
|
|
|
|
if event.type == EventTypes.Member:
|
|
|
|
if event.membership != Membership.JOIN:
|
|
|
|
continue
|
|
|
|
# Send down presence.
|
|
|
|
if event.state_key == auth_user_id:
|
|
|
|
# Send down presence for everyone in the room.
|
2016-08-26 15:54:30 +02:00
|
|
|
users = yield self.state.get_current_user_in_room(event.room_id)
|
2016-02-15 18:10:40 +01:00
|
|
|
states = yield presence_handler.get_states(
|
|
|
|
users,
|
|
|
|
as_event=True,
|
|
|
|
)
|
|
|
|
to_add.extend(states)
|
|
|
|
else:
|
|
|
|
|
|
|
|
ev = yield presence_handler.get_state(
|
|
|
|
UserID.from_string(event.state_key),
|
|
|
|
as_event=True,
|
|
|
|
)
|
|
|
|
to_add.append(ev)
|
|
|
|
|
|
|
|
events.extend(to_add)
|
|
|
|
|
2015-01-26 17:11:28 +01:00
|
|
|
time_now = self.clock.time_msec()
|
|
|
|
|
2015-01-08 14:57:29 +01:00
|
|
|
chunks = [
|
2015-01-26 17:11:28 +01:00
|
|
|
serialize_event(e, time_now, as_client_event) for e in events
|
2015-01-08 14:57:29 +01:00
|
|
|
]
|
2014-08-27 15:13:06 +02:00
|
|
|
|
|
|
|
chunk = {
|
|
|
|
"chunk": chunks,
|
|
|
|
"start": tokens[0].to_string(),
|
|
|
|
"end": tokens[1].to_string(),
|
|
|
|
}
|
|
|
|
|
|
|
|
defer.returnValue(chunk)
|
|
|
|
|
2014-08-27 11:33:01 +02:00
|
|
|
|
|
|
|
class EventHandler(BaseHandler):
|
2014-08-26 19:57:46 +02:00
|
|
|
|
2014-08-27 11:33:01 +02:00
|
|
|
@defer.inlineCallbacks
|
2018-08-02 16:03:27 +02:00
|
|
|
def get_event(self, user, room_id, event_id):
|
2014-08-27 11:33:01 +02:00
|
|
|
"""Retrieve a single specified event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user (synapse.types.UserID): The user requesting the event
|
2018-08-02 16:03:27 +02:00
|
|
|
room_id (str|None): The expected room id. We'll return None if the
|
|
|
|
event's room does not match.
|
2014-08-27 11:33:01 +02:00
|
|
|
event_id (str): The event ID to obtain.
|
|
|
|
Returns:
|
|
|
|
dict: An event, or None if there is no event matching this ID.
|
|
|
|
Raises:
|
|
|
|
SynapseError if there was a problem retrieving this event, or
|
|
|
|
AuthError if the user does not have the rights to inspect this
|
|
|
|
event.
|
|
|
|
"""
|
2018-08-02 16:03:27 +02:00
|
|
|
event = yield self.store.get_event(event_id, check_room_id=room_id)
|
2014-08-27 11:33:01 +02:00
|
|
|
|
|
|
|
if not event:
|
|
|
|
defer.returnValue(None)
|
|
|
|
return
|
|
|
|
|
2018-08-02 16:03:27 +02:00
|
|
|
users = yield self.store.get_users_in_room(event.room_id)
|
|
|
|
is_peeking = user.to_string() not in users
|
|
|
|
|
|
|
|
filtered = yield filter_events_for_client(
|
|
|
|
self.store,
|
|
|
|
user.to_string(),
|
|
|
|
[event],
|
|
|
|
is_peeking=is_peeking
|
|
|
|
)
|
|
|
|
|
|
|
|
if not filtered:
|
|
|
|
raise AuthError(
|
|
|
|
403,
|
|
|
|
"You don't have permission to access that event."
|
|
|
|
)
|
2014-09-03 12:24:37 +02:00
|
|
|
|
2014-08-27 11:33:01 +02:00
|
|
|
defer.returnValue(event)
|