xep_0030: rename find_identities; return all domain infos and let caller filter itself

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2018-07-01 01:36:26 +01:00
parent df0198abfe
commit caae713dd6
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2
2 changed files with 9 additions and 10 deletions

View file

@ -298,8 +298,8 @@ class XEP_0030(BasePlugin):
'cached': cached}
return self.api['has_identity'](jid, node, ifrom, data)
async def find_identities(category, type_, domain=None, timeout=None,
cached=True, callback=None, **kwargs):
async def get_info_from_domain(self, domain=None, timeout=None,
cached=True, callback=None, **kwargs):
if domain is None:
domain = self.xmpp.boundjid.domain
@ -317,11 +317,7 @@ class XEP_0030(BasePlugin):
self.domain_infos[domain] = [
future.result() for future in info_futures]
results = []
for info in self.domain_infos[domain]:
for identity in info['disco_info']['identities']:
if identity[0] == category and identity[1] == type_:
results.append(info)
results = self.domain_infos[domain]
if callback is not None:
callback(results)

View file

@ -69,9 +69,12 @@ class XEP_0363(BasePlugin):
self.xmpp.event('http_upload_request', iq)
async def find_upload_service(self, timeout=None):
results = await self.xmpp['xep_0030'].find_identities('store', 'file')
if results:
return results[0]
results = await self.xmpp['xep_0030'].get_info_from_domain()
for info in results:
for identity in info['disco_info']['identities']:
if identity[0] == 'store' and identity[1] == 'file':
return info
def request_slot(self, jid, filename, size, content_type=None, ifrom=None,
timeout=None, callback=None, timeout_callback=None):