diff options
author | Lance Stout <lancestout@gmail.com> | 2012-04-08 23:27:19 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-04-08 23:27:19 -0400 |
commit | 60195cf2dcd7ef8261c4d74c332cc3a531337339 (patch) | |
tree | b2a0bdd0f3ed2e46329e2348580ed469e0c221bb /sleekxmpp/plugins/xep_0231/stanza.py | |
parent | 15ef27314189baeee64fbe41ab87f1eebef6e85c (diff) | |
download | slixmpp-60195cf2dcd7ef8261c4d74c332cc3a531337339.tar.gz slixmpp-60195cf2dcd7ef8261c4d74c332cc3a531337339.tar.bz2 slixmpp-60195cf2dcd7ef8261c4d74c332cc3a531337339.tar.xz slixmpp-60195cf2dcd7ef8261c4d74c332cc3a531337339.zip |
Initial support for XEP-0231.
Diffstat (limited to 'sleekxmpp/plugins/xep_0231/stanza.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0231/stanza.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0231/stanza.py b/sleekxmpp/plugins/xep_0231/stanza.py new file mode 100644 index 00000000..13d7a5db --- /dev/null +++ b/sleekxmpp/plugins/xep_0231/stanza.py @@ -0,0 +1,35 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2012 Nathanael C. Fritz, + Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + + +from base64 import b64encode, b64decode + +from sleekxmpp.xmlstream import ElementBase + + +class BitsOfBinary(ElementBase): + name = 'data' + namespace = 'urn:xmpp:bob' + plugin_attrib = 'bob' + interfaces = set(('cid', 'max_age', 'type', 'data')) + + def get_max_age(self): + return self._get_attr('max-age') + + def set_max_age(self, value): + self._set_attr('max-age', value) + + def get_data(self): + return b64decode(self.xml.text) + + def set_data(self, value): + self.xml.text = b64encode(value) + + def del_data(self): + self.xml.text = '' |