2015-02-03 09:44:16 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-02-03 09:44:16 -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.
|
2015-02-04 11:44:53 -05:00
|
|
|
from twisted.internet import defer
|
2015-02-03 09:44:16 -05:00
|
|
|
|
2015-02-04 12:32:44 -05:00
|
|
|
from synapse.api.errors import CodeMessageException
|
2015-02-04 11:44:53 -05:00
|
|
|
from synapse.http.client import SimpleHttpClient
|
2015-02-05 08:42:35 -05:00
|
|
|
from synapse.events.utils import serialize_event
|
2015-02-04 06:19:18 -05:00
|
|
|
|
2015-02-04 11:44:53 -05:00
|
|
|
import logging
|
|
|
|
import urllib
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class ApplicationServiceApi(SimpleHttpClient):
|
2015-02-04 06:19:18 -05:00
|
|
|
"""This class manages HS -> AS communications, including querying and
|
|
|
|
pushing.
|
|
|
|
"""
|
|
|
|
|
2016-02-02 12:18:50 -05:00
|
|
|
def __init__(self, hs):
|
2015-02-04 11:44:53 -05:00
|
|
|
super(ApplicationServiceApi, self).__init__(hs)
|
2015-02-05 08:42:35 -05:00
|
|
|
self.clock = hs.get_clock()
|
2015-02-04 06:19:18 -05:00
|
|
|
|
2015-02-04 11:44:53 -05:00
|
|
|
@defer.inlineCallbacks
|
2015-02-04 06:19:18 -05:00
|
|
|
def query_user(self, service, user_id):
|
2015-02-04 11:44:53 -05:00
|
|
|
uri = service.url + ("/users/%s" % urllib.quote(user_id))
|
|
|
|
response = None
|
|
|
|
try:
|
|
|
|
response = yield self.get_json(uri, {
|
2015-02-05 05:08:12 -05:00
|
|
|
"access_token": service.hs_token
|
2015-02-04 11:44:53 -05:00
|
|
|
})
|
2015-02-09 10:01:28 -05:00
|
|
|
if response is not None: # just an empty json object
|
2015-02-04 11:44:53 -05:00
|
|
|
defer.returnValue(True)
|
2015-02-04 12:32:44 -05:00
|
|
|
except CodeMessageException as e:
|
|
|
|
if e.code == 404:
|
2015-02-04 11:44:53 -05:00
|
|
|
defer.returnValue(False)
|
|
|
|
return
|
2015-02-04 12:32:44 -05:00
|
|
|
logger.warning("query_user to %s received %s", uri, e.code)
|
2015-02-05 08:19:46 -05:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("query_user to %s threw exception %s", uri, ex)
|
|
|
|
defer.returnValue(False)
|
2015-02-04 06:19:18 -05:00
|
|
|
|
2015-02-04 11:44:53 -05:00
|
|
|
@defer.inlineCallbacks
|
2015-02-04 06:19:18 -05:00
|
|
|
def query_alias(self, service, alias):
|
2015-02-04 11:44:53 -05:00
|
|
|
uri = service.url + ("/rooms/%s" % urllib.quote(alias))
|
|
|
|
response = None
|
|
|
|
try:
|
|
|
|
response = yield self.get_json(uri, {
|
2015-02-05 05:08:12 -05:00
|
|
|
"access_token": service.hs_token
|
2015-02-04 11:44:53 -05:00
|
|
|
})
|
2015-02-09 10:01:28 -05:00
|
|
|
if response is not None: # just an empty json object
|
2015-02-04 11:44:53 -05:00
|
|
|
defer.returnValue(True)
|
2015-02-04 12:32:44 -05:00
|
|
|
except CodeMessageException as e:
|
2015-02-09 10:01:28 -05:00
|
|
|
logger.warning("query_alias to %s received %s", uri, e.code)
|
2015-02-04 12:32:44 -05:00
|
|
|
if e.code == 404:
|
2015-02-04 11:44:53 -05:00
|
|
|
defer.returnValue(False)
|
|
|
|
return
|
2015-02-05 08:19:46 -05:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("query_alias to %s threw exception %s", uri, ex)
|
|
|
|
defer.returnValue(False)
|
|
|
|
|
2015-02-05 04:43:22 -05:00
|
|
|
@defer.inlineCallbacks
|
2015-03-05 10:40:07 -05:00
|
|
|
def push_bulk(self, service, events, txn_id=None):
|
2015-02-05 08:42:35 -05:00
|
|
|
events = self._serialize(events)
|
|
|
|
|
2015-03-05 10:40:07 -05: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 13:45:41 -04:00
|
|
|
txn_id = str(txn_id)
|
2015-03-05 10:40:07 -05:00
|
|
|
|
2015-02-05 04:43:22 -05:00
|
|
|
uri = service.url + ("/transactions/%s" %
|
2015-03-05 10:40:07 -05:00
|
|
|
urllib.quote(txn_id))
|
2015-02-05 04:43:22 -05:00
|
|
|
try:
|
2015-03-10 06:04:20 -04:00
|
|
|
yield self.put_json(
|
2015-02-11 11:41:16 -05:00
|
|
|
uri=uri,
|
|
|
|
json_body={
|
2015-02-05 04:43:22 -05:00
|
|
|
"events": events
|
|
|
|
},
|
2015-02-11 11:41:16 -05:00
|
|
|
args={
|
2015-02-05 05:08:12 -05:00
|
|
|
"access_token": service.hs_token
|
2015-02-05 04:43:22 -05:00
|
|
|
})
|
2015-03-10 06:04:20 -04:00
|
|
|
defer.returnValue(True)
|
|
|
|
return
|
2015-02-05 04:43:22 -05:00
|
|
|
except CodeMessageException as e:
|
|
|
|
logger.warning("push_bulk to %s received %s", uri, e.code)
|
2015-02-05 08:19:46 -05:00
|
|
|
except Exception as ex:
|
|
|
|
logger.warning("push_bulk to %s threw exception %s", uri, ex)
|
|
|
|
defer.returnValue(False)
|
2015-02-04 06:19:18 -05:00
|
|
|
|
2015-02-05 08:42:35 -05: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
|
|
|
|
]
|