mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:06:07 -04:00
Actually query over AS API for 3PE lookup metadata
This commit is contained in:
parent
8e1ed09dff
commit
5474824975
2 changed files with 21 additions and 13 deletions
|
@ -37,13 +37,6 @@ def log_failure(failure):
|
|||
|
||||
class ApplicationServicesHandler(object):
|
||||
|
||||
PROTOCOL_META = {
|
||||
# TODO(paul): Declare kinds of metadata in here
|
||||
"gitter": {
|
||||
"user_fields": ["username"],
|
||||
}
|
||||
}
|
||||
|
||||
def __init__(self, hs):
|
||||
self.store = hs.get_datastore()
|
||||
self.is_mine_id = hs.is_mine_id
|
||||
|
@ -195,12 +188,7 @@ class ApplicationServicesHandler(object):
|
|||
protocols = {}
|
||||
for s in services:
|
||||
for p in s.protocols:
|
||||
if p in self.PROTOCOL_META:
|
||||
protocols[p] = self.PROTOCOL_META[p]
|
||||
else:
|
||||
# We don't know any metadata for it, but we'd best at least
|
||||
# still declare that we know it exists
|
||||
protocols[p] = {}
|
||||
protocols[p] = yield self.appservice_api.get_3pe_protocol(s, p)
|
||||
|
||||
self.supported_protocols = protocols
|
||||
defer.returnValue(protocols)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue