2016-04-19 09:24:36 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2020-12-16 11:25:30 -05:00
|
|
|
from typing import TYPE_CHECKING, Dict, List, Optional
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2016-07-31 10:30:13 -04:00
|
|
|
from twisted.internet.error import AlreadyCalled, AlreadyCancelled
|
2021-03-12 11:37:57 -05:00
|
|
|
from twisted.internet.interfaces import IDelayedCall
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2018-10-22 11:12:11 -04:00
|
|
|
from synapse.metrics.background_process_metrics import run_as_background_process
|
2020-12-16 11:25:30 -05:00
|
|
|
from synapse.push import Pusher, PusherConfig, ThrottleParams
|
2020-12-07 09:59:38 -05:00
|
|
|
from synapse.push.mailer import Mailer
|
2016-04-20 08:02:01 -04:00
|
|
|
|
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
|
|
|
|
2016-04-19 09:24:36 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
# The amount of time we always wait before ever emailing about a notification
|
|
|
|
# (to give the user a chance to respond to other push or notice the window)
|
2016-05-16 13:58:38 -04:00
|
|
|
DELAY_BEFORE_MAIL_MS = 10 * 60 * 1000
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2016-05-16 13:58:38 -04:00
|
|
|
# THROTTLE is the minimum time between mail notifications sent for a given room.
|
|
|
|
# Each room maintains its own throttle counter, but each new mail notification
|
|
|
|
# sends the pending notifications for all rooms.
|
|
|
|
THROTTLE_START_MS = 10 * 60 * 1000
|
2016-05-23 14:24:11 -04:00
|
|
|
THROTTLE_MAX_MS = 24 * 60 * 60 * 1000 # 24h
|
|
|
|
# THROTTLE_MULTIPLIER = 6 # 10 mins, 1 hour, 6 hours, 24 hours
|
|
|
|
THROTTLE_MULTIPLIER = 144 # 10 mins, 24 hours - i.e. jump straight to 1 day
|
2016-04-19 09:24:36 -04:00
|
|
|
|
|
|
|
# If no event triggers a notification for this long after the previous,
|
|
|
|
# the throttle is released.
|
2016-05-23 14:24:11 -04:00
|
|
|
# 12 hours - a gap of 12 hours in conversation is surely enough to merit a new
|
|
|
|
# notification when things get going again...
|
|
|
|
THROTTLE_RESET_AFTER_MS = 12 * 60 * 60 * 1000
|
|
|
|
|
|
|
|
# does each email include all unread notifs, or just the ones which have happened
|
|
|
|
# since the last mail?
|
2016-06-02 09:07:38 -04:00
|
|
|
# XXX: this is currently broken as it includes ones from parted rooms(!)
|
|
|
|
INCLUDE_ALL_UNREAD_NOTIFS = False
|
2016-04-19 09:24:36 -04:00
|
|
|
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
class EmailPusher(Pusher):
|
2016-04-19 09:24:36 -04:00
|
|
|
"""
|
|
|
|
A pusher that sends email notifications about events (approximately)
|
|
|
|
when they happen.
|
|
|
|
This shares quite a bit of code with httpusher: it would be good to
|
|
|
|
factor out the common parts
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2020-12-16 11:25:30 -05:00
|
|
|
def __init__(self, hs: "HomeServer", pusher_config: PusherConfig, mailer: Mailer):
|
|
|
|
super().__init__(hs, pusher_config)
|
2017-05-22 12:48:53 -04:00
|
|
|
self.mailer = mailer
|
|
|
|
|
2016-04-19 09:24:36 -04:00
|
|
|
self.store = self.hs.get_datastore()
|
2020-12-16 11:25:30 -05:00
|
|
|
self.email = pusher_config.pushkey
|
2021-03-12 11:37:57 -05:00
|
|
|
self.timed_call = None # type: Optional[IDelayedCall]
|
2020-12-16 11:25:30 -05:00
|
|
|
self.throttle_params = {} # type: Dict[str, ThrottleParams]
|
2020-12-07 09:59:38 -05:00
|
|
|
self._inited = False
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2018-10-24 04:23:33 -04:00
|
|
|
self._is_processing = False
|
2016-04-19 09:52:58 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def on_started(self, should_check_for_notifs: bool) -> None:
|
2019-04-02 11:45:33 -04:00
|
|
|
"""Called when this pusher has been started.
|
|
|
|
|
|
|
|
Args:
|
2020-12-07 09:59:38 -05:00
|
|
|
should_check_for_notifs: Whether we should immediately
|
2019-04-02 11:45:33 -04:00
|
|
|
check for push to send. Set to False only if it's known there
|
|
|
|
is nothing to send
|
|
|
|
"""
|
|
|
|
if should_check_for_notifs and self.mailer is not None:
|
2018-10-22 11:12:11 -04:00
|
|
|
self._start_processing()
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def on_stop(self) -> None:
|
2016-04-19 09:52:58 -04:00
|
|
|
if self.timed_call:
|
2016-07-31 10:30:13 -04:00
|
|
|
try:
|
|
|
|
self.timed_call.cancel()
|
|
|
|
except (AlreadyCalled, AlreadyCancelled):
|
|
|
|
pass
|
|
|
|
self.timed_call = None
|
2016-04-19 09:52:58 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def on_new_receipts(self, min_stream_id: int, max_stream_id: int) -> None:
|
2016-04-21 14:19:07 -04:00
|
|
|
# We could wake up and cancel the timer but there tend to be quite a
|
|
|
|
# lot of read receipts so it's probably less work to just let the
|
|
|
|
# timer fire
|
2018-10-22 11:12:11 -04:00
|
|
|
pass
|
2016-04-21 14:19:07 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def on_timer(self) -> None:
|
2016-04-19 09:24:36 -04:00
|
|
|
self.timed_call = None
|
2018-10-22 11:12:11 -04:00
|
|
|
self._start_processing()
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def _start_processing(self) -> None:
|
2018-10-24 04:23:33 -04:00
|
|
|
if self._is_processing:
|
2016-04-19 09:52:58 -04:00
|
|
|
return
|
|
|
|
|
2018-10-22 11:12:11 -04:00
|
|
|
run_as_background_process("emailpush.process", self._process)
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def _pause_processing(self) -> None:
|
2019-06-07 07:10:23 -04:00
|
|
|
"""Used by tests to temporarily pause processing of events.
|
|
|
|
|
|
|
|
Asserts that its not currently processing.
|
|
|
|
"""
|
|
|
|
assert not self._is_processing
|
|
|
|
self._is_processing = True
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def _resume_processing(self) -> None:
|
2019-06-07 07:10:23 -04:00
|
|
|
"""Used by tests to resume processing of events after pausing."""
|
|
|
|
assert self._is_processing
|
|
|
|
self._is_processing = False
|
|
|
|
self._start_processing()
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def _process(self) -> None:
|
2018-10-24 04:23:33 -04:00
|
|
|
# we should never get here if we are already processing
|
|
|
|
assert not self._is_processing
|
|
|
|
|
2018-10-22 11:12:11 -04:00
|
|
|
try:
|
2018-10-24 04:23:33 -04:00
|
|
|
self._is_processing = True
|
2018-10-22 11:12:11 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
if not self._inited:
|
2018-10-22 11:12:11 -04:00
|
|
|
# this is our first loop: load up the throttle params
|
2020-12-16 11:25:30 -05:00
|
|
|
assert self.pusher_id is not None
|
2020-05-22 08:41:11 -04:00
|
|
|
self.throttle_params = await self.store.get_throttle_params_by_room(
|
2018-10-22 11:12:11 -04:00
|
|
|
self.pusher_id
|
|
|
|
)
|
2020-12-07 09:59:38 -05:00
|
|
|
self._inited = True
|
2018-10-22 11:12:11 -04:00
|
|
|
|
2018-10-22 11:12:11 -04:00
|
|
|
# if the max ordering changes while we're running _unsafe_process,
|
|
|
|
# call it again, and so on until we've caught up.
|
|
|
|
while True:
|
|
|
|
starting_max_ordering = self.max_stream_ordering
|
2016-04-19 09:52:58 -04:00
|
|
|
try:
|
2020-05-22 08:41:11 -04:00
|
|
|
await self._unsafe_process()
|
2018-10-22 11:12:11 -04:00
|
|
|
except Exception:
|
|
|
|
logger.exception("Exception processing notifs")
|
|
|
|
if self.max_stream_ordering == starting_max_ordering:
|
|
|
|
break
|
|
|
|
finally:
|
2018-10-24 04:23:33 -04:00
|
|
|
self._is_processing = False
|
2016-04-19 09:52:58 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def _unsafe_process(self) -> None:
|
2016-04-19 09:52:58 -04:00
|
|
|
"""
|
|
|
|
Main logic of the push loop without the wrapper function that sets
|
|
|
|
up logging, measures and guards against multiple instances of it
|
|
|
|
being run.
|
|
|
|
"""
|
2016-05-23 14:24:11 -04:00
|
|
|
start = 0 if INCLUDE_ALL_UNREAD_NOTIFS else self.last_stream_ordering
|
2020-12-07 09:59:38 -05:00
|
|
|
unprocessed = (
|
|
|
|
await self.store.get_unread_push_actions_for_user_in_range_for_email(
|
|
|
|
self.user_id, start, self.max_stream_ordering
|
2021-02-16 17:32:34 -05:00
|
|
|
)
|
2020-12-07 09:59:38 -05:00
|
|
|
)
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
soonest_due_at = None # type: Optional[int]
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2016-10-18 05:52:47 -04:00
|
|
|
if not unprocessed:
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.save_last_stream_ordering_and_success(self.max_stream_ordering)
|
2016-10-18 05:52:47 -04:00
|
|
|
return
|
|
|
|
|
2016-04-19 09:24:36 -04:00
|
|
|
for push_action in unprocessed:
|
|
|
|
received_at = push_action["received_ts"]
|
|
|
|
if received_at is None:
|
|
|
|
received_at = 0
|
|
|
|
notif_ready_at = received_at + DELAY_BEFORE_MAIL_MS
|
|
|
|
|
|
|
|
room_ready_at = self.room_ready_to_notify_at(push_action["room_id"])
|
|
|
|
|
|
|
|
should_notify_at = max(notif_ready_at, room_ready_at)
|
|
|
|
|
|
|
|
if should_notify_at < self.clock.time_msec():
|
|
|
|
# one of our notifications is ready for sending, so we send
|
|
|
|
# *one* email updating the user on their notifications,
|
|
|
|
# we then consider all previously outstanding notifications
|
|
|
|
# to be delivered.
|
2016-05-16 13:58:38 -04:00
|
|
|
|
|
|
|
reason = {
|
|
|
|
"room_id": push_action["room_id"],
|
|
|
|
"now": self.clock.time_msec(),
|
|
|
|
"received_at": received_at,
|
|
|
|
"delay_before_mail_ms": DELAY_BEFORE_MAIL_MS,
|
|
|
|
"last_sent_ts": self.get_room_last_sent_ts(push_action["room_id"]),
|
|
|
|
"throttle_ms": self.get_room_throttle_ms(push_action["room_id"]),
|
|
|
|
}
|
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.send_notification(unprocessed, reason)
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.save_last_stream_ordering_and_success(
|
2020-02-21 07:15:07 -05:00
|
|
|
max(ea["stream_ordering"] for ea in unprocessed)
|
2016-04-19 09:24:36 -04:00
|
|
|
)
|
2016-05-23 14:24:11 -04:00
|
|
|
|
|
|
|
# we update the throttle on all the possible unprocessed push actions
|
|
|
|
for ea in unprocessed:
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.sent_notif_update_throttle(ea["room_id"], ea)
|
2016-04-29 09:31:27 -04:00
|
|
|
break
|
2016-04-19 09:24:36 -04:00
|
|
|
else:
|
|
|
|
if soonest_due_at is None or should_notify_at < soonest_due_at:
|
|
|
|
soonest_due_at = should_notify_at
|
|
|
|
|
2016-04-19 09:52:58 -04:00
|
|
|
if self.timed_call is not None:
|
2016-07-31 10:30:13 -04:00
|
|
|
try:
|
|
|
|
self.timed_call.cancel()
|
|
|
|
except (AlreadyCalled, AlreadyCancelled):
|
|
|
|
pass
|
2016-04-19 09:52:58 -04:00
|
|
|
self.timed_call = None
|
2016-04-19 09:24:36 -04:00
|
|
|
|
|
|
|
if soonest_due_at is not None:
|
2018-06-25 09:08:28 -04:00
|
|
|
self.timed_call = self.hs.get_reactor().callLater(
|
2016-04-19 09:24:36 -04:00
|
|
|
self.seconds_until(soonest_due_at), self.on_timer
|
|
|
|
)
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def save_last_stream_ordering_and_success(
|
2021-01-05 10:53:15 -05:00
|
|
|
self, last_stream_ordering: int
|
2020-12-07 09:59:38 -05:00
|
|
|
) -> None:
|
2016-04-19 09:24:36 -04:00
|
|
|
self.last_stream_ordering = last_stream_ordering
|
2020-05-22 08:41:11 -04:00
|
|
|
pusher_still_exists = (
|
|
|
|
await self.store.update_pusher_last_stream_ordering_and_success(
|
2019-10-31 11:43:24 -04:00
|
|
|
self.app_id,
|
|
|
|
self.email,
|
|
|
|
self.user_id,
|
|
|
|
last_stream_ordering,
|
|
|
|
self.clock.time_msec(),
|
2021-02-16 17:32:34 -05:00
|
|
|
)
|
2016-04-19 09:24:36 -04:00
|
|
|
)
|
2019-08-01 08:41:27 -04:00
|
|
|
if not pusher_still_exists:
|
|
|
|
# The pusher has been deleted while we were processing, so
|
|
|
|
# lets just stop and return.
|
|
|
|
self.on_stop()
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def seconds_until(self, ts_msec: int) -> float:
|
2017-02-22 07:08:14 -05:00
|
|
|
secs = (ts_msec - self.clock.time_msec()) / 1000
|
|
|
|
return max(secs, 0)
|
2016-04-19 09:24:36 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def get_room_throttle_ms(self, room_id: str) -> int:
|
2016-04-19 09:24:36 -04:00
|
|
|
if room_id in self.throttle_params:
|
2020-12-16 11:25:30 -05:00
|
|
|
return self.throttle_params[room_id].throttle_ms
|
2016-04-19 09:24:36 -04:00
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def get_room_last_sent_ts(self, room_id: str) -> int:
|
2016-04-19 09:24:36 -04:00
|
|
|
if room_id in self.throttle_params:
|
2020-12-16 11:25:30 -05:00
|
|
|
return self.throttle_params[room_id].last_sent_ts
|
2016-04-19 09:24:36 -04:00
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def room_ready_to_notify_at(self, room_id: str) -> int:
|
2016-04-19 09:24:36 -04:00
|
|
|
"""
|
|
|
|
Determines whether throttling should prevent us from sending an email
|
|
|
|
for the given room
|
2020-12-07 09:59:38 -05:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
The timestamp when we are next allowed to send an email notif
|
|
|
|
for this room
|
2016-04-19 09:24:36 -04:00
|
|
|
"""
|
|
|
|
last_sent_ts = self.get_room_last_sent_ts(room_id)
|
|
|
|
throttle_ms = self.get_room_throttle_ms(room_id)
|
|
|
|
|
|
|
|
may_send_at = last_sent_ts + throttle_ms
|
|
|
|
return may_send_at
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def sent_notif_update_throttle(
|
|
|
|
self, room_id: str, notified_push_action: dict
|
|
|
|
) -> None:
|
2016-04-19 09:24:36 -04:00
|
|
|
# We have sent a notification, so update the throttle accordingly.
|
|
|
|
# If the event that triggered the notif happened more than
|
|
|
|
# THROTTLE_RESET_AFTER_MS after the previous one that triggered a
|
|
|
|
# notif, we release the throttle. Otherwise, the throttle is increased.
|
2020-05-22 08:41:11 -04:00
|
|
|
time_of_previous_notifs = await self.store.get_time_of_last_push_action_before(
|
2016-04-19 09:24:36 -04:00
|
|
|
notified_push_action["stream_ordering"]
|
|
|
|
)
|
|
|
|
|
|
|
|
time_of_this_notifs = notified_push_action["received_ts"]
|
|
|
|
|
|
|
|
if time_of_previous_notifs is not None and time_of_this_notifs is not None:
|
|
|
|
gap = time_of_this_notifs - time_of_previous_notifs
|
|
|
|
else:
|
|
|
|
# if we don't know the arrival time of one of the notifs (it was not
|
|
|
|
# stored prior to email notification code) then assume a gap of
|
|
|
|
# zero which will just not reset the throttle
|
|
|
|
gap = 0
|
|
|
|
|
|
|
|
current_throttle_ms = self.get_room_throttle_ms(room_id)
|
|
|
|
|
|
|
|
if gap > THROTTLE_RESET_AFTER_MS:
|
|
|
|
new_throttle_ms = THROTTLE_START_MS
|
|
|
|
else:
|
|
|
|
if current_throttle_ms == 0:
|
|
|
|
new_throttle_ms = THROTTLE_START_MS
|
|
|
|
else:
|
|
|
|
new_throttle_ms = min(
|
2016-04-29 15:14:55 -04:00
|
|
|
current_throttle_ms * THROTTLE_MULTIPLIER, THROTTLE_MAX_MS
|
2016-04-19 09:24:36 -04:00
|
|
|
)
|
2020-12-16 11:25:30 -05:00
|
|
|
self.throttle_params[room_id] = ThrottleParams(
|
|
|
|
self.clock.time_msec(),
|
|
|
|
new_throttle_ms,
|
|
|
|
)
|
|
|
|
assert self.pusher_id is not None
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.store.set_throttle_params(
|
2016-04-19 09:24:36 -04:00
|
|
|
self.pusher_id, room_id, self.throttle_params[room_id]
|
|
|
|
)
|
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def send_notification(self, push_actions: List[dict], reason: dict) -> None:
|
2016-04-20 08:02:01 -04:00
|
|
|
logger.info("Sending notif email for user %r", self.user_id)
|
2016-05-16 13:58:38 -04:00
|
|
|
|
2020-05-22 08:41:11 -04:00
|
|
|
await self.mailer.send_notification_mail(
|
2016-06-02 06:44:15 -04:00
|
|
|
self.app_id, self.user_id, self.email, push_actions, reason
|
2016-04-20 08:02:01 -04:00
|
|
|
)
|