Source code for slixmpp.plugins.xep_0421.occupant_id
# Slixmpp: The Slick XMPP Library
# Copyright (C) 2020 "Maxime “pep” Buquet <pep@bouah.net>"
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
from slixmpp import JID, Message, Presence
from slixmpp.plugins import BasePlugin
from slixmpp.xmlstream import register_stanza_plugin
from slixmpp.plugins.xep_0421 import stanza
from slixmpp.plugins.xep_0421.stanza import OccupantId
[docs]
class XEP_0421(BasePlugin):
'''XEP-0421: Anonymous unique occupant identifiers for MUCs'''
name = 'xep_0421'
description = 'XEP-0421: Anonymous unique occupant identifiers for MUCs'
dependencies = {'xep_0030', 'xep_0045'}
stanza = stanza
namespace = stanza.NS
def plugin_init(self) -> None:
# XXX: This should be MucMessage. Someday..
register_stanza_plugin(Message, OccupantId)
register_stanza_plugin(Presence, OccupantId)
[docs]
async def has_feature(self, jid: JID, **discokwargs) -> bool:
"""
Check if the remote JID supports Occupant-Id
This method can take all the additional kwargs that can be
provided to XEP-0030’s get_info.
:param jid: JID of the remote entity.
:returns: ``True`` if the server supports occupant-id.
"""
info = await self.xmpp['xep_0030'].get_info(jid, **discokwargs)
return self.namespace in info.get_features()