slixmpp/sleekxmpp/plugins/xep_0231/stanza.py
2013-01-09 22:13:44 -08:00

36 lines
883 B
Python

"""
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.
"""
import base64
from sleekxmpp.util import bytes
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 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 = ''