2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2014-11-19 13:20:59 -05: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.
|
|
|
|
|
2022-05-10 07:43:34 -04:00
|
|
|
"""
|
|
|
|
This module implements the push rules & notifications portion of the Matrix
|
|
|
|
specification.
|
|
|
|
|
|
|
|
There's a few related features:
|
|
|
|
|
|
|
|
* Push notifications (i.e. email or outgoing requests to a Push Gateway).
|
|
|
|
* Calculation of unread notifications (for /sync and /notifications).
|
|
|
|
|
|
|
|
When Synapse receives a new event (locally, via the Client-Server API, or via
|
|
|
|
federation), the following occurs:
|
|
|
|
|
|
|
|
1. The push rules get evaluated to generate a set of per-user actions.
|
|
|
|
2. The event is persisted into the database.
|
|
|
|
3. (In the background) The notifier is notified about the new event.
|
|
|
|
|
|
|
|
The per-user actions are initially stored in the event_push_actions_staging table,
|
|
|
|
before getting moved into the event_push_actions table when the event is persisted.
|
|
|
|
The event_push_actions table is periodically summarised into the event_push_summary
|
|
|
|
and event_push_summary_stream_ordering tables.
|
|
|
|
|
|
|
|
Since push actions block an event from being persisted the generation of push
|
|
|
|
actions is performance sensitive.
|
|
|
|
|
|
|
|
The general interaction of the classes are:
|
|
|
|
|
|
|
|
+---------------------------------------------+
|
|
|
|
| FederationEventHandler/EventCreationHandler |
|
|
|
|
+---------------------------------------------+
|
|
|
|
|
|
|
|
|
v
|
|
|
|
+-----------------------+ +---------------------------+
|
|
|
|
| BulkPushRuleEvaluator |---->| PushRuleEvaluatorForEvent |
|
|
|
|
+-----------------------+ +---------------------------+
|
|
|
|
|
|
|
|
|
v
|
|
|
|
+-----------------------------+
|
|
|
|
| EventPushActionsWorkerStore |
|
|
|
|
+-----------------------------+
|
|
|
|
|
|
|
|
The notifier notifies the pusher pool of the new event, which checks for affected
|
|
|
|
users. Each user-configured pusher of the affected users then performs the
|
|
|
|
previously calculated action.
|
|
|
|
|
|
|
|
The general interaction of the classes are:
|
|
|
|
|
|
|
|
+----------+
|
|
|
|
| Notifier |
|
|
|
|
+----------+
|
|
|
|
|
|
|
|
|
v
|
|
|
|
+------------+ +--------------+
|
|
|
|
| PusherPool |---->| PusherConfig |
|
|
|
|
+------------+ +--------------+
|
|
|
|
|
|
|
|
|
| +---------------+
|
|
|
|
+<--->| PusherFactory |
|
|
|
|
| +---------------+
|
|
|
|
v
|
|
|
|
+------------------------+ +-----------------------------------------------+
|
|
|
|
| EmailPusher/HttpPusher |---->| EventPushActionsWorkerStore/PusherWorkerStore |
|
|
|
|
+------------------------+ +-----------------------------------------------+
|
|
|
|
|
|
|
|
|
v
|
|
|
|
+-------------------------+
|
|
|
|
| Mailer/SimpleHttpClient |
|
|
|
|
+-------------------------+
|
|
|
|
|
|
|
|
The Pusher instance also calls out to various utilities for generating payloads
|
|
|
|
(or email templates), but those interactions are not detailed in this diagram
|
|
|
|
(and are specific to the type of pusher).
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
import abc
|
2020-12-16 11:25:30 -05:00
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Optional
|
2020-12-07 09:59:38 -05:00
|
|
|
|
2020-12-16 11:25:30 -05:00
|
|
|
import attr
|
|
|
|
|
|
|
|
from synapse.types import JsonDict, RoomStreamToken
|
2020-12-07 09:59:38 -05:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2020-12-07 09:59:38 -05:00
|
|
|
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
@attr.s(slots=True, auto_attribs=True)
|
2020-12-16 11:25:30 -05:00
|
|
|
class PusherConfig:
|
|
|
|
"""Parameters necessary to configure a pusher."""
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
id: Optional[str]
|
|
|
|
user_name: str
|
|
|
|
access_token: Optional[int]
|
|
|
|
profile_tag: str
|
|
|
|
kind: str
|
|
|
|
app_id: str
|
|
|
|
app_display_name: str
|
|
|
|
device_display_name: str
|
|
|
|
pushkey: str
|
|
|
|
ts: int
|
|
|
|
lang: Optional[str]
|
|
|
|
data: Optional[JsonDict]
|
|
|
|
last_stream_ordering: int
|
|
|
|
last_success: Optional[int]
|
|
|
|
failing_since: Optional[int]
|
2022-09-21 10:39:01 -04:00
|
|
|
enabled: bool
|
2022-09-21 11:31:53 -04:00
|
|
|
device_id: Optional[str]
|
2020-12-16 11:25:30 -05:00
|
|
|
|
|
|
|
def as_dict(self) -> Dict[str, Any]:
|
|
|
|
"""Information that can be retrieved about a pusher after creation."""
|
|
|
|
return {
|
|
|
|
"app_display_name": self.app_display_name,
|
|
|
|
"app_id": self.app_id,
|
|
|
|
"data": self.data,
|
|
|
|
"device_display_name": self.device_display_name,
|
|
|
|
"kind": self.kind,
|
|
|
|
"lang": self.lang,
|
|
|
|
"profile_tag": self.profile_tag,
|
|
|
|
"pushkey": self.pushkey,
|
2022-09-21 10:39:01 -04:00
|
|
|
"enabled": self.enabled,
|
2022-09-21 11:31:53 -04:00
|
|
|
"device_id": self.device_id,
|
2020-12-16 11:25:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
@attr.s(slots=True, auto_attribs=True)
|
2020-12-16 11:25:30 -05:00
|
|
|
class ThrottleParams:
|
|
|
|
"""Parameters for controlling the rate of sending pushes via email."""
|
|
|
|
|
2022-01-13 08:49:28 -05:00
|
|
|
last_sent_ts: int
|
|
|
|
throttle_ms: int
|
2020-12-16 11:25:30 -05:00
|
|
|
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
class Pusher(metaclass=abc.ABCMeta):
|
2020-12-16 11:25:30 -05:00
|
|
|
def __init__(self, hs: "HomeServer", pusher_config: PusherConfig):
|
2020-12-07 09:59:38 -05:00
|
|
|
self.hs = hs
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = self.hs.get_datastores().main
|
2020-12-07 09:59:38 -05:00
|
|
|
self.clock = self.hs.get_clock()
|
|
|
|
|
2020-12-16 11:25:30 -05:00
|
|
|
self.pusher_id = pusher_config.id
|
|
|
|
self.user_id = pusher_config.user_name
|
|
|
|
self.app_id = pusher_config.app_id
|
|
|
|
self.pushkey = pusher_config.pushkey
|
|
|
|
|
|
|
|
self.last_stream_ordering = pusher_config.last_stream_ordering
|
2020-12-07 09:59:38 -05:00
|
|
|
|
|
|
|
# This is the highest stream ordering we know it's safe to process.
|
|
|
|
# When new events arrive, we'll be given a window of new events: we
|
|
|
|
# should honour this rather than just looking for anything higher
|
2020-12-15 10:41:34 -05:00
|
|
|
# because of potential out-of-order event serialisation.
|
|
|
|
self.max_stream_ordering = self.store.get_room_max_stream_ordering()
|
2020-12-07 09:59:38 -05:00
|
|
|
|
|
|
|
def on_new_notifications(self, max_token: RoomStreamToken) -> None:
|
2020-12-15 10:41:34 -05:00
|
|
|
# We just use the minimum stream ordering and ignore the vector clock
|
|
|
|
# component. This is safe to do as long as we *always* ignore the vector
|
|
|
|
# clock components.
|
|
|
|
max_stream_ordering = max_token.stream
|
|
|
|
|
|
|
|
self.max_stream_ordering = max(max_stream_ordering, self.max_stream_ordering)
|
|
|
|
self._start_processing()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
2021-10-11 12:42:10 -04:00
|
|
|
def _start_processing(self) -> None:
|
2020-12-15 10:41:34 -05:00
|
|
|
"""Start processing push notifications."""
|
2020-12-07 09:59:38 -05:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def on_new_receipts(self, min_stream_id: int, max_stream_id: int) -> None:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def on_started(self, have_notifs: bool) -> None:
|
|
|
|
"""Called when this pusher has been started.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
should_check_for_notifs: Whether we should immediately
|
|
|
|
check for push to send. Set to False only if it's known there
|
|
|
|
is nothing to send
|
|
|
|
"""
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def on_stop(self) -> None:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
2015-01-28 06:55:49 -05:00
|
|
|
|
2014-11-19 13:20:59 -05:00
|
|
|
class PusherConfigException(Exception):
|
2020-12-04 10:51:56 -05:00
|
|
|
"""An error occurred when creating a pusher."""
|