2014-11-19 13:20:59 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
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
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2018-09-13 13:11:11 -04:00
|
|
|
import six
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from prometheus_client import Counter
|
|
|
|
|
2018-06-25 09:08:28 -04:00
|
|
|
from twisted.internet import defer
|
2016-07-31 10:30:13 -04:00
|
|
|
from twisted.internet.error import AlreadyCalled, AlreadyCancelled
|
2014-11-19 13:20:59 -05:00
|
|
|
|
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
|
2018-01-22 13:14:10 -05:00
|
|
|
from synapse.push import PusherConfigException
|
2016-04-07 12:12:29 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from . import push_rule_evaluator, push_tools
|
2014-11-19 13:20:59 -05:00
|
|
|
|
2018-09-13 13:11:11 -04:00
|
|
|
if six.PY3:
|
|
|
|
long = int
|
|
|
|
|
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
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
class HttpPusher(object):
|
|
|
|
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
|
|
|
|
|
|
|
|
def __init__(self, hs, pusherdict):
|
|
|
|
self.hs = hs
|
|
|
|
self.store = self.hs.get_datastore()
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage = self.hs.get_storage()
|
2016-04-06 10:42:15 -04:00
|
|
|
self.clock = self.hs.get_clock()
|
2016-06-24 06:41:11 -04:00
|
|
|
self.state_handler = self.hs.get_state_handler()
|
2019-06-20 05:32:02 -04:00
|
|
|
self.user_id = pusherdict["user_name"]
|
|
|
|
self.app_id = pusherdict["app_id"]
|
|
|
|
self.app_display_name = pusherdict["app_display_name"]
|
|
|
|
self.device_display_name = pusherdict["device_display_name"]
|
|
|
|
self.pushkey = pusherdict["pushkey"]
|
|
|
|
self.pushkey_ts = pusherdict["ts"]
|
|
|
|
self.data = pusherdict["data"]
|
|
|
|
self.last_stream_ordering = pusherdict["last_stream_ordering"]
|
2016-04-06 10:42:15 -04:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2019-06-20 05:32:02 -04:00
|
|
|
self.failing_since = pusherdict["failing_since"]
|
2016-04-06 10:42:15 -04:00
|
|
|
self.timed_call = None
|
2018-10-24 04:23:33 -04:00
|
|
|
self._is_processing = False
|
2016-04-06 10:42:15 -04: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
|
|
|
|
# because of potential out-of-order event serialisation. This starts
|
|
|
|
# off as None though as we don't know any better.
|
|
|
|
self.max_stream_ordering = None
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if "data" not in pusherdict:
|
|
|
|
raise PusherConfigException("No 'data' key for HTTP pusher")
|
|
|
|
self.data = pusherdict["data"]
|
2016-04-06 10:42:15 -04:00
|
|
|
|
|
|
|
self.name = "%s/%s/%s" % (
|
2019-06-20 05:32:02 -04:00
|
|
|
pusherdict["user_name"],
|
|
|
|
pusherdict["app_id"],
|
|
|
|
pusherdict["pushkey"],
|
2014-12-03 08:37:02 -05:00
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2019-02-22 09:47:48 -05:00
|
|
|
if self.data is None:
|
2019-06-20 05:32:02 -04:00
|
|
|
raise PusherConfigException("data can not be null for HTTP pusher")
|
2019-02-22 09:47:48 -05:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if "url" not in self.data:
|
|
|
|
raise PusherConfigException("'url' required in data for HTTP pusher")
|
|
|
|
self.url = self.data["url"]
|
2019-11-01 10:07:44 -04:00
|
|
|
self.http_client = hs.get_proxied_http_client()
|
2014-11-21 07:21:00 -05:00
|
|
|
self.data_minus_url = {}
|
|
|
|
self.data_minus_url.update(self.data)
|
2019-06-20 05:32:02 -04:00
|
|
|
del self.data_minus_url["url"]
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2019-04-02 11:45:33 -04:00
|
|
|
def on_started(self, should_check_for_notifs):
|
|
|
|
"""Called when this pusher has been started.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
should_check_for_notifs (bool): Whether we should immediately
|
|
|
|
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
|
|
|
|
|
|
|
def on_new_notifications(self, min_stream_ordering, max_stream_ordering):
|
2019-06-20 05:32:02 -04:00
|
|
|
self.max_stream_ordering = max(
|
|
|
|
max_stream_ordering, self.max_stream_ordering or 0
|
|
|
|
)
|
2018-10-22 11:12:11 -04:00
|
|
|
self._start_processing()
|
2016-04-07 10:39:53 -04:00
|
|
|
|
|
|
|
def on_new_receipts(self, min_stream_id, max_stream_id):
|
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
|
|
|
|
2016-04-07 10:39:53 -04:00
|
|
|
@defer.inlineCallbacks
|
2018-10-22 11:12:11 -04:00
|
|
|
def _update_badge(self):
|
|
|
|
badge = yield push_tools.get_badge_count(self.hs.get_datastore(), self.user_id)
|
|
|
|
yield self._send_badge(badge)
|
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
def on_timer(self):
|
2018-10-22 11:12:11 -04:00
|
|
|
self._start_processing()
|
2016-04-06 10:42:15 -04:00
|
|
|
|
|
|
|
def on_stop(self):
|
|
|
|
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
|
|
|
|
2018-10-22 11:12:11 -04:00
|
|
|
def _start_processing(self):
|
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)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _process(self):
|
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:
|
2018-10-22 11:12:11 -04:00
|
|
|
yield self._unsafe_process()
|
|
|
|
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
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _unsafe_process(self):
|
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.
|
|
|
|
"""
|
2016-04-11 07:48:30 -04:00
|
|
|
|
2016-07-28 15:24:24 -04:00
|
|
|
fn = self.store.get_unread_push_actions_for_user_in_range_for_http
|
|
|
|
unprocessed = yield fn(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.user_id, self.last_stream_ordering, self.max_stream_ordering
|
|
|
|
)
|
|
|
|
|
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",
|
2019-06-20 05:32:02 -04: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,
|
|
|
|
"event_id": push_action["event_id"],
|
|
|
|
"app_id": self.app_id,
|
|
|
|
"app_display_name": self.app_display_name,
|
|
|
|
},
|
|
|
|
):
|
|
|
|
processed = yield self._process_one(push_action)
|
|
|
|
|
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
|
2019-06-20 05:32:02 -04:00
|
|
|
self.last_stream_ordering = push_action["stream_ordering"]
|
2019-10-31 11:43:24 -04:00
|
|
|
pusher_still_exists = yield 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 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
|
|
|
|
yield self.store.update_pusher_failing_since(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
2016-04-07 10:39:53 -04:00
|
|
|
)
|
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()
|
|
|
|
yield self.store.update_pusher_failing_since(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
2016-04-07 10:39:53 -04:00
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
|
|
|
if (
|
2019-06-20 05:32:02 -04:00
|
|
|
self.failing_since
|
|
|
|
and self.failing_since
|
|
|
|
< 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",
|
2019-06-20 05:32:02 -04:00
|
|
|
self.user_id,
|
|
|
|
self.pushkey,
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
2019-06-20 05:32:02 -04:00
|
|
|
self.last_stream_ordering = push_action["stream_ordering"]
|
2019-08-01 08:41:27 -04:00
|
|
|
pusher_still_exists = yield self.store.update_pusher_last_stream_ordering(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.app_id,
|
|
|
|
self.pushkey,
|
|
|
|
self.user_id,
|
2019-06-20 05:32:02 -04:00
|
|
|
self.last_stream_ordering,
|
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-06 10:42:15 -04:00
|
|
|
|
|
|
|
self.failing_since = None
|
|
|
|
yield self.store.update_pusher_failing_since(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id, self.failing_since
|
2016-04-06 10:42:15 -04:00
|
|
|
)
|
|
|
|
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
|
|
|
|
)
|
2019-06-20 05:32:02 -04:00
|
|
|
self.backoff_delay = min(
|
|
|
|
self.backoff_delay * 2, self.MAX_BACKOFF_SEC
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
break
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _process_one(self, push_action):
|
2019-06-20 05:32:02 -04: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
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
tweaks = push_rule_evaluator.tweaks_for_actions(push_action["actions"])
|
2016-04-07 12:37:19 -04:00
|
|
|
badge = yield push_tools.get_badge_count(self.hs.get_datastore(), self.user_id)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
event = yield 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
|
2016-04-06 10:42:15 -04:00
|
|
|
rejected = yield self.dispatch_push(event, tweaks, badge)
|
|
|
|
if rejected is False:
|
2019-07-23 09:00:55 -04:00
|
|
|
return False
|
2016-04-06 10:42:15 -04:00
|
|
|
|
|
|
|
if isinstance(rejected, list) or isinstance(rejected, tuple):
|
|
|
|
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:
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.info("Pushkey %s was rejected: removing", pk)
|
|
|
|
yield self.hs.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
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _build_notification_dict(self, event, tweaks, badge):
|
2019-06-20 05:32:02 -04:00
|
|
|
if self.data.get("format") == "event_id_only":
|
2017-09-18 10:39:39 -04:00
|
|
|
d = {
|
2019-06-20 05:32:02 -04:00
|
|
|
"notification": {
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"counts": {"unread": badge},
|
|
|
|
"devices": [
|
2017-09-18 10:39:39 -04:00
|
|
|
{
|
2019-06-20 05:32:02 -04:00
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
|
|
|
"pushkey_ts": long(self.pushkey_ts / 1000),
|
|
|
|
"data": self.data_minus_url,
|
2017-09-18 10:39:39 -04:00
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
],
|
2017-09-18 10:39:39 -04:00
|
|
|
}
|
|
|
|
}
|
2019-07-23 09:00:55 -04:00
|
|
|
return d
|
2017-09-18 10:39:39 -04:00
|
|
|
|
2016-06-24 06:41:11 -04:00
|
|
|
ctx = yield push_tools.get_context_for_event(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, self.state_handler, event, self.user_id
|
2016-06-24 06:41:11 -04:00
|
|
|
)
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2015-01-15 11:56:18 -05:00
|
|
|
d = {
|
2019-06-20 05:32:02 -04:00
|
|
|
"notification": {
|
|
|
|
"id": event.event_id, # deprecated: remove soon
|
|
|
|
"event_id": event.event_id,
|
|
|
|
"room_id": event.room_id,
|
|
|
|
"type": event.type,
|
|
|
|
"sender": event.user_id,
|
|
|
|
"counts": { # -- we don't mark messages as read yet so
|
|
|
|
# we have no way of knowing
|
2015-01-28 06:55:49 -05:00
|
|
|
# Just set the badge to 1 until we have read receipts
|
2019-06-20 05:32:02 -04:00
|
|
|
"unread": badge,
|
2015-01-29 11:10:35 -05:00
|
|
|
# 'missed_calls': 2
|
2015-01-28 06:55:49 -05:00
|
|
|
},
|
2019-06-20 05:32:02 -04:00
|
|
|
"devices": [
|
2014-12-18 09:49:22 -05:00
|
|
|
{
|
2019-06-20 05:32:02 -04:00
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
|
|
|
"pushkey_ts": long(self.pushkey_ts / 1000),
|
|
|
|
"data": self.data_minus_url,
|
|
|
|
"tweaks": tweaks,
|
2014-12-18 09:49:22 -05:00
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
],
|
2014-12-03 08:37:02 -05:00
|
|
|
}
|
2014-11-21 07:21:00 -05:00
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
if event.type == "m.room.member" and event.is_state():
|
|
|
|
d["notification"]["membership"] = event.content["membership"]
|
|
|
|
d["notification"]["user_is_target"] = event.state_key == self.user_id
|
2018-11-02 09:44:12 -04:00
|
|
|
if self.hs.config.push_include_content and event.content:
|
2019-06-20 05:32:02 -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.
|
2019-06-20 05:32:02 -04:00
|
|
|
if "sender_display_name" in ctx and len(ctx["sender_display_name"]) > 0:
|
|
|
|
d["notification"]["sender_display_name"] = ctx["sender_display_name"]
|
|
|
|
if "name" in ctx and len(ctx["name"]) > 0:
|
|
|
|
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
|
|
|
|
2014-11-21 07:21:00 -05:00
|
|
|
@defer.inlineCallbacks
|
2016-01-13 13:55:57 -05:00
|
|
|
def dispatch_push(self, event, tweaks, badge):
|
|
|
|
notification_dict = yield 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:
|
2019-06-20 05:32:02 -04:00
|
|
|
resp = yield self.http_client.post_json_get_json(
|
|
|
|
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",
|
2019-06-20 05:32:02 -04:00
|
|
|
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 = []
|
2019-06-20 05:32:02 -04:00
|
|
|
if "rejected" in resp:
|
|
|
|
rejected = resp["rejected"]
|
2019-07-23 09:00:55 -04:00
|
|
|
return rejected
|
2015-01-28 06:55:49 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-14 06:37:50 -04:00
|
|
|
def _send_badge(self, badge):
|
2019-02-22 05:57:15 -05:00
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
badge (int): number of unread messages
|
|
|
|
"""
|
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 = {
|
2019-06-20 05:32:02 -04:00
|
|
|
"notification": {
|
|
|
|
"id": "",
|
|
|
|
"type": None,
|
|
|
|
"sender": "",
|
|
|
|
"counts": {"unread": badge},
|
|
|
|
"devices": [
|
2015-01-28 06:55:49 -05:00
|
|
|
{
|
2019-06-20 05:32:02 -04:00
|
|
|
"app_id": self.app_id,
|
|
|
|
"pushkey": self.pushkey,
|
|
|
|
"pushkey_ts": long(self.pushkey_ts / 1000),
|
|
|
|
"data": self.data_minus_url,
|
2015-01-28 06:55:49 -05:00
|
|
|
}
|
2019-06-20 05:32:02 -04:00
|
|
|
],
|
2015-01-28 06:55:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
try:
|
2019-02-22 05:57:15 -05:00
|
|
|
yield self.http_client.post_json_get_json(self.url, d)
|
|
|
|
http_badges_processed_counter.inc()
|
2019-02-20 06:36:50 -05:00
|
|
|
except Exception as e:
|
|
|
|
logger.warning(
|
2019-06-20 05:32:02 -04:00
|
|
|
"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()
|