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
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
import random
|
2020-09-03 17:02:29 -04:00
|
|
|
from typing import TYPE_CHECKING, Iterable, List, Optional
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2021-02-19 13:20:34 -05:00
|
|
|
from synapse.api.constants import EduTypes, EventTypes, Membership
|
2019-03-21 07:20:13 -04:00
|
|
|
from synapse.api.errors import AuthError, SynapseError
|
2016-02-15 12:10:40 -05:00
|
|
|
from synapse.events import EventBase
|
2020-04-22 17:39:04 -04:00
|
|
|
from synapse.handlers.presence import format_user_presence_state
|
2019-07-03 10:07:04 -04:00
|
|
|
from synapse.logging.utils import log_function
|
2020-09-03 17:02:29 -04:00
|
|
|
from synapse.streams.config import PaginationConfig
|
|
|
|
from synapse.types import JsonDict, UserID
|
2018-08-02 10:03:27 -04:00
|
|
|
from synapse.visibility import filter_events_for_client
|
2014-08-26 14:40:29 -04:00
|
|
|
|
2020-09-03 17:02:29 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2021-10-08 07:44:43 -04:00
|
|
|
class EventStreamHandler:
|
2020-09-03 17:02:29 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-10-08 07:44:43 -04:00
|
|
|
self.store = hs.get_datastore()
|
2014-08-12 10:10:52 -04:00
|
|
|
self.clock = hs.get_clock()
|
2021-10-08 07:44:43 -04:00
|
|
|
self.hs = hs
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
self.notifier = hs.get_notifier()
|
2016-08-26 09:54:30 -04:00
|
|
|
self.state = hs.get_state_handler()
|
2018-05-22 05:57:56 -04:00
|
|
|
self._server_notices_sender = hs.get_server_notices_sender()
|
2019-05-09 08:21:57 -04:00
|
|
|
self._event_serializer = hs.get_event_client_serializer()
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-28 09:58:51 -04:00
|
|
|
@log_function
|
2019-12-05 12:58:25 -05:00
|
|
|
async def get_stream(
|
2015-01-08 08:57:29 -05:00
|
|
|
self,
|
2020-09-03 17:02:29 -04:00
|
|
|
auth_user_id: str,
|
|
|
|
pagin_config: PaginationConfig,
|
|
|
|
timeout: int = 0,
|
|
|
|
as_client_event: bool = True,
|
|
|
|
affect_presence: bool = True,
|
|
|
|
room_id: Optional[str] = None,
|
|
|
|
is_guest: bool = False,
|
|
|
|
) -> JsonDict:
|
2015-08-24 11:19:43 -04:00
|
|
|
"""Fetches the events stream for a given user."""
|
2018-05-22 05:57:56 -04:00
|
|
|
|
2019-03-21 07:20:13 -04:00
|
|
|
if room_id:
|
2019-12-05 12:58:25 -05:00
|
|
|
blocked = await self.store.is_room_blocked(room_id)
|
2019-03-21 07:20:13 -04:00
|
|
|
if blocked:
|
|
|
|
raise SynapseError(403, "This room has been blocked on this server")
|
|
|
|
|
2018-05-22 05:57:56 -04:00
|
|
|
# send any outstanding server notices to the user.
|
2019-12-05 12:58:25 -05:00
|
|
|
await self._server_notices_sender.on_user_syncing(auth_user_id)
|
2018-05-22 05:57:56 -04:00
|
|
|
|
2015-01-23 06:47:15 -05:00
|
|
|
auth_user = UserID.from_string(auth_user_id)
|
2016-05-16 13:56:37 -04:00
|
|
|
presence_handler = self.hs.get_presence_handler()
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-12-05 12:58:25 -05:00
|
|
|
context = await presence_handler.user_syncing(
|
2016-02-15 12:10:40 -05:00
|
|
|
auth_user_id, affect_presence=affect_presence
|
|
|
|
)
|
|
|
|
with context:
|
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.
|
2016-02-02 12:18:50 -05:00
|
|
|
timeout = random.randint(int(timeout * 0.9), int(timeout * 1.1))
|
2015-03-06 05:25:36 -05:00
|
|
|
|
2019-12-05 12:58:25 -05:00
|
|
|
events, tokens = await self.notifier.get_events_for(
|
2015-11-02 10:10:59 -05:00
|
|
|
auth_user,
|
|
|
|
pagin_config,
|
|
|
|
timeout,
|
2016-01-20 10:34:07 -05:00
|
|
|
is_guest=is_guest,
|
|
|
|
explicit_room_id=room_id,
|
2015-05-08 11:32:18 -04:00
|
|
|
)
|
2014-08-27 09:13:06 -04:00
|
|
|
|
2020-04-22 17:39:04 -04:00
|
|
|
time_now = self.clock.time_msec()
|
|
|
|
|
2016-02-15 12:10:40 -05: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.
|
2021-07-16 13:22:36 -04:00
|
|
|
to_add: List[JsonDict] = []
|
2016-02-15 12:10:40 -05:00
|
|
|
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.
|
2021-07-16 13:22:36 -04:00
|
|
|
users: Iterable[str] = await self.store.get_users_in_room(
|
2019-04-03 09:32:20 -04:00
|
|
|
event.room_id
|
2021-07-16 13:22:36 -04:00
|
|
|
)
|
2016-02-15 12:10:40 -05:00
|
|
|
else:
|
2020-04-22 17:39:04 -04:00
|
|
|
users = [event.state_key]
|
2016-02-15 12:10:40 -05:00
|
|
|
|
2020-04-22 17:39:04 -04:00
|
|
|
states = await presence_handler.get_states(users)
|
|
|
|
to_add.extend(
|
|
|
|
{
|
2021-02-19 13:20:34 -05:00
|
|
|
"type": EduTypes.Presence,
|
2020-04-22 17:39:04 -04:00
|
|
|
"content": format_user_presence_state(state, time_now),
|
|
|
|
}
|
|
|
|
for state in states
|
|
|
|
)
|
2016-02-15 12:10:40 -05:00
|
|
|
|
|
|
|
events.extend(to_add)
|
|
|
|
|
2019-12-05 12:58:25 -05:00
|
|
|
chunks = await self._event_serializer.serialize_events(
|
2019-05-09 08:21:57 -04:00
|
|
|
events,
|
|
|
|
time_now,
|
|
|
|
as_client_event=as_client_event,
|
2021-12-06 10:51:15 -05:00
|
|
|
# Don't bundle aggregations as this is a deprecated API.
|
|
|
|
bundle_aggregations=False,
|
2019-05-09 08:21:57 -04:00
|
|
|
)
|
2014-08-27 09:13:06 -04:00
|
|
|
|
|
|
|
chunk = {
|
|
|
|
"chunk": chunks,
|
2020-09-30 15:29:19 -04:00
|
|
|
"start": await tokens[0].to_string(self.store),
|
|
|
|
"end": await tokens[1].to_string(self.store),
|
2014-08-27 09:13:06 -04:00
|
|
|
}
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return chunk
|
2014-08-27 09:13:06 -04:00
|
|
|
|
2014-08-27 05:33:01 -04:00
|
|
|
|
2021-10-08 07:44:43 -04:00
|
|
|
class EventHandler:
|
2020-09-03 17:02:29 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-10-08 07:44:43 -04:00
|
|
|
self.store = hs.get_datastore()
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage = hs.get_storage()
|
|
|
|
|
2020-09-03 17:02:29 -04:00
|
|
|
async def get_event(
|
|
|
|
self, user: UserID, room_id: Optional[str], event_id: str
|
|
|
|
) -> Optional[EventBase]:
|
2014-08-27 05:33:01 -04:00
|
|
|
"""Retrieve a single specified event.
|
|
|
|
|
|
|
|
Args:
|
2020-09-03 17:02:29 -04:00
|
|
|
user: The user requesting the event
|
|
|
|
room_id: The expected room id. We'll return None if the
|
2018-08-02 10:03:27 -04:00
|
|
|
event's room does not match.
|
2020-09-03 17:02:29 -04:00
|
|
|
event_id: The event ID to obtain.
|
2014-08-27 05:33:01 -04:00
|
|
|
Returns:
|
2020-09-03 17:02:29 -04:00
|
|
|
An event, or None if there is no event matching this ID.
|
2014-08-27 05:33:01 -04:00
|
|
|
Raises:
|
|
|
|
SynapseError if there was a problem retrieving this event, or
|
|
|
|
AuthError if the user does not have the rights to inspect this
|
|
|
|
event.
|
|
|
|
"""
|
2019-12-05 12:58:25 -05:00
|
|
|
event = await self.store.get_event(event_id, check_room_id=room_id)
|
2014-08-27 05:33:01 -04:00
|
|
|
|
|
|
|
if not event:
|
2019-07-23 09:00:55 -04:00
|
|
|
return None
|
2014-08-27 05:33:01 -04:00
|
|
|
|
2019-12-05 12:58:25 -05:00
|
|
|
users = await self.store.get_users_in_room(event.room_id)
|
2018-08-02 10:03:27 -04:00
|
|
|
is_peeking = user.to_string() not in users
|
|
|
|
|
2019-12-05 12:58:25 -05:00
|
|
|
filtered = await filter_events_for_client(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, user.to_string(), [event], is_peeking=is_peeking
|
2018-08-02 10:03:27 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if not filtered:
|
|
|
|
raise AuthError(403, "You don't have permission to access that event.")
|
2014-09-03 06:24:37 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return event
|