2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
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
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2014-08-28 09:58:51 -04:00
|
|
|
from synapse.util.logutils import log_function
|
2015-01-23 06:47:15 -05:00
|
|
|
from synapse.types import UserID
|
2015-01-26 11:11:28 -05:00
|
|
|
from synapse.events.utils import serialize_event
|
2014-08-26 14:40:29 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from ._base import BaseHandler
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
import logging
|
2015-03-06 05:25:36 -05:00
|
|
|
import random
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-12-01 15:53:04 -05:00
|
|
|
def started_user_eventstream(distributor, user):
|
|
|
|
return distributor.fire("started_user_eventstream", user)
|
|
|
|
|
|
|
|
|
|
|
|
def stopped_user_eventstream(distributor, user):
|
|
|
|
return distributor.fire("stopped_user_eventstream", user)
|
|
|
|
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
class EventStreamHandler(BaseHandler):
|
2014-08-12 10:10:52 -04: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 13:57:46 -04:00
|
|
|
self.notifier = hs.get_notifier()
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-10-09 14:13:08 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def started_stream(self, user):
|
|
|
|
"""Tells the presence handler that we have started an eventstream for
|
|
|
|
the user:
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user (User): The user who started a stream.
|
|
|
|
Returns:
|
|
|
|
A deferred that completes once their presence has been updated.
|
|
|
|
"""
|
|
|
|
if user not in self._streams_per_user:
|
2015-12-14 10:09:41 -05:00
|
|
|
# Make sure we set the streams per user to 1 here rather than
|
|
|
|
# setting it to zero and incrementing the value below.
|
|
|
|
# Otherwise this may race with stopped_stream causing the
|
|
|
|
# user to be erased from the map before we have a chance
|
|
|
|
# to increment it.
|
|
|
|
self._streams_per_user[user] = 1
|
2015-10-09 14:13:08 -04:00
|
|
|
if user in self._stop_timer_per_user:
|
|
|
|
try:
|
|
|
|
self.clock.cancel_call_later(
|
|
|
|
self._stop_timer_per_user.pop(user)
|
|
|
|
)
|
|
|
|
except:
|
|
|
|
logger.exception("Failed to cancel event timer")
|
|
|
|
else:
|
2015-12-01 15:53:04 -05:00
|
|
|
yield started_user_eventstream(self.distributor, user)
|
2015-12-14 10:09:41 -05:00
|
|
|
else:
|
|
|
|
self._streams_per_user[user] += 1
|
2015-10-09 14:13:08 -04:00
|
|
|
|
|
|
|
def stopped_stream(self, user):
|
|
|
|
"""If there are no streams for a user this starts a timer that will
|
|
|
|
notify the presence handler that we haven't got an event stream for
|
|
|
|
the user unless the user starts a new stream in 30 seconds.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user (User): The user who stopped a stream.
|
|
|
|
"""
|
|
|
|
self._streams_per_user[user] -= 1
|
|
|
|
if not self._streams_per_user[user]:
|
|
|
|
del self._streams_per_user[user]
|
|
|
|
|
|
|
|
# 30 seconds of grace to allow the client to reconnect again
|
|
|
|
# before we think they're gone
|
|
|
|
def _later():
|
|
|
|
logger.debug("_later stopped_user_eventstream %s", user)
|
|
|
|
|
|
|
|
self._stop_timer_per_user.pop(user, None)
|
|
|
|
|
2015-12-01 15:53:04 -05:00
|
|
|
return stopped_user_eventstream(self.distributor, user)
|
2015-10-09 14:13:08 -04:00
|
|
|
|
|
|
|
logger.debug("Scheduling _later: for %s", user)
|
|
|
|
self._stop_timer_per_user[user] = (
|
|
|
|
self.clock.call_later(30, _later)
|
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
2014-08-28 09:58:51 -04:00
|
|
|
@log_function
|
2015-01-08 08:57:29 -05:00
|
|
|
def get_stream(self, auth_user_id, pagin_config, timeout=0,
|
2015-08-24 11:19:43 -04:00
|
|
|
as_client_event=True, affect_presence=True,
|
2015-11-05 09:32:26 -05:00
|
|
|
only_room_events=False, room_id=None, is_guest=False):
|
2015-08-24 11:19:43 -04:00
|
|
|
"""Fetches the events stream for a given user.
|
|
|
|
|
|
|
|
If `only_room_events` is `True` only room events will be returned.
|
|
|
|
"""
|
2015-01-23 06:47:15 -05:00
|
|
|
auth_user = UserID.from_string(auth_user_id)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
try:
|
2015-01-27 10:58:27 -05:00
|
|
|
if affect_presence:
|
2015-10-09 14:13:08 -04:00
|
|
|
yield self.started_stream(auth_user)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-03-06 05:25:36 -05: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.
|
|
|
|
timeout = random.randint(int(timeout*0.9), int(timeout*1.1))
|
|
|
|
|
2015-05-08 11:32:18 -04:00
|
|
|
events, tokens = yield self.notifier.get_events_for(
|
2015-11-02 10:10:59 -05:00
|
|
|
auth_user, pagin_config, timeout,
|
2015-11-05 09:32:26 -05:00
|
|
|
only_room_events=only_room_events,
|
|
|
|
is_guest=is_guest, guest_room_id=room_id
|
2015-05-08 11:32:18 -04:00
|
|
|
)
|
2014-08-27 09:13:06 -04:00
|
|
|
|
2015-01-26 11:11:28 -05:00
|
|
|
time_now = self.clock.time_msec()
|
|
|
|
|
2015-01-08 08:57:29 -05:00
|
|
|
chunks = [
|
2015-01-26 11:11:28 -05:00
|
|
|
serialize_event(e, time_now, as_client_event) for e in events
|
2015-01-08 08:57:29 -05:00
|
|
|
]
|
2014-08-27 09:13:06 -04:00
|
|
|
|
|
|
|
chunk = {
|
|
|
|
"chunk": chunks,
|
|
|
|
"start": tokens[0].to_string(),
|
|
|
|
"end": tokens[1].to_string(),
|
|
|
|
}
|
|
|
|
|
|
|
|
defer.returnValue(chunk)
|
|
|
|
|
|
|
|
finally:
|
2015-01-15 11:17:21 -05:00
|
|
|
if affect_presence:
|
2015-10-09 14:13:08 -04:00
|
|
|
self.stopped_stream(auth_user)
|
2014-08-27 05:33:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
class EventHandler(BaseHandler):
|
2014-08-26 13:57:46 -04:00
|
|
|
|
2014-08-27 05:33:01 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_event(self, user, event_id):
|
|
|
|
"""Retrieve a single specified event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user (synapse.types.UserID): The user requesting the event
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
event = yield self.store.get_event(event_id)
|
|
|
|
|
|
|
|
if not event:
|
|
|
|
defer.returnValue(None)
|
|
|
|
return
|
|
|
|
|
2014-09-03 06:24:37 -04:00
|
|
|
if hasattr(event, "room_id"):
|
|
|
|
yield self.auth.check_joined_room(event.room_id, user.to_string())
|
|
|
|
|
2014-08-27 05:33:01 -04:00
|
|
|
defer.returnValue(event)
|