Source code for slixmpp.plugins.xep_0425.moderation
# Slixmpp: The Slick XMPP Library
# Copyright (C) 2020 Mathieu Pasquet <mathieui@mathieui.net>
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
from asyncio import Future
from slixmpp import JID, Message, Iq
from slixmpp.xmlstream.handler import Callback
from slixmpp.xmlstream.matcher import StanzaPath
from slixmpp.plugins import BasePlugin
from slixmpp.plugins.xep_0425 import stanza
[docs]
class XEP_0425(BasePlugin):
'''XEP-0425: Moderated Message Retraction'''
name = 'xep_0425'
description = 'XEP-0425: Moderated Message Retraction'
dependencies = {'xep_0424', 'xep_0421'}
stanza = stanza
namespace = stanza.NS
def plugin_init(self) -> None:
stanza.register_plugins()
self.xmpp.register_handler(Callback(
'Moderated Message',
StanzaPath('message/retract/moderated'),
self._handle_moderated,
))
def session_bind(self, jid):
self.xmpp.plugin['xep_0030'].add_feature(feature=stanza.NS)
def _handle_moderated(self, message: Message):
if message['type'] == 'groupchat':
self.xmpp.event('moderated_message', message)
def plugin_end(self):
self.xmpp.plugin['xep_0030'].del_feature(feature=stanza.NS)
[docs]
async def moderate(self, room: JID, id: str, reason: str = '', *,
ifrom: JID | None = None, **iqkwargs) -> Future[Iq]:
"""
Moderate a message.
:param room: Room in which the message to moderate was sent.
:param id: Stanza-ID of the message to moderate.
:param reason: An optional reason for the moderation.
:param ifrom: Which JID the message is to be sent from (for components).
"""
iq = self.xmpp.make_iq_set(ito=room.bare, ifrom=ifrom)
iq['moderate']['id'] = id
iq['moderate']['reason'] = reason
iq['moderate'].enable('retract')
await iq.send(**iqkwargs)