2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2017-11-08 05:35:30 -05:00
|
|
|
# Copyright 2017 New Vector 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.
|
2018-01-22 13:14:10 -05:00
|
|
|
import logging
|
2020-12-04 10:51:56 -05:00
|
|
|
import urllib.parse
|
2022-09-29 11:12:09 -04:00
|
|
|
from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from prometheus_client import Counter
|
|
|
|
|
2016-07-31 10:30:13 -04:00
|
|
|
from twisted.internet.error import AlreadyCalled, AlreadyCancelled
|
2021-03-03 15:47:38 -05:00
|
|
|
from twisted.internet.interfaces import IDelayedCall
|
2014-11-19 13:20:59 -05:00
|
|
|
|
2020-07-01 12:02:31 -04:00
|
|
|
from synapse.api.constants import EventTypes
|
2020-12-07 09:59:38 -05:00
|
|
|
from synapse.events import EventBase
|
2019-09-09 05:13:14 -04:00
|
|
|
from synapse.logging import opentracing
|
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, PusherConfigException
|
2021-11-30 06:49:20 -05:00
|
|
|
from synapse.storage.databases.main.event_push_actions import HttpPushAction
|
2016-04-07 12:12:29 -04:00
|
|
|
|
2022-09-29 11:12:09 -04:00
|
|
|
from . import push_tools
|
2014-11-19 13:20:59 -05: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
|
|
|
|
2018-05-21 20:47:37 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2018-01-22 13:14:10 -05:00
|
|
|
|
2019-02-22 05:57:15 -05:00
|
|
|
http_push_processed_counter = Counter(
|
|
|
|
"synapse_http_httppusher_http_pushes_processed",
|
|
|
|
"Number of push notifications successfully sent",
|
|
|
|
)
|
2018-01-22 13:14:10 -05:00
|
|
|
|
2019-02-22 05:57:15 -05: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 13:14:10 -05:00
|
|
|
|
2014-12-03 08:37:02 -05:00
|
|
|
|
2022-09-29 11:12:09 -04:00
|
|
|
def tweaks_for_actions(actions: List[Union[str, Dict]]) -> Dict[str, Any]:
|
|
|
|
"""
|
|
|
|
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 09:59:38 -05:00
|
|
|
class HttpPusher(Pusher):
|
2016-04-06 10:42:15 -04: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 11:25:30 -05:00
|
|
|
def __init__(self, hs: "HomeServer", pusher_config: PusherConfig):
|
|
|
|
super().__init__(hs, pusher_config)
|
2022-05-31 08:17:50 -04:00
|
|
|
self._storage_controllers = self.hs.get_storage_controllers()
|
2020-12-16 11:25:30 -05:00
|
|
|
self.app_display_name = pusher_config.app_display_name
|
|
|
|
self.device_display_name = pusher_config.device_display_name
|
|
|
|
self.pushkey_ts = pusher_config.ts
|
|
|
|
self.data = pusher_config.data
|
2016-04-06 10:42:15 -04:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2020-12-16 11:25:30 -05:00
|
|
|
self.failing_since = pusher_config.failing_since
|
2021-07-15 06:02:43 -04:00
|
|
|
self.timed_call: Optional[IDelayedCall] = None
|
2018-10-24 04:23:33 -04:00
|
|
|
self._is_processing = False
|
2021-09-23 12:03:01 -04:00
|
|
|
self._group_unread_count_by_room = (
|
|
|
|
hs.config.push.push_group_unread_count_by_room
|
|
|
|
)
|
2021-02-22 16:14:42 -05:00
|
|
|
self._pusherpool = hs.get_pusherpool()
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2020-12-16 11:25:30 -05: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 10:42:15 -04:00
|
|
|
|
|
|
|
self.name = "%s/%s/%s" % (
|
2020-12-16 11:25:30 -05:00
|
|
|
pusher_config.user_name,
|
|
|
|
pusher_config.app_id,
|
|
|
|
pusher_config.pushkey,
|
2014-12-03 08:37:02 -05:00
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2020-12-04 10:51:56 -05:00
|
|
|
# Validate that there's a URL and it is of the proper form.
|
2016-04-06 10:42:15 -04:00
|
|
|
if "url" not in self.data:
|
2014-12-03 08:37:02 -05:00
|
|
|
raise PusherConfigException("'url' required in data for HTTP pusher")
|
2020-12-04 10:51:56 -05: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
|
2020-12-02 11:09:24 -05:00
|
|
|
self.http_client = hs.get_proxied_blacklisted_http_client()
|
2014-11-21 07:21:00 -05:00
|
|
|
self.data_minus_url = {}
|
|
|
|
self.data_minus_url.update(self.data)
|
|
|
|
del self.data_minus_url["url"]
|
2022-02-17 05:23:54 -05:00
|
|
|
self.badge_count_last_call: Optional[int] = None
|
2014-11-21 07:21:00 -05: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:
|
|
|
|
self._start_processing()
|
2016-04-06 10:42:15 -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-07 12:09:36 -04:00
|
|
|
# Note that the min here shouldn't be relied upon to be accurate.
|
|
|
|
|
2016-04-07 10:39:53 -04: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 11:12:11 -04:00
|
|
|
run_as_background_process("http_pusher.on_new_receipts", self._update_badge)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def _update_badge(self) -> None:
|
2020-06-18 05:47:06 -04: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 13:43:54 -05:00
|
|
|
badge = await push_tools.get_badge_count(
|
2022-02-23 06:04:02 -05:00
|
|
|
self.hs.get_datastores().main,
|
2020-11-30 13:43:54 -05:00
|
|
|
self.user_id,
|
|
|
|
group_by_room=self._group_unread_count_by_room,
|
|
|
|
)
|
2022-02-17 05:23:54 -05: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 11:12:11 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def on_timer(self) -> None:
|
2018-10-22 11:12:11 -04:00
|
|
|
self._start_processing()
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
def on_stop(self) -> None:
|
2016-04-06 10:42:15 -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-06 10:42:15 -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-08 11:49:39 -04:00
|
|
|
return
|
2016-04-14 06:26:15 -04:00
|
|
|
|
2018-10-22 11:12:11 -04:00
|
|
|
run_as_background_process("httppush.process", self._process)
|
|
|
|
|
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
|
|
|
# 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 06:33:50 -04:00
|
|
|
try:
|
2020-07-27 12:21:34 -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-07 12:31:08 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def _unsafe_process(self) -> None:
|
2016-04-08 09:02:38 -04: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.
|
|
|
|
"""
|
2020-12-15 10:41:34 -05:00
|
|
|
unprocessed = (
|
|
|
|
await self.store.get_unread_push_actions_for_user_in_range_for_http(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.user_id, self.last_stream_ordering, self.max_stream_ordering
|
2021-02-16 17:32:34 -05:00
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
)
|
|
|
|
|
2018-01-22 13:14:10 -05:00
|
|
|
logger.info(
|
2018-01-22 15:15:42 -05:00
|
|
|
"Processing %i unprocessed push actions for %s starting at "
|
|
|
|
"stream_ordering %s",
|
2018-01-24 16:06:54 -05:00
|
|
|
len(unprocessed),
|
|
|
|
self.name,
|
|
|
|
self.last_stream_ordering,
|
2018-01-22 13:14:10 -05:00
|
|
|
)
|
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
for push_action in unprocessed:
|
2019-09-09 05:13:14 -04:00
|
|
|
with opentracing.start_active_span(
|
|
|
|
"http-push",
|
|
|
|
tags={
|
|
|
|
"authenticated_entity": self.user_id,
|
2021-12-21 08:25:34 -05:00
|
|
|
"event_id": push_action.event_id,
|
2019-09-09 05:13:14 -04:00
|
|
|
"app_id": self.app_id,
|
|
|
|
"app_display_name": self.app_display_name,
|
|
|
|
},
|
|
|
|
):
|
2020-07-27 12:21:34 -04:00
|
|
|
processed = await self._process_one(push_action)
|
2019-09-09 05:13:14 -04:00
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
if processed:
|
2018-01-22 13:14:10 -05:00
|
|
|
http_push_processed_counter.inc()
|
2016-04-06 10:42:15 -04:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2021-12-21 08:25:34 -05:00
|
|
|
self.last_stream_ordering = push_action.stream_ordering
|
2020-07-27 12:21:34 -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.pushkey,
|
|
|
|
self.user_id,
|
|
|
|
self.last_stream_ordering,
|
|
|
|
self.clock.time_msec(),
|
2021-02-16 17:32:34 -05:00
|
|
|
)
|
2016-04-06 10:42:15 -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()
|
|
|
|
return
|
|
|
|
|
2016-04-07 10:39:53 -04:00
|
|
|
if self.failing_since:
|
|
|
|
self.failing_since = None
|
2020-07-27 12:21:34 -04:00
|
|
|
await self.store.update_pusher_failing_since(
|
2016-04-07 10:39:53 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
else:
|
2018-01-22 13:14:10 -05:00
|
|
|
http_push_failed_counter.inc()
|
2016-04-07 10:39:53 -04:00
|
|
|
if not self.failing_since:
|
|
|
|
self.failing_since = self.clock.time_msec()
|
2020-07-27 12:21:34 -04:00
|
|
|
await self.store.update_pusher_failing_since(
|
2016-04-07 10:39:53 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
|
|
|
if (
|
2016-04-07 10:39:53 -04:00
|
|
|
self.failing_since
|
2016-04-06 10:42:15 -04:00
|
|
|
and self.failing_since
|
2016-04-07 10:39:53 -04:00
|
|
|
< self.clock.time_msec() - HttpPusher.GIVE_UP_AFTER_MS
|
2016-04-06 10:42:15 -04: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 06:23:24 -04:00
|
|
|
logger.warning(
|
2019-11-21 07:00:14 -05:00
|
|
|
"Giving up on a notification to user %s, pushkey %s",
|
2016-04-06 10:42:15 -04:00
|
|
|
self.user_id,
|
|
|
|
self.pushkey,
|
|
|
|
)
|
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2021-12-21 08:25:34 -05:00
|
|
|
self.last_stream_ordering = push_action.stream_ordering
|
2020-12-07 09:59:38 -05:00
|
|
|
await self.store.update_pusher_last_stream_ordering(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.app_id,
|
|
|
|
self.pushkey,
|
|
|
|
self.user_id,
|
|
|
|
self.last_stream_ordering,
|
|
|
|
)
|
|
|
|
|
|
|
|
self.failing_since = None
|
2020-07-27 12:21:34 -04:00
|
|
|
await self.store.update_pusher_failing_since(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
logger.info("Push failed: delaying for %ds", self.backoff_delay)
|
2018-06-25 09:08:28 -04:00
|
|
|
self.timed_call = self.hs.get_reactor().callLater(
|
|
|
|
self.backoff_delay, self.on_timer
|
|
|
|
)
|
2016-04-07 10:39:53 -04:00
|
|
|
self.backoff_delay = min(
|
|
|
|
self.backoff_delay * 2, self.MAX_BACKOFF_SEC
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
break
|
|
|
|
|
2021-11-30 06:49:20 -05:00
|
|
|
async def _process_one(self, push_action: HttpPushAction) -> bool:
|
2021-12-21 08:25:34 -05:00
|
|
|
if "notify" not in push_action.actions:
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2015-01-15 11:56:18 -05:00
|
|
|
|
2022-09-29 11:12:09 -04:00
|
|
|
tweaks = tweaks_for_actions(push_action.actions)
|
2020-11-30 13:43:54 -05:00
|
|
|
badge = await push_tools.get_badge_count(
|
2022-02-23 06:04:02 -05:00
|
|
|
self.hs.get_datastores().main,
|
2020-11-30 13:43:54 -05:00
|
|
|
self.user_id,
|
|
|
|
group_by_room=self._group_unread_count_by_room,
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2021-12-21 08:25:34 -05:00
|
|
|
event = await self.store.get_event(push_action.event_id, allow_none=True)
|
2016-04-06 10:42:15 -04:00
|
|
|
if event is None:
|
2019-07-23 09:00:55 -04:00
|
|
|
return True # It's been redacted
|
2020-07-27 12:21:34 -04:00
|
|
|
rejected = await self.dispatch_push(event, tweaks, badge)
|
2016-04-06 10:42:15 -04:00
|
|
|
if rejected is False:
|
2019-07-23 09:00:55 -04:00
|
|
|
return False
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2021-03-22 11:18:13 -04:00
|
|
|
if isinstance(rejected, (list, tuple)):
|
2016-04-06 10:42:15 -04: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 06:23:24 -04:00
|
|
|
logger.warning(
|
2019-11-21 07:00:14 -05:00
|
|
|
("Ignoring rejected pushkey %s because we didn't send it"),
|
|
|
|
pk,
|
2016-04-06 10:42:15 -04:00
|
|
|
)
|
|
|
|
else:
|
|
|
|
logger.info("Pushkey %s was rejected: removing", pk)
|
2021-02-22 16:14:42 -05:00
|
|
|
await self._pusherpool.remove_pusher(self.app_id, pk, self.user_id)
|
2019-07-23 09:00:55 -04:00
|
|
|
return True
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def _build_notification_dict(
|
|
|
|
self, event: EventBase, tweaks: Dict[str, bool], badge: int
|
|
|
|
) -> Dict[str, Any]:
|
2020-07-01 12:02:31 -04: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 11:25:30 -05:00
|
|
|
# This was checked in the __init__, but mypy doesn't seem to know that.
|
|
|
|
assert self.data is not None
|
2017-09-18 10:50:26 -04:00
|
|
|
if self.data.get("format") == "event_id_only":
|
2022-02-18 10:57:26 -05:00
|
|
|
d: Dict[str, Any] = {
|
2017-09-18 10:39:39 -04:00
|
|
|
"notification": {
|
|
|
|
"event_id": event.event_id,
|
2017-09-18 10:58:38 -04:00
|
|
|
"room_id": event.room_id,
|
2017-09-18 10:39:39 -04:00
|
|
|
"counts": {"unread": badge},
|
2020-07-01 12:02:31 -04:00
|
|
|
"prio": priority,
|
2017-09-18 10:39:39 -04:00
|
|
|
"devices": [
|
|
|
|
{
|
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
2020-05-15 14:17:06 -04:00
|
|
|
"pushkey_ts": int(self.pushkey_ts / 1000),
|
2017-09-18 10:39:39 -04:00
|
|
|
"data": self.data_minus_url,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
2019-07-23 09:00:55 -04:00
|
|
|
return d
|
2017-09-18 10:39:39 -04:00
|
|
|
|
2022-05-31 08:17:50 -04:00
|
|
|
ctx = await push_tools.get_context_for_event(
|
|
|
|
self._storage_controllers, event, self.user_id
|
|
|
|
)
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2015-01-15 11:56:18 -05:00
|
|
|
d = {
|
2014-12-03 08:37:02 -05:00
|
|
|
"notification": {
|
2016-04-07 10:39:53 -04:00
|
|
|
"id": event.event_id, # deprecated: remove soon
|
|
|
|
"event_id": event.event_id,
|
2016-04-06 10:42:15 -04:00
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"sender": event.user_id,
|
2020-07-01 12:02:31 -04:00
|
|
|
"prio": priority,
|
|
|
|
"counts": {
|
2016-01-13 13:55:57 -05:00
|
|
|
"unread": badge,
|
2015-01-29 11:10:35 -05:00
|
|
|
# 'missed_calls': 2
|
2015-01-28 06:55:49 -05:00
|
|
|
},
|
2014-12-18 09:49:22 -05:00
|
|
|
"devices": [
|
|
|
|
{
|
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
2020-05-15 14:17:06 -04:00
|
|
|
"pushkey_ts": int(self.pushkey_ts / 1000),
|
2015-01-23 12:07:06 -05:00
|
|
|
"data": self.data_minus_url,
|
|
|
|
"tweaks": tweaks,
|
2014-12-18 09:49:22 -05:00
|
|
|
}
|
|
|
|
],
|
2014-12-03 08:37:02 -05:00
|
|
|
}
|
2014-11-21 07:21:00 -05:00
|
|
|
}
|
2018-11-02 09:44:12 -04:00
|
|
|
if event.type == "m.room.member" and event.is_state():
|
2016-04-06 10:42:15 -04:00
|
|
|
d["notification"]["membership"] = event.content["membership"]
|
|
|
|
d["notification"]["user_is_target"] = event.state_key == self.user_id
|
2021-09-15 08:34:52 -04:00
|
|
|
if self.hs.config.push.push_include_content and event.content:
|
2016-04-06 10:42:15 -04:00
|
|
|
d["notification"]["content"] = event.content
|
2014-11-19 13:20:59 -05:00
|
|
|
|
2016-06-24 06:41:11 -04:00
|
|
|
# We no longer send aliases separately, instead, we send the human
|
|
|
|
# readable name of the room, which may be an alias.
|
2015-01-31 07:48:06 -05:00
|
|
|
if "sender_display_name" in ctx and len(ctx["sender_display_name"]) > 0:
|
2015-01-29 13:51:22 -05:00
|
|
|
d["notification"]["sender_display_name"] = ctx["sender_display_name"]
|
2015-01-31 07:48:06 -05:00
|
|
|
if "name" in ctx and len(ctx["name"]) > 0:
|
2015-01-26 12:27:28 -05:00
|
|
|
d["notification"]["room_name"] = ctx["name"]
|
2015-01-15 11:56:18 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return d
|
2015-01-15 11:56:18 -05:00
|
|
|
|
2020-12-07 09:59:38 -05:00
|
|
|
async def dispatch_push(
|
|
|
|
self, event: EventBase, tweaks: Dict[str, bool], badge: int
|
|
|
|
) -> Union[bool, Iterable[str]]:
|
2020-07-27 12:21:34 -04:00
|
|
|
notification_dict = await self._build_notification_dict(event, tweaks, badge)
|
2014-12-03 08:37:02 -05:00
|
|
|
if not notification_dict:
|
2019-07-23 09:00:55 -04:00
|
|
|
return []
|
2014-11-21 07:21:00 -05:00
|
|
|
try:
|
2020-07-27 12:21:34 -04:00
|
|
|
resp = await self.http_client.post_json_get_json(
|
2015-12-02 06:36:02 -05:00
|
|
|
self.url, notification_dict
|
|
|
|
)
|
2019-02-20 06:36:50 -05:00
|
|
|
except Exception as e:
|
|
|
|
logger.warning(
|
|
|
|
"Failed to push event %s to %s: %s %s",
|
|
|
|
event.event_id,
|
|
|
|
self.name,
|
|
|
|
type(e),
|
|
|
|
e,
|
2018-01-29 10:49:06 -05:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return False
|
2015-01-13 14:48:37 -05:00
|
|
|
rejected = []
|
|
|
|
if "rejected" in resp:
|
|
|
|
rejected = resp["rejected"]
|
2022-05-17 06:03:07 -04:00
|
|
|
if not rejected:
|
2022-02-17 05:23:54 -05:00
|
|
|
self.badge_count_last_call = badge
|
2019-07-23 09:00:55 -04:00
|
|
|
return rejected
|
2015-01-28 06:55:49 -05:00
|
|
|
|
2021-10-11 12:42:10 -04:00
|
|
|
async def _send_badge(self, badge: int) -> None:
|
2019-02-22 05:57:15 -05:00
|
|
|
"""
|
|
|
|
Args:
|
2021-10-11 12:42:10 -04:00
|
|
|
badge: number of unread messages
|
2019-02-22 05:57:15 -05:00
|
|
|
"""
|
2020-02-06 08:31:05 -05:00
|
|
|
logger.debug("Sending updated badge count %d to %s", badge, self.name)
|
2015-01-28 06:55:49 -05:00
|
|
|
d = {
|
|
|
|
"notification": {
|
|
|
|
"id": "",
|
|
|
|
"type": None,
|
2015-01-29 13:51:22 -05:00
|
|
|
"sender": "",
|
2016-01-13 13:55:57 -05:00
|
|
|
"counts": {"unread": badge},
|
2015-01-28 06:55:49 -05:00
|
|
|
"devices": [
|
|
|
|
{
|
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
2020-05-15 14:17:06 -04:00
|
|
|
"pushkey_ts": int(self.pushkey_ts / 1000),
|
2015-01-28 06:55:49 -05:00
|
|
|
"data": self.data_minus_url,
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try:
|
2020-07-27 12:21:34 -04:00
|
|
|
await self.http_client.post_json_get_json(self.url, d)
|
2019-02-22 05:57:15 -05:00
|
|
|
http_badges_processed_counter.inc()
|
2019-02-20 06:36:50 -05:00
|
|
|
except Exception as e:
|
|
|
|
logger.warning(
|
|
|
|
"Failed to send badge count to %s: %s %s", self.name, type(e), e
|
2018-01-29 10:49:06 -05:00
|
|
|
)
|
2019-02-22 05:57:15 -05:00
|
|
|
http_badges_failed_counter.inc()
|