2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2017-11-08 11:35:30 +01:00
|
|
|
# Copyright 2017 New Vector Ltd
|
2014-11-19 19:20:59 +01: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.
|
2018-01-22 19:14:10 +01:00
|
|
|
import logging
|
2023-05-02 18:45:44 +02:00
|
|
|
import random
|
2020-12-04 16:51:56 +01:00
|
|
|
import urllib.parse
|
2023-04-26 21:10:51 +02:00
|
|
|
from typing import TYPE_CHECKING, Dict, List, Optional, Union
|
2014-11-21 13:21:00 +01:00
|
|
|
|
2018-07-09 08:09:20 +02:00
|
|
|
from prometheus_client import Counter
|
|
|
|
|
2016-07-31 16:30:13 +02:00
|
|
|
from twisted.internet.error import AlreadyCalled, AlreadyCancelled
|
2021-03-03 21:47:38 +01:00
|
|
|
from twisted.internet.interfaces import IDelayedCall
|
2014-11-19 19:20:59 +01:00
|
|
|
|
2020-07-01 18:02:31 +02:00
|
|
|
from synapse.api.constants import EventTypes
|
2020-12-07 15:59:38 +01:00
|
|
|
from synapse.events import EventBase
|
2019-09-09 11:13:14 +02:00
|
|
|
from synapse.logging import opentracing
|
2018-10-22 17:12:11 +02:00
|
|
|
from synapse.metrics.background_process_metrics import run_as_background_process
|
2020-12-16 17:25:30 +01:00
|
|
|
from synapse.push import Pusher, PusherConfig, PusherConfigException
|
2021-11-30 12:49:20 +01:00
|
|
|
from synapse.storage.databases.main.event_push_actions import HttpPushAction
|
2023-04-26 21:10:51 +02:00
|
|
|
from synapse.types import JsonDict, JsonMapping
|
2016-04-07 18:12:29 +02:00
|
|
|
|
2022-09-29 17:12:09 +02:00
|
|
|
from . import push_tools
|
2014-11-19 19:20:59 +01:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 12:12:48 +01:00
|
|
|
from synapse.server import HomeServer
|
2020-12-07 15:59:38 +01:00
|
|
|
|
2018-05-22 02:47:37 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
2018-01-22 19:14:10 +01:00
|
|
|
|
2019-02-22 11:57:15 +01:00
|
|
|
http_push_processed_counter = Counter(
|
|
|
|
"synapse_http_httppusher_http_pushes_processed",
|
|
|
|
"Number of push notifications successfully sent",
|
|
|
|
)
|
2018-01-22 19:14:10 +01:00
|
|
|
|
2019-02-22 11:57:15 +01:00
|
|
|
http_push_failed_counter = Counter(
|
|
|
|
"synapse_http_httppusher_http_pushes_failed",
|
|
|
|
"Number of push notifications which failed",
|
|
|
|
)
|
|
|
|
|
|
|
|
http_badges_processed_counter = Counter(
|
|
|
|
"synapse_http_httppusher_badge_updates_processed",
|
|
|
|
"Number of badge updates successfully sent",
|
|
|
|
)
|
|
|
|
|
|
|
|
http_badges_failed_counter = Counter(
|
|
|
|
"synapse_http_httppusher_badge_updates_failed",
|
|
|
|
"Number of badge updates which failed",
|
|
|
|
)
|
2018-01-22 19:14:10 +01:00
|
|
|
|
2014-12-03 14:37:02 +01:00
|
|
|
|
2023-04-26 21:10:51 +02:00
|
|
|
def tweaks_for_actions(actions: List[Union[str, Dict]]) -> JsonMapping:
|
2022-09-29 17:12:09 +02:00
|
|
|
"""
|
|
|
|
Converts a list of actions into a `tweaks` dict (which can then be passed to
|
|
|
|
the push gateway).
|
|
|
|
|
|
|
|
This function ignores all actions other than `set_tweak` actions, and treats
|
|
|
|
absent `value`s as `True`, which agrees with the only spec-defined treatment
|
|
|
|
of absent `value`s (namely, for `highlight` tweaks).
|
|
|
|
|
|
|
|
Args:
|
|
|
|
actions: list of actions
|
|
|
|
e.g. [
|
|
|
|
{"set_tweak": "a", "value": "AAA"},
|
|
|
|
{"set_tweak": "b", "value": "BBB"},
|
|
|
|
{"set_tweak": "highlight"},
|
|
|
|
"notify"
|
|
|
|
]
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
dictionary of tweaks for those actions
|
|
|
|
e.g. {"a": "AAA", "b": "BBB", "highlight": True}
|
|
|
|
"""
|
|
|
|
tweaks = {}
|
|
|
|
for a in actions:
|
|
|
|
if not isinstance(a, dict):
|
|
|
|
continue
|
|
|
|
if "set_tweak" in a:
|
|
|
|
# value is allowed to be absent in which case the value assumed
|
|
|
|
# should be True.
|
|
|
|
tweaks[a["set_tweak"]] = a.get("value", True)
|
|
|
|
return tweaks
|
|
|
|
|
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
class HttpPusher(Pusher):
|
2016-04-06 16:42:15 +02:00
|
|
|
INITIAL_BACKOFF_SEC = 1 # in seconds because that's what Twisted takes
|
|
|
|
MAX_BACKOFF_SEC = 60 * 60
|
|
|
|
|
|
|
|
# This one's in ms because we compare it against the clock
|
|
|
|
GIVE_UP_AFTER_MS = 24 * 60 * 60 * 1000
|
|
|
|
|
2020-12-16 17:25:30 +01:00
|
|
|
def __init__(self, hs: "HomeServer", pusher_config: PusherConfig):
|
|
|
|
super().__init__(hs, pusher_config)
|
2022-05-31 14:17:50 +02:00
|
|
|
self._storage_controllers = self.hs.get_storage_controllers()
|
2020-12-16 17:25:30 +01:00
|
|
|
self.app_display_name = pusher_config.app_display_name
|
|
|
|
self.device_display_name = pusher_config.device_display_name
|
2023-04-26 21:10:51 +02:00
|
|
|
self.device_id = pusher_config.device_id
|
2020-12-16 17:25:30 +01:00
|
|
|
self.pushkey_ts = pusher_config.ts
|
|
|
|
self.data = pusher_config.data
|
2016-04-06 16:42:15 +02:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2020-12-16 17:25:30 +01:00
|
|
|
self.failing_since = pusher_config.failing_since
|
2021-07-15 12:02:43 +02:00
|
|
|
self.timed_call: Optional[IDelayedCall] = None
|
2018-10-24 10:23:33 +02:00
|
|
|
self._is_processing = False
|
2021-09-23 18:03:01 +02:00
|
|
|
self._group_unread_count_by_room = (
|
|
|
|
hs.config.push.push_group_unread_count_by_room
|
|
|
|
)
|
2021-02-22 22:14:42 +01:00
|
|
|
self._pusherpool = hs.get_pusherpool()
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2023-05-02 18:45:44 +02:00
|
|
|
self.push_jitter_delay_ms = hs.config.push.push_jitter_delay_ms
|
|
|
|
|
2020-12-16 17:25:30 +01:00
|
|
|
self.data = pusher_config.data
|
|
|
|
if self.data is None:
|
|
|
|
raise PusherConfigException("'data' key can not be null for HTTP pusher")
|
2016-04-06 16:42:15 +02:00
|
|
|
|
|
|
|
self.name = "%s/%s/%s" % (
|
2020-12-16 17:25:30 +01:00
|
|
|
pusher_config.user_name,
|
|
|
|
pusher_config.app_id,
|
|
|
|
pusher_config.pushkey,
|
2014-12-03 14:37:02 +01:00
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2020-12-04 16:51:56 +01:00
|
|
|
# Validate that there's a URL and it is of the proper form.
|
2019-06-20 11:32:02 +02:00
|
|
|
if "url" not in self.data:
|
|
|
|
raise PusherConfigException("'url' required in data for HTTP pusher")
|
2020-12-04 16:51:56 +01:00
|
|
|
|
|
|
|
url = self.data["url"]
|
|
|
|
if not isinstance(url, str):
|
|
|
|
raise PusherConfigException("'url' must be a string")
|
|
|
|
url_parts = urllib.parse.urlparse(url)
|
|
|
|
# Note that the specification also says the scheme must be HTTPS, but
|
|
|
|
# it isn't up to the homeserver to verify that.
|
|
|
|
if url_parts.path != "/_matrix/push/v1/notify":
|
|
|
|
raise PusherConfigException(
|
|
|
|
"'url' must have a path of '/_matrix/push/v1/notify'"
|
|
|
|
)
|
|
|
|
|
|
|
|
self.url = url
|
2023-05-19 14:25:25 +02:00
|
|
|
self.http_client = hs.get_proxied_blocklisted_http_client()
|
2014-11-21 13:21:00 +01:00
|
|
|
self.data_minus_url = {}
|
|
|
|
self.data_minus_url.update(self.data)
|
2019-06-20 11:32:02 +02:00
|
|
|
del self.data_minus_url["url"]
|
2022-02-17 11:23:54 +01:00
|
|
|
self.badge_count_last_call: Optional[int] = None
|
2014-11-21 13:21:00 +01:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
def on_started(self, should_check_for_notifs: bool) -> None:
|
2019-04-02 17:45:33 +02:00
|
|
|
"""Called when this pusher has been started.
|
|
|
|
|
|
|
|
Args:
|
2020-12-07 15:59:38 +01:00
|
|
|
should_check_for_notifs: Whether we should immediately
|
2019-04-02 17:45:33 +02:00
|
|
|
check for push to send. Set to False only if it's known there
|
|
|
|
is nothing to send
|
|
|
|
"""
|
|
|
|
if should_check_for_notifs:
|
|
|
|
self._start_processing()
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2023-10-04 17:28:40 +02:00
|
|
|
def on_new_receipts(self) -> None:
|
2016-04-07 18:09:36 +02:00
|
|
|
# Note that the min here shouldn't be relied upon to be accurate.
|
|
|
|
|
2016-04-07 16:39:53 +02:00
|
|
|
# We could check the receipts are actually m.read receipts here,
|
|
|
|
# but currently that's the only type of receipt anyway...
|
2018-10-22 17:12:11 +02:00
|
|
|
run_as_background_process("http_pusher.on_new_receipts", self._update_badge)
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
async def _update_badge(self) -> None:
|
2020-06-18 11:47:06 +02:00
|
|
|
# XXX as per https://github.com/matrix-org/matrix-doc/issues/2627, this seems
|
|
|
|
# to be largely redundant. perhaps we can remove it.
|
2020-11-30 19:43:54 +01:00
|
|
|
badge = await push_tools.get_badge_count(
|
2022-02-23 12:04:02 +01:00
|
|
|
self.hs.get_datastores().main,
|
2020-11-30 19:43:54 +01:00
|
|
|
self.user_id,
|
|
|
|
group_by_room=self._group_unread_count_by_room,
|
|
|
|
)
|
2022-02-17 11:23:54 +01:00
|
|
|
if self.badge_count_last_call is None or self.badge_count_last_call != badge:
|
|
|
|
self.badge_count_last_call = badge
|
|
|
|
await self._send_badge(badge)
|
2018-10-22 17:12:11 +02:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
def on_timer(self) -> None:
|
2018-10-22 17:12:11 +02:00
|
|
|
self._start_processing()
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
def on_stop(self) -> None:
|
2016-04-06 16:42:15 +02:00
|
|
|
if self.timed_call:
|
2016-07-31 16:30:13 +02:00
|
|
|
try:
|
|
|
|
self.timed_call.cancel()
|
|
|
|
except (AlreadyCalled, AlreadyCancelled):
|
|
|
|
pass
|
|
|
|
self.timed_call = None
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
def _start_processing(self) -> None:
|
2018-10-24 10:23:33 +02:00
|
|
|
if self._is_processing:
|
2016-04-08 17:49:39 +02:00
|
|
|
return
|
2016-04-14 12:26:15 +02:00
|
|
|
|
2018-10-22 17:12:11 +02:00
|
|
|
run_as_background_process("httppush.process", self._process)
|
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
async def _process(self) -> None:
|
2018-10-24 10:23:33 +02:00
|
|
|
# we should never get here if we are already processing
|
|
|
|
assert not self._is_processing
|
|
|
|
|
2018-10-22 17:12:11 +02:00
|
|
|
try:
|
2018-10-24 10:23:33 +02:00
|
|
|
self._is_processing = True
|
2018-10-22 17:12:11 +02: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-14 12:33:50 +02:00
|
|
|
try:
|
2020-07-27 18:21:34 +02:00
|
|
|
await self._unsafe_process()
|
2018-10-22 17:12:11 +02:00
|
|
|
except Exception:
|
|
|
|
logger.exception("Exception processing notifs")
|
|
|
|
if self.max_stream_ordering == starting_max_ordering:
|
|
|
|
break
|
|
|
|
finally:
|
2018-10-24 10:23:33 +02:00
|
|
|
self._is_processing = False
|
2016-04-07 18:31:08 +02:00
|
|
|
|
2020-12-07 15:59:38 +01:00
|
|
|
async def _unsafe_process(self) -> None:
|
2016-04-08 15:02:38 +02:00
|
|
|
"""
|
|
|
|
Looks for unset notifications and dispatch them, in order
|
|
|
|
Never call this directly: use _process which will only allow this to
|
|
|
|
run once per pusher.
|
|
|
|
"""
|
2021-02-16 23:32:34 +01:00
|
|
|
unprocessed = (
|
|
|
|
await self.store.get_unread_push_actions_for_user_in_range_for_http(
|
|
|
|
self.user_id, self.last_stream_ordering, self.max_stream_ordering
|
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
)
|
|
|
|
|
2018-01-22 19:14:10 +01:00
|
|
|
logger.info(
|
2018-01-22 21:15:42 +01:00
|
|
|
"Processing %i unprocessed push actions for %s starting at "
|
|
|
|
"stream_ordering %s",
|
2019-06-20 11:32:02 +02:00
|
|
|
len(unprocessed),
|
|
|
|
self.name,
|
|
|
|
self.last_stream_ordering,
|
2018-01-22 19:14:10 +01:00
|
|
|
)
|
|
|
|
|
2016-04-06 16:42:15 +02:00
|
|
|
for push_action in unprocessed:
|
2019-09-09 11:13:14 +02:00
|
|
|
with opentracing.start_active_span(
|
|
|
|
"http-push",
|
|
|
|
tags={
|
|
|
|
"authenticated_entity": self.user_id,
|
2021-12-21 14:25:34 +01:00
|
|
|
"event_id": push_action.event_id,
|
2019-09-09 11:13:14 +02:00
|
|
|
"app_id": self.app_id,
|
|
|
|
"app_display_name": self.app_display_name,
|
|
|
|
},
|
|
|
|
):
|
2020-07-27 18:21:34 +02:00
|
|
|
processed = await self._process_one(push_action)
|
2019-09-09 11:13:14 +02:00
|
|
|
|
2016-04-06 16:42:15 +02:00
|
|
|
if processed:
|
2018-01-22 19:14:10 +01:00
|
|
|
http_push_processed_counter.inc()
|
2016-04-06 16:42:15 +02:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2021-12-21 14:25:34 +01:00
|
|
|
self.last_stream_ordering = push_action.stream_ordering
|
2021-02-16 23:32:34 +01:00
|
|
|
pusher_still_exists = (
|
|
|
|
await self.store.update_pusher_last_stream_ordering_and_success(
|
|
|
|
self.app_id,
|
|
|
|
self.pushkey,
|
|
|
|
self.user_id,
|
|
|
|
self.last_stream_ordering,
|
|
|
|
self.clock.time_msec(),
|
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
)
|
2019-08-01 14:41:27 +02:00
|
|
|
if not pusher_still_exists:
|
|
|
|
# The pusher has been deleted while we were processing, so
|
|
|
|
# lets just stop and return.
|
|
|
|
self.on_stop()
|
|
|
|
return
|
|
|
|
|
2016-04-07 16:39:53 +02:00
|
|
|
if self.failing_since:
|
|
|
|
self.failing_since = None
|
2020-07-27 18:21:34 +02:00
|
|
|
await self.store.update_pusher_failing_since(
|
2019-06-20 11:32:02 +02:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
2016-04-07 16:39:53 +02:00
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
else:
|
2018-01-22 19:14:10 +01:00
|
|
|
http_push_failed_counter.inc()
|
2016-04-07 16:39:53 +02:00
|
|
|
if not self.failing_since:
|
|
|
|
self.failing_since = self.clock.time_msec()
|
2020-07-27 18:21:34 +02:00
|
|
|
await self.store.update_pusher_failing_since(
|
2019-06-20 11:32:02 +02:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
2016-04-07 16:39:53 +02:00
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
|
|
|
|
if (
|
2019-06-20 11:32:02 +02:00
|
|
|
self.failing_since
|
|
|
|
and self.failing_since
|
|
|
|
< self.clock.time_msec() - HttpPusher.GIVE_UP_AFTER_MS
|
2016-04-06 16:42:15 +02:00
|
|
|
):
|
|
|
|
# we really only give up so that if the URL gets
|
|
|
|
# fixed, we don't suddenly deliver a load
|
|
|
|
# of old notifications.
|
2019-10-31 11:23:24 +01:00
|
|
|
logger.warning(
|
2019-11-21 13:00:14 +01:00
|
|
|
"Giving up on a notification to user %s, pushkey %s",
|
2019-06-20 11:32:02 +02:00
|
|
|
self.user_id,
|
|
|
|
self.pushkey,
|
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2021-12-21 14:25:34 +01:00
|
|
|
self.last_stream_ordering = push_action.stream_ordering
|
2020-12-07 15:59:38 +01:00
|
|
|
await self.store.update_pusher_last_stream_ordering(
|
2016-04-06 16:42:15 +02:00
|
|
|
self.app_id,
|
|
|
|
self.pushkey,
|
|
|
|
self.user_id,
|
2019-06-20 11:32:02 +02:00
|
|
|
self.last_stream_ordering,
|
2016-04-06 16:42:15 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
self.failing_since = None
|
2020-07-27 18:21:34 +02:00
|
|
|
await self.store.update_pusher_failing_since(
|
2019-06-20 11:32:02 +02:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
2016-04-06 16:42:15 +02:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
logger.info("Push failed: delaying for %ds", self.backoff_delay)
|
2018-06-25 15:08:28 +02:00
|
|
|
self.timed_call = self.hs.get_reactor().callLater(
|
|
|
|
self.backoff_delay, self.on_timer
|
|
|
|
)
|
2019-06-20 11:32:02 +02:00
|
|
|
self.backoff_delay = min(
|
|
|
|
self.backoff_delay * 2, self.MAX_BACKOFF_SEC
|
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
break
|
|
|
|
|
2021-11-30 12:49:20 +01:00
|
|
|
async def _process_one(self, push_action: HttpPushAction) -> bool:
|
2021-12-21 14:25:34 +01:00
|
|
|
if "notify" not in push_action.actions:
|
2019-07-23 15:00:55 +02:00
|
|
|
return True
|
2015-01-15 17:56:18 +01:00
|
|
|
|
2022-09-29 17:12:09 +02:00
|
|
|
tweaks = tweaks_for_actions(push_action.actions)
|
2020-11-30 19:43:54 +01:00
|
|
|
badge = await push_tools.get_badge_count(
|
2022-02-23 12:04:02 +01:00
|
|
|
self.hs.get_datastores().main,
|
2020-11-30 19:43:54 +01:00
|
|
|
self.user_id,
|
|
|
|
group_by_room=self._group_unread_count_by_room,
|
|
|
|
)
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2021-12-21 14:25:34 +01:00
|
|
|
event = await self.store.get_event(push_action.event_id, allow_none=True)
|
2016-04-06 16:42:15 +02:00
|
|
|
if event is None:
|
2019-07-23 15:00:55 +02:00
|
|
|
return True # It's been redacted
|
2023-05-02 18:45:44 +02:00
|
|
|
|
|
|
|
# Check if we should delay sending out the notification by a random
|
|
|
|
# amount.
|
|
|
|
#
|
|
|
|
# Note: we base the delay off of when the event was sent, rather than
|
|
|
|
# now, to handle the case where we need to send out many notifications
|
|
|
|
# at once. If we just slept the random amount each loop then the last
|
|
|
|
# push notification in the set could be delayed by many times the max
|
|
|
|
# delay.
|
|
|
|
if self.push_jitter_delay_ms:
|
|
|
|
delay_ms = random.randint(1, self.push_jitter_delay_ms)
|
|
|
|
diff_ms = event.origin_server_ts + delay_ms - self.clock.time_msec()
|
|
|
|
if diff_ms > 0:
|
|
|
|
await self.clock.sleep(diff_ms / 1000)
|
|
|
|
|
2023-04-26 21:10:51 +02:00
|
|
|
rejected = await self.dispatch_push_event(event, tweaks, badge)
|
2016-04-06 16:42:15 +02:00
|
|
|
if rejected is False:
|
2019-07-23 15:00:55 +02:00
|
|
|
return False
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2021-03-22 16:18:13 +01:00
|
|
|
if isinstance(rejected, (list, tuple)):
|
2016-04-06 16:42:15 +02:00
|
|
|
for pk in rejected:
|
|
|
|
if pk != self.pushkey:
|
|
|
|
# for sanity, we only remove the pushkey if it
|
|
|
|
# was the one we actually sent...
|
2019-10-31 11:23:24 +01:00
|
|
|
logger.warning(
|
2021-02-16 23:32:34 +01:00
|
|
|
("Ignoring rejected pushkey %s because we didn't send it"),
|
|
|
|
pk,
|
2016-04-06 16:42:15 +02:00
|
|
|
)
|
|
|
|
else:
|
2019-06-20 11:32:02 +02:00
|
|
|
logger.info("Pushkey %s was rejected: removing", pk)
|
2021-02-22 22:14:42 +01:00
|
|
|
await self._pusherpool.remove_pusher(self.app_id, pk, self.user_id)
|
2019-07-23 15:00:55 +02:00
|
|
|
return True
|
2016-04-06 16:42:15 +02:00
|
|
|
|
2023-04-26 21:10:51 +02:00
|
|
|
async def dispatch_push(
|
|
|
|
self,
|
|
|
|
content: JsonDict,
|
|
|
|
tweaks: Optional[JsonMapping] = None,
|
|
|
|
default_payload: Optional[JsonMapping] = None,
|
|
|
|
) -> Union[bool, List[str]]:
|
|
|
|
"""Send a notification to the registered push gateway, with `content` being
|
|
|
|
the content of the `notification` top property specified in the spec.
|
|
|
|
Note that the `devices` property will be added with device-specific
|
|
|
|
information for this pusher.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
content: the content
|
|
|
|
tweaks: tweaks to add into the `devices` section
|
|
|
|
default_payload: default payload to add in `devices[0].data.default_payload`.
|
|
|
|
This will be merged (and override if some matching values already exist there)
|
|
|
|
with existing `default_payload`.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
False if an error occured when calling the push gateway, or an array of
|
|
|
|
rejected push keys otherwise. If this array is empty, the push fully
|
|
|
|
succeeded.
|
|
|
|
"""
|
|
|
|
content = content.copy()
|
|
|
|
|
|
|
|
data = self.data_minus_url.copy()
|
|
|
|
if default_payload:
|
|
|
|
data.setdefault("default_payload", {}).update(default_payload)
|
|
|
|
|
|
|
|
device = {
|
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
|
|
|
"pushkey_ts": int(self.pushkey_ts / 1000),
|
|
|
|
"data": data,
|
|
|
|
}
|
|
|
|
if tweaks:
|
|
|
|
device["tweaks"] = tweaks
|
|
|
|
|
|
|
|
content["devices"] = [device]
|
|
|
|
|
|
|
|
try:
|
|
|
|
resp = await self.http_client.post_json_get_json(
|
|
|
|
self.url, {"notification": content}
|
|
|
|
)
|
|
|
|
except Exception as e:
|
|
|
|
logger.warning(
|
|
|
|
"Failed to push data to %s: %s %s",
|
|
|
|
self.name,
|
|
|
|
type(e),
|
|
|
|
e,
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
rejected = []
|
|
|
|
if "rejected" in resp:
|
|
|
|
rejected = resp["rejected"]
|
|
|
|
return rejected
|
|
|
|
|
|
|
|
async def dispatch_push_event(
|
|
|
|
self,
|
|
|
|
event: EventBase,
|
|
|
|
tweaks: JsonMapping,
|
|
|
|
badge: int,
|
|
|
|
) -> Union[bool, List[str]]:
|
|
|
|
"""Send a notification to the registered push gateway by building it
|
|
|
|
from an event.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event: the event
|
|
|
|
tweaks: tweaks to add into the `devices` section, used to decide the
|
|
|
|
push priority
|
|
|
|
badge: unread count to send with the push notification
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
False if an error occured when calling the push gateway, or an array of
|
|
|
|
rejected push keys otherwise. If this array is empty, the push fully
|
|
|
|
succeeded.
|
|
|
|
"""
|
2020-07-01 18:02:31 +02:00
|
|
|
priority = "low"
|
|
|
|
if (
|
|
|
|
event.type == EventTypes.Encrypted
|
|
|
|
or tweaks.get("highlight")
|
|
|
|
or tweaks.get("sound")
|
|
|
|
):
|
|
|
|
# HACK send our push as high priority only if it generates a sound, highlight
|
|
|
|
# or may do so (i.e. is encrypted so has unknown effects).
|
|
|
|
priority = "high"
|
|
|
|
|
2020-12-16 17:25:30 +01:00
|
|
|
# This was checked in the __init__, but mypy doesn't seem to know that.
|
|
|
|
assert self.data is not None
|
2019-06-20 11:32:02 +02:00
|
|
|
if self.data.get("format") == "event_id_only":
|
2023-04-26 21:10:51 +02:00
|
|
|
content: JsonDict = {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"counts": {"unread": badge},
|
|
|
|
"prio": priority,
|
2017-09-18 16:39:39 +02:00
|
|
|
}
|
2023-04-26 21:10:51 +02:00
|
|
|
# event_id_only doesn't include the tweaks, so override them.
|
|
|
|
tweaks = {}
|
|
|
|
else:
|
|
|
|
ctx = await push_tools.get_context_for_event(
|
|
|
|
self._storage_controllers, event, self.user_id
|
|
|
|
)
|
2014-11-21 13:21:00 +01:00
|
|
|
|
2023-04-26 21:10:51 +02:00
|
|
|
content = {
|
2019-06-20 11:32:02 +02:00
|
|
|
"id": event.event_id, # deprecated: remove soon
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"sender": event.user_id,
|
2020-07-01 18:02:31 +02:00
|
|
|
"prio": priority,
|
|
|
|
"counts": {
|
2019-06-20 11:32:02 +02:00
|
|
|
"unread": badge,
|
2015-01-29 17:10:35 +01:00
|
|
|
# 'missed_calls': 2
|
2015-01-28 12:55:49 +01:00
|
|
|
},
|
2014-12-03 14:37:02 +01:00
|
|
|
}
|
2023-04-26 21:10:51 +02:00
|
|
|
if event.type == "m.room.member" and event.is_state():
|
|
|
|
content["membership"] = event.content["membership"]
|
|
|
|
content["user_is_target"] = event.state_key == self.user_id
|
|
|
|
if self.hs.config.push.push_include_content and event.content:
|
|
|
|
content["content"] = event.content
|
|
|
|
|
|
|
|
# We no longer send aliases separately, instead, we send the human
|
|
|
|
# readable name of the room, which may be an alias.
|
|
|
|
if "sender_display_name" in ctx and len(ctx["sender_display_name"]) > 0:
|
|
|
|
content["sender_display_name"] = ctx["sender_display_name"]
|
|
|
|
if "name" in ctx and len(ctx["name"]) > 0:
|
|
|
|
content["room_name"] = ctx["name"]
|
|
|
|
|
|
|
|
res = await self.dispatch_push(content, tweaks)
|
|
|
|
|
|
|
|
# If the push is successful and none are rejected, update the badge count.
|
|
|
|
if res is not False and not res:
|
2022-02-17 11:23:54 +01:00
|
|
|
self.badge_count_last_call = badge
|
2023-04-26 21:10:51 +02:00
|
|
|
|
|
|
|
return res
|
2015-01-28 12:55:49 +01:00
|
|
|
|
2021-10-11 18:42:10 +02:00
|
|
|
async def _send_badge(self, badge: int) -> None:
|
2019-02-22 11:57:15 +01:00
|
|
|
"""
|
|
|
|
Args:
|
2021-10-11 18:42:10 +02:00
|
|
|
badge: number of unread messages
|
2019-02-22 11:57:15 +01:00
|
|
|
"""
|
2020-02-06 14:31:05 +01:00
|
|
|
logger.debug("Sending updated badge count %d to %s", badge, self.name)
|
2015-01-28 12:55:49 +01:00
|
|
|
d = {
|
2019-06-20 11:32:02 +02:00
|
|
|
"notification": {
|
|
|
|
"id": "",
|
|
|
|
"type": None,
|
|
|
|
"sender": "",
|
|
|
|
"counts": {"unread": badge},
|
|
|
|
"devices": [
|
2015-01-28 12:55:49 +01:00
|
|
|
{
|
2019-06-20 11:32:02 +02:00
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
2020-05-15 20:17:06 +02:00
|
|
|
"pushkey_ts": int(self.pushkey_ts / 1000),
|
2019-06-20 11:32:02 +02:00
|
|
|
"data": self.data_minus_url,
|
2015-01-28 12:55:49 +01:00
|
|
|
}
|
2019-06-20 11:32:02 +02:00
|
|
|
],
|
2015-01-28 12:55:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
try:
|
2020-07-27 18:21:34 +02:00
|
|
|
await self.http_client.post_json_get_json(self.url, d)
|
2019-02-22 11:57:15 +01:00
|
|
|
http_badges_processed_counter.inc()
|
2019-02-20 12:36:50 +01:00
|
|
|
except Exception as e:
|
|
|
|
logger.warning(
|
2019-06-20 11:32:02 +02:00
|
|
|
"Failed to send badge count to %s: %s %s", self.name, type(e), e
|
2018-01-29 16:49:06 +01:00
|
|
|
)
|
2019-02-22 11:57:15 +01:00
|
|
|
http_badges_failed_counter.inc()
|