Implement XEP-0333: Chat Markers.
This commit is contained in:
parent
1e4a301c6e
commit
d099e353a4
3 changed files with 99 additions and 0 deletions
14
slixmpp/plugins/xep_0333/__init__.py
Normal file
14
slixmpp/plugins/xep_0333/__init__.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
"""
|
||||
slixmpp: The Slick XMPP Library
|
||||
Copyright (C) 2016 Emmanuel Gil Peyrot
|
||||
This file is part of slixmpp.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
from slixmpp.plugins.base import register_plugin
|
||||
|
||||
from slixmpp.plugins.xep_0333.stanza import Markable, Received, Displayed, Acknowledged
|
||||
from slixmpp.plugins.xep_0333.hints import XEP_0333
|
||||
|
||||
register_plugin(XEP_0333)
|
53
slixmpp/plugins/xep_0333/hints.py
Normal file
53
slixmpp/plugins/xep_0333/hints.py
Normal file
|
@ -0,0 +1,53 @@
|
|||
"""
|
||||
slixmpp: The Slick XMPP Library
|
||||
Copyright (C) 2016 Emmanuel Gil Peyrot
|
||||
This file is part of slixmpp.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
import logging
|
||||
|
||||
from slixmpp import Message
|
||||
from slixmpp.plugins import BasePlugin
|
||||
from slixmpp.xmlstream import register_stanza_plugin
|
||||
from slixmpp.plugins.xep_0333 import stanza, Markable, Received, Displayed, Acknowledged
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
class XEP_0333(BasePlugin):
|
||||
|
||||
name = 'xep_0333'
|
||||
description = 'XEP-0333: Chat Markers'
|
||||
stanza = stanza
|
||||
|
||||
def plugin_init(self):
|
||||
register_stanza_plugin(Message, Markable)
|
||||
register_stanza_plugin(Message, Received)
|
||||
register_stanza_plugin(Message, Displayed)
|
||||
register_stanza_plugin(Message, Acknowledged)
|
||||
|
||||
self.xmpp.register_handler(
|
||||
Callback('Received Chat Marker',
|
||||
StanzaPath('message/received'),
|
||||
self._handle_received))
|
||||
self.xmpp.register_handler(
|
||||
Callback('Displayed Chat Marker',
|
||||
StanzaPath('message/displayed'),
|
||||
self._handle_displayed))
|
||||
self.xmpp.register_handler(
|
||||
Callback('Acknowledged Chat Marker',
|
||||
StanzaPath('message/acknowledged'),
|
||||
self._handle_acknowledged))
|
||||
|
||||
def _handle_received(self, message):
|
||||
self.xmpp.event('marker_received', message)
|
||||
self.xmpp.event('marker', message)
|
||||
|
||||
def _handle_displayed(self, message):
|
||||
self.xmpp.event('marker_displayed', message)
|
||||
self.xmpp.event('marker', message)
|
||||
|
||||
def _handle_acknowledged(self, message):
|
||||
self.xmpp.event('marker_acknowledged', message)
|
||||
self.xmpp.event('marker', message)
|
32
slixmpp/plugins/xep_0333/stanza.py
Normal file
32
slixmpp/plugins/xep_0333/stanza.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
"""
|
||||
slixmpp: The Slick XMPP Library
|
||||
Copyright (C) 2016 Emmanuel Gil Peyrot
|
||||
This file is part of slixmpp.
|
||||
|
||||
See the file LICENSE for copying permission.
|
||||
"""
|
||||
|
||||
from slixmpp.xmlstream import ElementBase
|
||||
|
||||
class Markable(ElementBase):
|
||||
name = 'markable'
|
||||
plugin_attrib = 'markable'
|
||||
namespace = 'urn:xmpp:chat-markers:0'
|
||||
|
||||
class Received(ElementBase):
|
||||
name = 'received'
|
||||
plugin_attrib = 'received'
|
||||
namespace = 'urn:xmpp:chat-markers:0'
|
||||
interfaces = {'id'}
|
||||
|
||||
class Displayed(ElementBase):
|
||||
name = 'displayed'
|
||||
plugin_attrib = 'displayed'
|
||||
namespace = 'urn:xmpp:chat-markers:0'
|
||||
interfaces = {'id'}
|
||||
|
||||
class Acknowledged(ElementBase):
|
||||
name = 'acknowledged'
|
||||
plugin_attrib = 'acknowledged'
|
||||
namespace = 'urn:xmpp:chat-markers:0'
|
||||
interfaces = {'id'}
|
Loading…
Reference in a new issue