diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-09 18:06:01 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-09 18:06:01 +0100 |
commit | 3265def8c7b4a6e49bc9ee920aef45bb22beaf74 (patch) | |
tree | 0f069dbf73fc1abc5955922eb46b50598f5d9b6f /synapse/appservice | |
parent | Fix incorrect attribute name (diff) | |
parent | Merge pull request #1096 from matrix-org/markjh/get_access_token (diff) | |
download | synapse-3265def8c7b4a6e49bc9ee920aef45bb22beaf74.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/batch_edus
Diffstat (limited to 'synapse/appservice')
-rw-r--r-- | synapse/appservice/api.py | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py index cc4af23962..b0eb0c6d9d 100644 --- a/synapse/appservice/api.py +++ b/synapse/appservice/api.py @@ -32,6 +32,14 @@ HOUR_IN_MS = 60 * 60 * 1000 APP_SERVICE_PREFIX = "/_matrix/app/unstable" +def _is_valid_3pe_metadata(info): + if "instances" not in info: + return False + if not isinstance(info["instances"], list): + return False + return True + + def _is_valid_3pe_result(r, field): if not isinstance(r, dict): return False @@ -162,11 +170,18 @@ class ApplicationServiceApi(SimpleHttpClient): urllib.quote(protocol) ) try: - defer.returnValue((yield self.get_json(uri, {}))) + info = yield self.get_json(uri, {}) + + if not _is_valid_3pe_metadata(info): + logger.warning("query_3pe_protocol to %s did not return a" + " valid result", uri) + defer.returnValue(None) + + defer.returnValue(info) except Exception as ex: logger.warning("query_3pe_protocol to %s threw exception %s", uri, ex) - defer.returnValue({}) + defer.returnValue(None) key = (service.id, protocol) return self.protocol_meta_cache.get(key) or ( |