summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0424/stanza.py
blob: c55af08c29de6432d7a749e08b51e5db21a16324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
    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 permissio
"""

from slixmpp.stanza import Message
from slixmpp.xmlstream import (
    ElementBase,
    register_stanza_plugin,
)
from slixmpp.plugins.xep_0422.stanza import ApplyTo
from slixmpp.plugins.xep_0359 import OriginID


NS = 'urn:xmpp:message-retract:0'


class Retract(ElementBase):
    namespace = NS
    name = 'retract'
    plugin_attrib = 'retract'


class Retracted(ElementBase):
    namespace = NS
    name = 'retracted'
    plugin_attrib = 'retracted'
    interfaces = {'stamp'}


def register_plugins():
    register_stanza_plugin(ApplyTo, Retract)
    register_stanza_plugin(Message, Retracted)

    register_stanza_plugin(Retracted, OriginID)