diff options
author | mathieui <mathieui@mathieui.net> | 2016-06-05 01:58:36 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-06-05 02:04:52 +0200 |
commit | bb81fbbdfc80a29279e4dcc0709e3b890f660f19 (patch) | |
tree | d4c2d04f8d93c1ecf0ce68c6d26f6bddd82a4a26 | |
parent | 1a00a08b7d9995837f979f199a0ef55c81aa0f3f (diff) | |
download | slixmpp-bb81fbbdfc80a29279e4dcc0709e3b890f660f19.tar.gz slixmpp-bb81fbbdfc80a29279e4dcc0709e3b890f660f19.tar.bz2 slixmpp-bb81fbbdfc80a29279e4dcc0709e3b890f660f19.tar.xz slixmpp-bb81fbbdfc80a29279e4dcc0709e3b890f660f19.zip |
Implement XEP-0256 (last activity in presence)
mostly useless, but allows to use LastActivity stanzas inside Presence
stanzas as well.
-rw-r--r-- | slixmpp/plugins/xep_0256/__init__.py | 13 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0256/last_activity_presence.py | 27 |
2 files changed, 40 insertions, 0 deletions
diff --git a/slixmpp/plugins/xep_0256/__init__.py b/slixmpp/plugins/xep_0256/__init__.py new file mode 100644 index 00000000..ab1a80e0 --- /dev/null +++ b/slixmpp/plugins/xep_0256/__init__.py @@ -0,0 +1,13 @@ +""" + Slixmpp: The Slick XMPP Library + Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout + This file is part of Slixmpp. + + See the file LICENSE for copying permission. +""" + +from slixmpp.plugins.base import register_plugin + +from slixmpp.plugins.xep_0256.last_activity_presence import XEP_0256, LastActivity + +register_plugin(XEP_0256) diff --git a/slixmpp/plugins/xep_0256/last_activity_presence.py b/slixmpp/plugins/xep_0256/last_activity_presence.py new file mode 100644 index 00000000..3766c61e --- /dev/null +++ b/slixmpp/plugins/xep_0256/last_activity_presence.py @@ -0,0 +1,27 @@ +""" + Slixmpp: The Slick XMPP Library + Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout + This file is part of Slixmpp. + + See the file LICENSE for copying permission. +""" + +import logging + +from slixmpp import Presence +from slixmpp.plugins import BasePlugin +from slixmpp.xmlstream import register_stanza_plugin +from slixmpp.plugins.xep_0012 import stanza, LastActivity + +log = logging.getLogger(__name__) + + +class XEP_0256(BasePlugin): + + name = 'xep_0256' + description = 'XEP-0256: Last Activity in Presence' + dependencies = set(['xep_0030']) + stanza = stanza + + def plugin_init(self): + register_stanza_plugin(Presence, LastActivity) |