summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0045/muc.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-03 23:50:14 +0100
committermathieui <mathieui@mathieui.net>2020-12-03 23:50:14 +0100
commit56f44dc47d53f8b387278fc7d13a11a914201df8 (patch)
treec39562c1fcb9479ea11153c5d88cfea40b3f0ed7 /slixmpp/plugins/xep_0045/muc.py
parentaf46efc12a5b90162820eb773e0a723fdb14531a (diff)
parentfa7e33110fa7c9afd30145b04e3965e0bcecf7f3 (diff)
downloadslixmpp-56f44dc47d53f8b387278fc7d13a11a914201df8.tar.gz
slixmpp-56f44dc47d53f8b387278fc7d13a11a914201df8.tar.bz2
slixmpp-56f44dc47d53f8b387278fc7d13a11a914201df8.tar.xz
slixmpp-56f44dc47d53f8b387278fc7d13a11a914201df8.zip
Merge branch 'muc-improvements' into 'master'
MUC improvements See merge request poezio/slixmpp!70
Diffstat (limited to 'slixmpp/plugins/xep_0045/muc.py')
-rw-r--r--slixmpp/plugins/xep_0045/muc.py49
1 files changed, 31 insertions, 18 deletions
diff --git a/slixmpp/plugins/xep_0045/muc.py b/slixmpp/plugins/xep_0045/muc.py
index f310c03e..630112f3 100644
--- a/slixmpp/plugins/xep_0045/muc.py
+++ b/slixmpp/plugins/xep_0045/muc.py
@@ -25,6 +25,7 @@ from slixmpp.plugins import BasePlugin
from slixmpp.xmlstream import register_stanza_plugin, ET
from slixmpp.xmlstream.handler.callback import Callback
from slixmpp.xmlstream.matcher.xpath import MatchXPath
+from slixmpp.xmlstream.matcher.stanzapath import StanzaPath
from slixmpp.xmlstream.matcher.xmlmask import MatchXMLMask
from slixmpp.exceptions import IqError, IqTimeout
@@ -38,6 +39,7 @@ from slixmpp.plugins.xep_0045.stanza import (
MUCHistory,
MUCOwnerQuery,
MUCOwnerDestroy,
+ MUCStatus,
)
@@ -62,6 +64,8 @@ class XEP_0045(BasePlugin):
self.rooms = {}
self.our_nicks = {}
# load MUC support in presence stanzas
+ register_stanza_plugin(MUCMessage, MUCStatus)
+ register_stanza_plugin(MUCPresence, MUCStatus)
register_stanza_plugin(Presence, MUCPresence)
register_stanza_plugin(Presence, MUCJoin)
register_stanza_plugin(MUCJoin, MUCHistory)
@@ -99,23 +103,21 @@ class XEP_0045(BasePlugin):
self.xmpp.register_handler(
Callback(
'MUCConfig',
- MatchXMLMask(
- "<message xmlns='%s' type='groupchat'>"
- "<x xmlns='http://jabber.org/protocol/muc#user'><status/></x>"
- "</message>" % self.xmpp.default_ns
- ),
+ StanzaPath('message/muc/status'),
self.handle_config_change
))
self.xmpp.register_handler(
Callback(
'MUCInvite',
- MatchXPath("{%s}message/{%s}x/{%s}invite" % (
- self.xmpp.default_ns,
- stanza.NS_USER,
- stanza.NS_USER
- )),
+ StanzaPath('message/muc/invite'),
self.handle_groupchat_invite
))
+ self.xmpp.register_handler(
+ Callback(
+ 'MUCDecline',
+ StanzaPath('message/muc/decline'),
+ self.handle_groupchat_decline
+ ))
def plugin_end(self):
self.xmpp.plugin['xep_0030'].del_feature(feature=stanza.NS)
@@ -124,12 +126,15 @@ class XEP_0045(BasePlugin):
self.xmpp.plugin['xep_0030'].add_feature(stanza.NS)
def handle_groupchat_invite(self, inv):
- """ Handle an invite into a muc.
- """
- logging.debug("MUC invite to %s from %s: %s", inv['to'], inv["from"], inv)
+ """ Handle an invite into a muc. """
if inv['from'] not in self.rooms.keys():
self.xmpp.event("groupchat_invite", inv)
+ def handle_groupchat_decline(self, decl):
+ """Handle an invitation decline."""
+ if decl['from'] in self.room.keys():
+ self.xmpp.event('groupchat_decline', decl)
+
def handle_config_change(self, msg):
"""Handle a MUC configuration change (with status code)."""
self.xmpp.event('groupchat_config_status', msg)
@@ -221,6 +226,7 @@ class XEP_0045(BasePlugin):
async def destroy(self, room: JID, reason='', altroom='', *,
ifrom: Optional[JID] = None, **iqkwargs) -> Iq:
+ """Destroy a room."""
iq = self.xmpp.make_iq_set(ifrom=ifrom, ito=room)
iq.enable('mucowner_query')
iq['mucowner_query'].enable('destroy')
@@ -265,16 +271,24 @@ class XEP_0045(BasePlugin):
iq['mucadmin_query'].append(item)
await iq.send(**iqkwargs)
- def invite(self, room: JID, jid: JID, reason='', *,
+ def invite(self, room: JID, jid: JID, reason: str = '', *,
mfrom: Optional[JID] = None):
""" Invite a jid to a room."""
msg = self.xmpp.make_message(room, mfrom=mfrom)
- msg.enable('muc')
- msg['muc']['invite'] = jid
+ msg['muc']['invite']['to'] = jid
if reason:
msg['muc']['invite']['reason'] = reason
self.xmpp.send(msg)
+ def decline(self, room: JID, jid: JID, reason: str = '', *,
+ mfrom: Optional[JID] = None):
+ """Decline a mediated invitation."""
+ msg = self.xmpp.make_message(room, mfrom=mfrom)
+ msg['muc']['decline']['to'] = jid
+ if reason:
+ msg['muc']['decline']['reason'] = reason
+ self.xmpp.send(msg)
+
def leave_muc(self, room: JID, nick: str, msg='', pfrom=None):
""" Leave the specified room.
"""
@@ -284,7 +298,6 @@ class XEP_0045(BasePlugin):
self.xmpp.send_presence(pshow='unavailable', pto="%s/%s" % (room, nick), pfrom=pfrom)
del self.rooms[room]
-
async def get_room_config(self, room: JID, ifrom=''):
"""Get the room config form in 0004 plugin format """
iq = self.xmpp.make_iq_get(stanza.NS_OWNER, ito=room, ifrom=ifrom)
@@ -341,7 +354,7 @@ class XEP_0045(BasePlugin):
return await iq.send(**iqkwargs)
async def send_role_list(self, room: JID, roles: List[Tuple[str, str]], *,
- ifrom: Optional[JID], **iqkwargs) -> Iq:
+ ifrom: Optional[JID] = None, **iqkwargs) -> Iq:
"""Send a role delta list"""
iq = self.xmpp.make_iq_set(ito=room, ifrom=ifrom)
for nick, affiliation in roles: