summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0231/stanza.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/plugins/xep_0231/stanza.py')
-rw-r--r--slixmpp/plugins/xep_0231/stanza.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/slixmpp/plugins/xep_0231/stanza.py b/slixmpp/plugins/xep_0231/stanza.py
new file mode 100644
index 00000000..b3b96eff
--- /dev/null
+++ b/slixmpp/plugins/xep_0231/stanza.py
@@ -0,0 +1,36 @@
+"""
+ Slixmpp: The Slick XMPP Library
+ Copyright (C) 2012 Nathanael C. Fritz,
+ Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
+ This file is part of Slixmpp.
+
+ See the file LICENSE for copying permission.
+"""
+
+import base64
+
+
+from slixmpp.util import bytes
+from slixmpp.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 int(self._get_attr('max-age'))
+
+ def set_max_age(self, value):
+ self._set_attr('max-age', str(value))
+
+ def get_data(self):
+ return base64.b64decode(bytes(self.xml.text))
+
+ def set_data(self, value):
+ self.xml.text = bytes(base64.b64encode(value)).decode('utf-8')
+
+ def del_data(self):
+ self.xml.text = ''