2014-11-19 13:20:59 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
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.
|
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
from synapse.push import PusherConfigException
|
2014-11-21 07:21:00 -05:00
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
from twisted.internet import defer, reactor
|
2016-07-31 10:30:13 -04:00
|
|
|
from twisted.internet.error import AlreadyCalled, AlreadyCancelled
|
2014-11-19 13:20:59 -05:00
|
|
|
|
|
|
|
import logging
|
2016-04-06 10:42:15 -04:00
|
|
|
import push_rule_evaluator
|
|
|
|
import push_tools
|
2014-11-19 13:20:59 -05:00
|
|
|
|
2016-04-14 06:33:50 -04:00
|
|
|
from synapse.util.logcontext import LoggingContext
|
2016-04-07 12:12:29 -04:00
|
|
|
from synapse.util.metrics import Measure
|
|
|
|
|
2014-11-19 13:20:59 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
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()
|
|
|
|
self.clock = self.hs.get_clock()
|
2016-06-24 06:41:11 -04:00
|
|
|
self.state_handler = self.hs.get_state_handler()
|
2016-04-06 10:42:15 -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']
|
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
|
|
|
self.failing_since = pusherdict['failing_since']
|
|
|
|
self.timed_call = None
|
2016-04-07 12:31:08 -04:00
|
|
|
self.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
|
|
|
|
|
|
|
|
if 'data' not in pusherdict:
|
|
|
|
raise PusherConfigException(
|
|
|
|
"No 'data' key for HTTP pusher"
|
|
|
|
)
|
|
|
|
self.data = pusherdict['data']
|
|
|
|
|
|
|
|
self.name = "%s/%s/%s" % (
|
|
|
|
pusherdict['user_name'],
|
|
|
|
pusherdict['app_id'],
|
|
|
|
pusherdict['pushkey'],
|
2014-12-03 08:37:02 -05:00
|
|
|
)
|
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"
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
self.url = self.data['url']
|
|
|
|
self.http_client = hs.get_simple_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']
|
|
|
|
|
2016-04-07 10:39:53 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-04-06 10:42:15 -04:00
|
|
|
def on_started(self):
|
2016-04-07 10:39:53 -04:00
|
|
|
yield self._process()
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2016-04-07 10:39:53 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-04-06 10:42:15 -04:00
|
|
|
def on_new_notifications(self, min_stream_ordering, max_stream_ordering):
|
2016-04-14 06:33:50 -04:00
|
|
|
self.max_stream_ordering = max(max_stream_ordering, self.max_stream_ordering)
|
|
|
|
yield self._process()
|
2016-04-07 10:39:53 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
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...
|
2016-04-14 06:54:14 -04:00
|
|
|
with LoggingContext("push.on_new_receipts"):
|
2016-04-14 06:33:50 -04:00
|
|
|
with Measure(self.clock, "push.on_new_receipts"):
|
|
|
|
badge = yield push_tools.get_badge_count(
|
|
|
|
self.hs.get_datastore(), self.user_id
|
|
|
|
)
|
2016-04-14 06:37:50 -04:00
|
|
|
yield self._send_badge(badge)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
2016-04-07 10:39:53 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-04-06 10:42:15 -04:00
|
|
|
def on_timer(self):
|
2016-04-14 06:33:50 -04:00
|
|
|
yield self._process()
|
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
|
|
|
|
2015-01-15 11:56:18 -05:00
|
|
|
@defer.inlineCallbacks
|
2016-04-06 10:42:15 -04:00
|
|
|
def _process(self):
|
2016-04-08 11:49:39 -04:00
|
|
|
if self.processing:
|
|
|
|
return
|
2016-04-14 06:26:15 -04:00
|
|
|
|
2016-04-14 06:33:50 -04:00
|
|
|
with LoggingContext("push._process"):
|
|
|
|
with Measure(self.clock, "push._process"):
|
|
|
|
try:
|
|
|
|
self.processing = True
|
|
|
|
# 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
|
|
|
|
try:
|
|
|
|
yield self._unsafe_process()
|
|
|
|
except:
|
|
|
|
logger.exception("Exception processing notifs")
|
|
|
|
if self.max_stream_ordering == starting_max_ordering:
|
|
|
|
break
|
|
|
|
finally:
|
|
|
|
self.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
|
|
|
|
)
|
|
|
|
|
|
|
|
for push_action in unprocessed:
|
|
|
|
processed = yield self._process_one(push_action)
|
|
|
|
if processed:
|
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
|
|
|
self.last_stream_ordering = push_action['stream_ordering']
|
2016-04-14 06:56:52 -04:00
|
|
|
yield self.store.update_pusher_last_stream_ordering_and_success(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.app_id, self.pushkey, self.user_id,
|
|
|
|
self.last_stream_ordering,
|
|
|
|
self.clock.time_msec()
|
|
|
|
)
|
2016-04-07 10:39:53 -04:00
|
|
|
if self.failing_since:
|
|
|
|
self.failing_since = None
|
|
|
|
yield self.store.update_pusher_failing_since(
|
|
|
|
self.app_id, self.pushkey, self.user_id,
|
|
|
|
self.failing_since
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
else:
|
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(
|
|
|
|
self.app_id, self.pushkey, self.user_id,
|
|
|
|
self.failing_since
|
|
|
|
)
|
2016-04-06 10:42:15 -04:00
|
|
|
|
|
|
|
if (
|
|
|
|
self.failing_since 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.
|
|
|
|
logger.warn("Giving up on a notification to user %s, "
|
|
|
|
"pushkey %s",
|
|
|
|
self.user_id, self.pushkey)
|
|
|
|
self.backoff_delay = HttpPusher.INITIAL_BACKOFF_SEC
|
|
|
|
self.last_stream_ordering = push_action['stream_ordering']
|
|
|
|
yield self.store.update_pusher_last_stream_ordering(
|
|
|
|
self.app_id,
|
|
|
|
self.pushkey,
|
|
|
|
self.user_id,
|
|
|
|
self.last_stream_ordering
|
|
|
|
)
|
|
|
|
|
|
|
|
self.failing_since = None
|
|
|
|
yield self.store.update_pusher_failing_since(
|
|
|
|
self.app_id,
|
|
|
|
self.pushkey,
|
|
|
|
self.user_id,
|
|
|
|
self.failing_since
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
logger.info("Push failed: delaying for %ds", self.backoff_delay)
|
|
|
|
self.timed_call = 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
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _process_one(self, push_action):
|
|
|
|
if 'notify' not in push_action['actions']:
|
|
|
|
defer.returnValue(True)
|
2015-01-15 11:56:18 -05:00
|
|
|
|
2016-04-07 11:31:38 -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
|
|
|
|
|
|
|
event = yield self.store.get_event(push_action['event_id'], allow_none=True)
|
|
|
|
if event is None:
|
|
|
|
defer.returnValue(True) # It's been redacted
|
|
|
|
rejected = yield self.dispatch_push(event, tweaks, badge)
|
|
|
|
if rejected is False:
|
|
|
|
defer.returnValue(False)
|
|
|
|
|
|
|
|
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...
|
|
|
|
logger.warn(
|
|
|
|
("Ignoring rejected pushkey %s because we"
|
|
|
|
" didn't send it"), pk
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
logger.info(
|
|
|
|
"Pushkey %s was rejected: removing",
|
|
|
|
pk
|
|
|
|
)
|
2016-04-21 12:21:02 -04:00
|
|
|
yield self.hs.remove_pusher(
|
2016-04-06 10:42:15 -04:00
|
|
|
self.app_id, pk, self.user_id
|
|
|
|
)
|
|
|
|
defer.returnValue(True)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _build_notification_dict(self, event, tweaks, badge):
|
2016-06-24 06:41:11 -04:00
|
|
|
ctx = yield push_tools.get_context_for_event(
|
2016-08-25 13:32:15 -04:00
|
|
|
self.store, 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 = {
|
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,
|
2015-01-29 11:10:35 -05:00
|
|
|
'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
|
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,
|
2015-01-20 06:52:08 -05:00
|
|
|
'pushkey_ts': long(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
|
|
|
}
|
2016-04-06 10:42:15 -04:00
|
|
|
if event.type == 'm.room.member':
|
|
|
|
d['notification']['membership'] = event.content['membership']
|
|
|
|
d['notification']['user_is_target'] = event.state_key == self.user_id
|
2015-01-29 16:59:17 -05:00
|
|
|
if 'content' in event:
|
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
|
|
|
|
|
|
|
defer.returnValue(d)
|
|
|
|
|
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:
|
2015-01-13 14:48:37 -05:00
|
|
|
defer.returnValue([])
|
2014-11-21 07:21:00 -05:00
|
|
|
try:
|
2015-12-02 06:36:02 -05:00
|
|
|
resp = yield self.http_client.post_json_get_json(self.url, notification_dict)
|
2014-11-21 07:21:00 -05:00
|
|
|
except:
|
2015-03-06 10:32:38 -05:00
|
|
|
logger.warn("Failed to push %s ", self.url)
|
2014-11-21 07:21:00 -05:00
|
|
|
defer.returnValue(False)
|
2015-01-13 14:48:37 -05:00
|
|
|
rejected = []
|
|
|
|
if 'rejected' in resp:
|
|
|
|
rejected = resp['rejected']
|
|
|
|
defer.returnValue(rejected)
|
2015-01-28 06:55:49 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-04-14 06:37:50 -04:00
|
|
|
def _send_badge(self, badge):
|
2016-01-19 13:17:23 -05:00
|
|
|
logger.info("Sending updated badge count %d to %r", badge, self.user_id)
|
2015-01-28 06:55:49 -05:00
|
|
|
d = {
|
|
|
|
'notification': {
|
|
|
|
'id': '',
|
|
|
|
'type': None,
|
2015-01-29 13:51:22 -05:00
|
|
|
'sender': '',
|
2015-01-28 06:55:49 -05:00
|
|
|
'counts': {
|
2016-01-13 13:55:57 -05:00
|
|
|
'unread': badge
|
2015-01-28 06:55:49 -05:00
|
|
|
},
|
|
|
|
'devices': [
|
|
|
|
{
|
|
|
|
'app_id': self.app_id,
|
|
|
|
'pushkey': self.pushkey,
|
|
|
|
'pushkey_ts': long(self.pushkey_ts / 1000),
|
|
|
|
'data': self.data_minus_url,
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try:
|
2015-12-02 06:36:02 -05:00
|
|
|
resp = yield self.http_client.post_json_get_json(self.url, d)
|
2015-01-28 06:55:49 -05:00
|
|
|
except:
|
|
|
|
logger.exception("Failed to push %s ", self.url)
|
|
|
|
defer.returnValue(False)
|
|
|
|
rejected = []
|
|
|
|
if 'rejected' in resp:
|
|
|
|
rejected = resp['rejected']
|
2015-01-29 11:10:35 -05:00
|
|
|
defer.returnValue(rejected)
|