2015-02-03 15:44:16 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-02-03 15:44:16 +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-07-09 08:09:20 +02:00
|
|
|
import logging
|
2018-09-05 16:10:47 +02:00
|
|
|
|
|
|
|
from six.moves import urllib
|
2018-07-09 08:09:20 +02:00
|
|
|
|
|
|
|
from prometheus_client import Counter
|
|
|
|
|
2015-02-04 17:44:53 +01:00
|
|
|
from twisted.internet import defer
|
2015-02-03 15:44:16 +01:00
|
|
|
|
2016-08-25 19:34:47 +02:00
|
|
|
from synapse.api.constants import ThirdPartyEntityKind
|
2015-02-04 18:32:44 +01:00
|
|
|
from synapse.api.errors import CodeMessageException
|
2015-02-05 14:42:35 +01:00
|
|
|
from synapse.events.utils import serialize_event
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.http.client import SimpleHttpClient
|
2016-12-06 11:43:48 +01:00
|
|
|
from synapse.types import ThirdPartyInstanceID
|
2018-07-09 08:09:20 +02:00
|
|
|
from synapse.util.caches.response_cache import ResponseCache
|
2018-06-05 14:17:55 +02:00
|
|
|
|
2015-02-04 17:44:53 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2018-06-05 14:17:55 +02:00
|
|
|
sent_transactions_counter = Counter(
|
|
|
|
"synapse_appservice_api_sent_transactions",
|
|
|
|
"Number of /transactions/ requests sent",
|
|
|
|
["service"]
|
|
|
|
)
|
|
|
|
|
|
|
|
failed_transactions_counter = Counter(
|
|
|
|
"synapse_appservice_api_failed_transactions",
|
|
|
|
"Number of /transactions/ requests that failed to send",
|
|
|
|
["service"]
|
|
|
|
)
|
|
|
|
|
|
|
|
sent_events_counter = Counter(
|
|
|
|
"synapse_appservice_api_sent_events",
|
|
|
|
"Number of events sent to the AS",
|
|
|
|
["service"]
|
|
|
|
)
|
2015-02-04 17:44:53 +01:00
|
|
|
|
2016-08-25 16:56:27 +02:00
|
|
|
HOUR_IN_MS = 60 * 60 * 1000
|
|
|
|
|
|
|
|
|
2016-08-25 19:06:29 +02:00
|
|
|
APP_SERVICE_PREFIX = "/_matrix/app/unstable"
|
|
|
|
|
|
|
|
|
2016-09-09 16:09:46 +02:00
|
|
|
def _is_valid_3pe_metadata(info):
|
|
|
|
if "instances" not in info:
|
|
|
|
return False
|
|
|
|
if not isinstance(info["instances"], list):
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2016-08-18 18:33:56 +02:00
|
|
|
def _is_valid_3pe_result(r, field):
|
|
|
|
if not isinstance(r, dict):
|
|
|
|
return False
|
|
|
|
|
|
|
|
for k in (field, "protocol"):
|
|
|
|
if k not in r:
|
|
|
|
return False
|
|
|
|
if not isinstance(r[k], str):
|
|
|
|
return False
|
|
|
|
|
|
|
|
if "fields" not in r:
|
|
|
|
return False
|
|
|
|
fields = r["fields"]
|
|
|
|
if not isinstance(fields, dict):
|
|
|
|
return False
|
|
|
|
for k in fields.keys():
|
|
|
|
if not isinstance(fields[k], str):
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2015-02-04 17:44:53 +01:00
|
|
|
class ApplicationServiceApi(SimpleHttpClient):
|
2015-02-04 12:19:18 +01:00
|
|
|
"""This class manages HS -> AS communications, including querying and
|
|
|
|
pushing.
|
|
|
|
"""
|
|
|
|
|
2016-02-02 18:18:50 +01:00
|
|
|
def __init__(self, hs):
|
2015-02-04 17:44:53 +01:00
|
|
|
super(ApplicationServiceApi, self).__init__(hs)
|
2015-02-05 14:42:35 +01:00
|
|
|
self.clock = hs.get_clock()
|
2015-02-04 12:19:18 +01:00
|
|
|
|
2018-04-11 00:14:47 +02:00
|
|
|
self.protocol_meta_cache = ResponseCache(hs, "as_protocol_meta",
|
|
|
|
timeout_ms=HOUR_IN_MS)
|
2016-08-25 16:56:27 +02:00
|
|
|
|
2015-02-04 17:44:53 +01:00
|
|
|
@defer.inlineCallbacks
|
2015-02-04 12:19:18 +01:00
|
|
|
def query_user(self, service, user_id):
|
2016-08-30 18:16:00 +02:00
|
|
|
if service.url is None:
|
2016-08-30 17:21:16 +02:00
|
|
|
defer.returnValue(False)
|
2018-09-05 16:10:47 +02:00
|
|
|
uri = service.url + ("/users/%s" % urllib.parse.quote(user_id))
|
2015-02-04 17:44:53 +01:00
|
|
|
response = None
|
|
|
|
try:
|
|
|
|
response = yield self.get_json(uri, {
|
2015-02-05 11:08:12 +01:00
|
|
|
"access_token": service.hs_token
|
2015-02-04 17:44:53 +01:00
|
|
|
})
|
2015-02-09 16:01:28 +01:00
|
|
|
if response is not None: # just an empty json object
|
2015-02-04 17:44:53 +01:00
|
|
|
defer.returnValue(True)
|
2015-02-04 18:32:44 +01:00
|
|
|
except CodeMessageException as e:
|
|
|
|
if e.code == 404:
|
2015-02-04 17:44:53 +01:00
|
|
|
defer.returnValue(False)
|
|
|
|
return
|
2015-02-04 18:32:44 +01:00
|
|
|
logger.warning("query_user to %s received %s", uri, e.code)
|
2015-02-05 14:19:46 +01:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("query_user to %s threw exception %s", uri, ex)
|
|
|
|
defer.returnValue(False)
|
2015-02-04 12:19:18 +01:00
|
|
|
|
2015-02-04 17:44:53 +01:00
|
|
|
@defer.inlineCallbacks
|
2015-02-04 12:19:18 +01:00
|
|
|
def query_alias(self, service, alias):
|
2016-08-30 18:16:00 +02:00
|
|
|
if service.url is None:
|
2016-08-30 17:21:16 +02:00
|
|
|
defer.returnValue(False)
|
2018-09-05 16:10:47 +02:00
|
|
|
uri = service.url + ("/rooms/%s" % urllib.parse.quote(alias))
|
2015-02-04 17:44:53 +01:00
|
|
|
response = None
|
|
|
|
try:
|
|
|
|
response = yield self.get_json(uri, {
|
2015-02-05 11:08:12 +01:00
|
|
|
"access_token": service.hs_token
|
2015-02-04 17:44:53 +01:00
|
|
|
})
|
2015-02-09 16:01:28 +01:00
|
|
|
if response is not None: # just an empty json object
|
2015-02-04 17:44:53 +01:00
|
|
|
defer.returnValue(True)
|
2015-02-04 18:32:44 +01:00
|
|
|
except CodeMessageException as e:
|
2015-02-09 16:01:28 +01:00
|
|
|
logger.warning("query_alias to %s received %s", uri, e.code)
|
2015-02-04 18:32:44 +01:00
|
|
|
if e.code == 404:
|
2015-02-04 17:44:53 +01:00
|
|
|
defer.returnValue(False)
|
|
|
|
return
|
2015-02-05 14:19:46 +01:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("query_alias to %s threw exception %s", uri, ex)
|
|
|
|
defer.returnValue(False)
|
|
|
|
|
2016-08-18 01:39:09 +02:00
|
|
|
@defer.inlineCallbacks
|
2016-08-18 18:19:55 +02:00
|
|
|
def query_3pe(self, service, kind, protocol, fields):
|
|
|
|
if kind == ThirdPartyEntityKind.USER:
|
2016-08-18 18:33:56 +02:00
|
|
|
required_field = "userid"
|
2016-08-18 18:19:55 +02:00
|
|
|
elif kind == ThirdPartyEntityKind.LOCATION:
|
2016-08-18 18:33:56 +02:00
|
|
|
required_field = "alias"
|
2016-08-18 18:19:55 +02:00
|
|
|
else:
|
|
|
|
raise ValueError(
|
|
|
|
"Unrecognised 'kind' argument %r to query_3pe()", kind
|
|
|
|
)
|
2016-08-30 18:16:00 +02:00
|
|
|
if service.url is None:
|
2016-08-30 17:21:16 +02:00
|
|
|
defer.returnValue([])
|
2016-08-17 14:15:06 +02:00
|
|
|
|
2016-08-25 19:06:29 +02:00
|
|
|
uri = "%s%s/thirdparty/%s/%s" % (
|
|
|
|
service.url,
|
|
|
|
APP_SERVICE_PREFIX,
|
2016-08-25 19:35:38 +02:00
|
|
|
kind,
|
2018-09-05 16:10:47 +02:00
|
|
|
urllib.parse.quote(protocol)
|
2016-08-25 19:06:29 +02:00
|
|
|
)
|
2016-08-18 17:09:50 +02:00
|
|
|
try:
|
|
|
|
response = yield self.get_json(uri, fields)
|
2016-08-18 18:33:56 +02:00
|
|
|
if not isinstance(response, list):
|
|
|
|
logger.warning(
|
|
|
|
"query_3pe to %s returned an invalid response %r",
|
|
|
|
uri, response
|
|
|
|
)
|
|
|
|
defer.returnValue([])
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
for r in response:
|
|
|
|
if _is_valid_3pe_result(r, field=required_field):
|
|
|
|
ret.append(r)
|
|
|
|
else:
|
|
|
|
logger.warning(
|
|
|
|
"query_3pe to %s returned an invalid result %r",
|
|
|
|
uri, r
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue(ret)
|
2016-08-18 17:09:50 +02:00
|
|
|
except Exception as ex:
|
2016-08-18 18:19:55 +02:00
|
|
|
logger.warning("query_3pe to %s threw exception %s", uri, ex)
|
2016-08-18 17:09:50 +02:00
|
|
|
defer.returnValue([])
|
|
|
|
|
2016-08-25 16:10:06 +02:00
|
|
|
def get_3pe_protocol(self, service, protocol):
|
2016-08-30 18:16:00 +02:00
|
|
|
if service.url is None:
|
2016-08-30 17:21:16 +02:00
|
|
|
defer.returnValue({})
|
2016-08-30 17:30:12 +02:00
|
|
|
|
2016-08-25 16:56:27 +02:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _get():
|
2016-08-25 19:06:29 +02:00
|
|
|
uri = "%s%s/thirdparty/protocol/%s" % (
|
|
|
|
service.url,
|
|
|
|
APP_SERVICE_PREFIX,
|
2018-09-05 16:10:47 +02:00
|
|
|
urllib.parse.quote(protocol)
|
2016-08-25 19:06:29 +02:00
|
|
|
)
|
2016-08-25 16:56:27 +02:00
|
|
|
try:
|
2016-09-09 16:07:04 +02:00
|
|
|
info = yield self.get_json(uri, {})
|
|
|
|
|
2016-09-09 16:09:46 +02:00
|
|
|
if not _is_valid_3pe_metadata(info):
|
|
|
|
logger.warning("query_3pe_protocol to %s did not return a"
|
|
|
|
" valid result", uri)
|
2016-09-09 16:07:04 +02:00
|
|
|
defer.returnValue(None)
|
|
|
|
|
2016-12-06 11:43:48 +01:00
|
|
|
for instance in info.get("instances", []):
|
|
|
|
network_id = instance.get("network_id", None)
|
|
|
|
if network_id is not None:
|
2016-12-12 15:46:13 +01:00
|
|
|
instance["instance_id"] = ThirdPartyInstanceID(
|
2016-12-06 11:43:48 +01:00
|
|
|
service.id, network_id,
|
|
|
|
).to_string()
|
|
|
|
|
2016-09-09 16:07:04 +02:00
|
|
|
defer.returnValue(info)
|
2016-08-25 16:56:27 +02:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("query_3pe_protocol to %s threw exception %s",
|
2016-08-25 17:00:31 +02:00
|
|
|
uri, ex)
|
2016-09-09 16:07:04 +02:00
|
|
|
defer.returnValue(None)
|
2016-08-25 16:56:27 +02:00
|
|
|
|
|
|
|
key = (service.id, protocol)
|
2018-04-12 13:08:59 +02:00
|
|
|
return self.protocol_meta_cache.wrap(key, _get)
|
2016-08-25 16:10:06 +02:00
|
|
|
|
2015-02-05 10:43:22 +01:00
|
|
|
@defer.inlineCallbacks
|
2015-03-05 16:40:07 +01:00
|
|
|
def push_bulk(self, service, events, txn_id=None):
|
2016-08-30 18:16:00 +02:00
|
|
|
if service.url is None:
|
2016-08-30 17:21:16 +02:00
|
|
|
defer.returnValue(True)
|
|
|
|
|
2015-02-05 14:42:35 +01:00
|
|
|
events = self._serialize(events)
|
|
|
|
|
2015-03-05 16:40:07 +01:00
|
|
|
if txn_id is None:
|
|
|
|
logger.warning("push_bulk: Missing txn ID sending events to %s",
|
|
|
|
service.url)
|
|
|
|
txn_id = str(0)
|
2015-03-09 18:45:41 +01:00
|
|
|
txn_id = str(txn_id)
|
2015-03-05 16:40:07 +01:00
|
|
|
|
2015-02-05 10:43:22 +01:00
|
|
|
uri = service.url + ("/transactions/%s" %
|
2018-09-05 16:10:47 +02:00
|
|
|
urllib.parse.quote(txn_id))
|
2015-02-05 10:43:22 +01:00
|
|
|
try:
|
2015-03-10 11:04:20 +01:00
|
|
|
yield self.put_json(
|
2015-02-11 17:41:16 +01:00
|
|
|
uri=uri,
|
|
|
|
json_body={
|
2015-02-05 10:43:22 +01:00
|
|
|
"events": events
|
|
|
|
},
|
2015-02-11 17:41:16 +01:00
|
|
|
args={
|
2015-02-05 11:08:12 +01:00
|
|
|
"access_token": service.hs_token
|
2015-02-05 10:43:22 +01:00
|
|
|
})
|
2018-06-05 18:30:45 +02:00
|
|
|
sent_transactions_counter.labels(service.id).inc()
|
|
|
|
sent_events_counter.labels(service.id).inc(len(events))
|
2015-03-10 11:04:20 +01:00
|
|
|
defer.returnValue(True)
|
|
|
|
return
|
2015-02-05 10:43:22 +01:00
|
|
|
except CodeMessageException as e:
|
|
|
|
logger.warning("push_bulk to %s received %s", uri, e.code)
|
2015-02-05 14:19:46 +01:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("push_bulk to %s threw exception %s", uri, ex)
|
2018-06-05 18:30:45 +02:00
|
|
|
failed_transactions_counter.labels(service.id).inc()
|
2015-02-05 14:19:46 +01:00
|
|
|
defer.returnValue(False)
|
2015-02-04 12:19:18 +01:00
|
|
|
|
2015-02-05 14:42:35 +01:00
|
|
|
def _serialize(self, events):
|
|
|
|
time_now = self.clock.time_msec()
|
|
|
|
return [
|
|
|
|
serialize_event(e, time_now, as_client_event=True) for e in events
|
|
|
|
]
|