2016-09-06 13:16:20 -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.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2019-08-22 13:21:10 -04:00
|
|
|
from canonicaljson import json
|
|
|
|
|
2016-09-06 13:16:20 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2018-01-16 13:25:28 -05:00
|
|
|
from synapse.api.errors import SynapseError
|
2019-08-22 13:21:10 -04:00
|
|
|
from synapse.logging.opentracing import (
|
|
|
|
get_active_span_text_map,
|
2019-09-03 05:21:30 -04:00
|
|
|
log_kv,
|
2019-08-22 13:21:10 -04:00
|
|
|
set_tag,
|
|
|
|
start_active_span,
|
|
|
|
)
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.types import UserID, get_domain_from_id
|
2016-09-06 13:16:20 -04:00
|
|
|
from synapse.util.stringutils import random_string
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceMessageHandler(object):
|
|
|
|
def __init__(self, hs):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
hs (synapse.server.HomeServer): server
|
|
|
|
"""
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.notifier = hs.get_notifier()
|
2018-01-16 13:25:28 -05:00
|
|
|
self.is_mine = hs.is_mine
|
2016-11-16 09:28:03 -05:00
|
|
|
self.federation = hs.get_federation_sender()
|
2016-09-06 13:16:20 -04:00
|
|
|
|
2018-03-12 12:17:08 -04:00
|
|
|
hs.get_federation_registry().register_edu_handler(
|
2016-09-06 13:16:20 -04:00
|
|
|
"m.direct_to_device", self.on_direct_to_device_edu
|
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_direct_to_device_edu(self, origin, content):
|
|
|
|
local_messages = {}
|
|
|
|
sender_user_id = content["sender"]
|
|
|
|
if origin != get_domain_from_id(sender_user_id):
|
|
|
|
logger.warn(
|
|
|
|
"Dropping device message from %r with spoofed sender %r",
|
2019-06-20 05:32:02 -04:00
|
|
|
origin,
|
|
|
|
sender_user_id,
|
2016-09-06 13:16:20 -04:00
|
|
|
)
|
|
|
|
message_type = content["type"]
|
|
|
|
message_id = content["message_id"]
|
|
|
|
for user_id, by_device in content["messages"].items():
|
2018-01-16 13:25:28 -05:00
|
|
|
# we use UserID.from_string to catch invalid user ids
|
|
|
|
if not self.is_mine(UserID.from_string(user_id)):
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.warning("Request for keys for non-local user %s", user_id)
|
2018-01-16 13:25:28 -05:00
|
|
|
raise SynapseError(400, "Not a user here")
|
|
|
|
|
2016-09-06 13:16:20 -04:00
|
|
|
messages_by_device = {
|
|
|
|
device_id: {
|
|
|
|
"content": message_content,
|
|
|
|
"type": message_type,
|
|
|
|
"sender": sender_user_id,
|
|
|
|
}
|
|
|
|
for device_id, message_content in by_device.items()
|
|
|
|
}
|
|
|
|
if messages_by_device:
|
|
|
|
local_messages[user_id] = messages_by_device
|
|
|
|
|
|
|
|
stream_id = yield self.store.add_messages_from_remote_to_device_inbox(
|
|
|
|
origin, message_id, local_messages
|
|
|
|
)
|
|
|
|
|
|
|
|
self.notifier.on_new_event(
|
|
|
|
"to_device_key", stream_id, users=local_messages.keys()
|
|
|
|
)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def send_device_message(self, sender_user_id, message_type, messages):
|
2019-09-03 05:21:30 -04:00
|
|
|
set_tag("number_of_messages", len(messages))
|
|
|
|
set_tag("sender", sender_user_id)
|
2016-09-06 13:16:20 -04:00
|
|
|
local_messages = {}
|
|
|
|
remote_messages = {}
|
|
|
|
for user_id, by_device in messages.items():
|
2018-01-16 13:25:28 -05:00
|
|
|
# we use UserID.from_string to catch invalid user ids
|
|
|
|
if self.is_mine(UserID.from_string(user_id)):
|
2016-09-06 13:16:20 -04:00
|
|
|
messages_by_device = {
|
|
|
|
device_id: {
|
|
|
|
"content": message_content,
|
|
|
|
"type": message_type,
|
|
|
|
"sender": sender_user_id,
|
|
|
|
}
|
|
|
|
for device_id, message_content in by_device.items()
|
|
|
|
}
|
|
|
|
if messages_by_device:
|
|
|
|
local_messages[user_id] = messages_by_device
|
|
|
|
else:
|
|
|
|
destination = get_domain_from_id(user_id)
|
|
|
|
remote_messages.setdefault(destination, {})[user_id] = by_device
|
|
|
|
|
|
|
|
message_id = random_string(16)
|
|
|
|
|
2019-08-22 13:21:10 -04:00
|
|
|
context = get_active_span_text_map()
|
|
|
|
|
2016-09-06 13:16:20 -04:00
|
|
|
remote_edu_contents = {}
|
|
|
|
for destination, messages in remote_messages.items():
|
2019-08-22 13:21:10 -04:00
|
|
|
with start_active_span("to_device_for_user"):
|
|
|
|
set_tag("destination", destination)
|
|
|
|
remote_edu_contents[destination] = {
|
|
|
|
"messages": messages,
|
|
|
|
"sender": sender_user_id,
|
|
|
|
"type": message_type,
|
|
|
|
"message_id": message_id,
|
2019-09-05 09:41:04 -04:00
|
|
|
"org.matrix.opentracing_context": json.dumps(context),
|
2019-08-22 13:21:10 -04:00
|
|
|
}
|
2016-09-06 13:16:20 -04:00
|
|
|
|
2019-09-03 05:21:30 -04:00
|
|
|
log_kv({"local_messages": local_messages})
|
2016-09-06 13:16:20 -04:00
|
|
|
stream_id = yield self.store.add_messages_to_device_inbox(
|
|
|
|
local_messages, remote_edu_contents
|
|
|
|
)
|
|
|
|
|
|
|
|
self.notifier.on_new_event(
|
|
|
|
"to_device_key", stream_id, users=local_messages.keys()
|
|
|
|
)
|
|
|
|
|
2019-09-03 05:21:30 -04:00
|
|
|
log_kv({"remote_messages": remote_messages})
|
2016-09-06 13:16:20 -04:00
|
|
|
for destination in remote_messages.keys():
|
2016-09-07 11:10:51 -04:00
|
|
|
# Enqueue a new federation transaction to send the new
|
|
|
|
# device messages to each remote destination.
|
|
|
|
self.federation.send_device_messages(destination)
|