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
|
2020-09-03 23:02:29 +02:00
|
|
|
from typing import TYPE_CHECKING, Iterable, List, Optional
|
2018-07-09 08:09:20 +02:00
|
|
|
|
2022-04-13 17:21:07 +02:00
|
|
|
from synapse.api.constants import EduTypes, EventTypes, Membership, PresenceState
|
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
|
2022-03-03 16:43:06 +01:00
|
|
|
from synapse.events.utils import SerializeEventConfig
|
2020-04-22 23:39:04 +02:00
|
|
|
from synapse.handlers.presence import format_user_presence_state
|
2022-04-20 13:57:39 +02:00
|
|
|
from synapse.storage.databases.main.events_worker import EventRedactBehaviour
|
2020-09-03 23:02:29 +02:00
|
|
|
from synapse.streams.config import PaginationConfig
|
2023-03-06 17:08:39 +01:00
|
|
|
from synapse.types import JsonDict, Requester, UserID
|
2018-08-02 16:03:27 +02:00
|
|
|
from synapse.visibility import filter_events_for_client
|
2014-08-26 20:40:29 +02:00
|
|
|
|
2020-09-03 23:02:29 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
|
|
|
|
2014-08-26 19:57:46 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2021-10-08 13:44:43 +02:00
|
|
|
class EventStreamHandler:
|
2020-09-03 23:02:29 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2022-02-23 12:04:02 +01:00
|
|
|
self.store = hs.get_datastores().main
|
2014-08-12 16:10:52 +02:00
|
|
|
self.clock = hs.get_clock()
|
2021-10-08 13:44:43 +02:00
|
|
|
self.hs = hs
|
2014-08-12 16:10:52 +02:00
|
|
|
|
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()
|
2019-05-09 14:21:57 +02:00
|
|
|
self._event_serializer = hs.get_event_client_serializer()
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2019-12-05 18:58:25 +01:00
|
|
|
async def get_stream(
|
2019-06-20 11:32:02 +02:00
|
|
|
self,
|
2023-03-06 17:08:39 +01:00
|
|
|
requester: Requester,
|
2020-09-03 23:02:29 +02:00
|
|
|
pagin_config: PaginationConfig,
|
|
|
|
timeout: int = 0,
|
|
|
|
as_client_event: bool = True,
|
|
|
|
affect_presence: bool = True,
|
|
|
|
room_id: Optional[str] = None,
|
|
|
|
) -> JsonDict:
|
2021-02-16 23:32:34 +01:00
|
|
|
"""Fetches the events stream for a given user."""
|
2018-05-22 11:57:56 +02:00
|
|
|
|
2019-03-21 12:20:13 +01:00
|
|
|
if room_id:
|
2019-12-05 18:58:25 +01:00
|
|
|
blocked = await self.store.is_room_blocked(room_id)
|
2019-03-21 12:20:13 +01:00
|
|
|
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.
|
2023-03-06 17:08:39 +01:00
|
|
|
await self._server_notices_sender.on_user_syncing(requester.user.to_string())
|
2018-05-22 11:57:56 +02:00
|
|
|
|
2016-05-16 19:56:37 +02:00
|
|
|
presence_handler = self.hs.get_presence_handler()
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2019-12-05 18:58:25 +01:00
|
|
|
context = await presence_handler.user_syncing(
|
2023-03-06 17:08:39 +01:00
|
|
|
requester.user.to_string(),
|
2022-04-13 17:21:07 +02:00
|
|
|
affect_presence=affect_presence,
|
|
|
|
presence_state=PresenceState.ONLINE,
|
2016-02-15 18:10:40 +01:00
|
|
|
)
|
|
|
|
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
|
|
|
|
2021-12-15 17:10:02 +01:00
|
|
|
stream_result = await self.notifier.get_events_for(
|
2023-03-06 17:08:39 +01:00
|
|
|
requester.user,
|
2019-06-20 11:32:02 +02:00
|
|
|
pagin_config,
|
|
|
|
timeout,
|
2023-03-06 17:08:39 +01:00
|
|
|
is_guest=requester.is_guest,
|
2019-06-20 11:32:02 +02:00
|
|
|
explicit_room_id=room_id,
|
2015-05-08 17:32:18 +02:00
|
|
|
)
|
2021-12-15 17:10:02 +01:00
|
|
|
events = stream_result.events
|
2014-08-27 15:13:06 +02:00
|
|
|
|
2020-04-22 23:39:04 +02:00
|
|
|
time_now = self.clock.time_msec()
|
|
|
|
|
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.
|
2021-07-16 19:22:36 +02:00
|
|
|
to_add: List[JsonDict] = []
|
2016-02-15 18:10:40 +01: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.
|
2023-03-06 17:08:39 +01:00
|
|
|
if event.state_key == requester.user.to_string():
|
2016-02-15 18:10:40 +01:00
|
|
|
# Send down presence for everyone in the room.
|
2021-07-16 19:22:36 +02:00
|
|
|
users: Iterable[str] = await self.store.get_users_in_room(
|
2019-06-20 11:32:02 +02:00
|
|
|
event.room_id
|
2021-07-16 19:22:36 +02:00
|
|
|
)
|
2016-02-15 18:10:40 +01:00
|
|
|
else:
|
2020-04-22 23:39:04 +02:00
|
|
|
users = [event.state_key]
|
2016-02-15 18:10:40 +01:00
|
|
|
|
2020-04-22 23:39:04 +02:00
|
|
|
states = await presence_handler.get_states(users)
|
|
|
|
to_add.extend(
|
|
|
|
{
|
2022-05-27 13:14:36 +02:00
|
|
|
"type": EduTypes.PRESENCE,
|
2020-04-22 23:39:04 +02:00
|
|
|
"content": format_user_presence_state(state, time_now),
|
|
|
|
}
|
|
|
|
for state in states
|
|
|
|
)
|
2016-02-15 18:10:40 +01:00
|
|
|
|
|
|
|
events.extend(to_add)
|
|
|
|
|
2022-01-07 15:10:46 +01:00
|
|
|
chunks = self._event_serializer.serialize_events(
|
2019-06-20 11:32:02 +02:00
|
|
|
events,
|
|
|
|
time_now,
|
2023-03-06 17:08:39 +01:00
|
|
|
config=SerializeEventConfig(
|
|
|
|
as_client_event=as_client_event, requester=requester
|
|
|
|
),
|
2019-05-09 14:21:57 +02:00
|
|
|
)
|
2014-08-27 15:13:06 +02:00
|
|
|
|
|
|
|
chunk = {
|
|
|
|
"chunk": chunks,
|
2021-12-15 17:10:02 +01:00
|
|
|
"start": await stream_result.start_token.to_string(self.store),
|
|
|
|
"end": await stream_result.end_token.to_string(self.store),
|
2014-08-27 15:13:06 +02:00
|
|
|
}
|
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return chunk
|
2014-08-27 15:13:06 +02:00
|
|
|
|
2014-08-27 11:33:01 +02:00
|
|
|
|
2021-10-08 13:44:43 +02:00
|
|
|
class EventHandler:
|
2020-09-03 23:02:29 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2022-02-23 12:04:02 +01:00
|
|
|
self.store = hs.get_datastores().main
|
2022-05-31 14:17:50 +02:00
|
|
|
self._storage_controllers = hs.get_storage_controllers()
|
2019-10-23 18:25:54 +02:00
|
|
|
|
2020-09-03 23:02:29 +02:00
|
|
|
async def get_event(
|
2022-04-20 13:57:39 +02:00
|
|
|
self,
|
|
|
|
user: UserID,
|
|
|
|
room_id: Optional[str],
|
|
|
|
event_id: str,
|
|
|
|
show_redacted: bool = False,
|
2020-09-03 23:02:29 +02:00
|
|
|
) -> Optional[EventBase]:
|
2014-08-27 11:33:01 +02:00
|
|
|
"""Retrieve a single specified event.
|
|
|
|
|
|
|
|
Args:
|
2022-08-24 21:13:12 +02:00
|
|
|
user: The local user requesting the event
|
2020-09-03 23:02:29 +02:00
|
|
|
room_id: The expected room id. We'll return None if the
|
2018-08-02 16:03:27 +02:00
|
|
|
event's room does not match.
|
2020-09-03 23:02:29 +02:00
|
|
|
event_id: The event ID to obtain.
|
2022-04-20 13:57:39 +02:00
|
|
|
show_redacted: Should the full content of redacted events be returned?
|
2014-08-27 11:33:01 +02:00
|
|
|
Returns:
|
2020-09-03 23:02:29 +02:00
|
|
|
An event, or None if there is no event matching this ID.
|
2014-08-27 11:33:01 +02:00
|
|
|
Raises:
|
2023-03-21 14:23:47 +01:00
|
|
|
AuthError: if the user does not have the rights to inspect this event.
|
2014-08-27 11:33:01 +02:00
|
|
|
"""
|
2022-04-20 13:57:39 +02:00
|
|
|
redact_behaviour = (
|
2022-05-04 13:26:11 +02:00
|
|
|
EventRedactBehaviour.as_is if show_redacted else EventRedactBehaviour.redact
|
2022-04-20 13:57:39 +02:00
|
|
|
)
|
|
|
|
event = await self.store.get_event(
|
2023-03-21 14:23:47 +01:00
|
|
|
event_id,
|
|
|
|
check_room_id=room_id,
|
|
|
|
redact_behaviour=redact_behaviour,
|
|
|
|
allow_none=True,
|
2022-04-20 13:57:39 +02:00
|
|
|
)
|
2014-08-27 11:33:01 +02:00
|
|
|
|
|
|
|
if not event:
|
2019-07-23 15:00:55 +02:00
|
|
|
return None
|
2014-08-27 11:33:01 +02:00
|
|
|
|
2022-08-24 21:13:12 +02:00
|
|
|
is_user_in_room = await self.store.check_local_user_in_room(
|
|
|
|
user_id=user.to_string(), room_id=event.room_id
|
|
|
|
)
|
|
|
|
# The user is peeking if they aren't in the room already
|
|
|
|
is_peeking = not is_user_in_room
|
2018-08-02 16:03:27 +02:00
|
|
|
|
2019-12-05 18:58:25 +01:00
|
|
|
filtered = await filter_events_for_client(
|
2022-05-31 14:17:50 +02:00
|
|
|
self._storage_controllers, user.to_string(), [event], is_peeking=is_peeking
|
2018-08-02 16:03:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if not filtered:
|
2019-06-20 11:32:02 +02:00
|
|
|
raise AuthError(403, "You don't have permission to access that event.")
|
2014-09-03 12:24:37 +02:00
|
|
|
|
2019-07-23 15:00:55 +02:00
|
|
|
return event
|