2012-04-09 03:27:19 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
2012-06-19 08:29:48 +00:00
|
|
|
Copyright (C) 2012 Nathanael C. Fritz,
|
2012-04-09 03:27:19 +00:00
|
|
|
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
|
|
|
|
This file is part of SleekXMPP.
|
|
|
|
|
|
|
|
See the file LICENSE for copying permission.
|
|
|
|
"""
|
|
|
|
|
2013-01-10 06:13:44 +00:00
|
|
|
import base64
|
2012-04-09 03:27:19 +00:00
|
|
|
|
|
|
|
|
2013-01-10 06:13:44 +00:00
|
|
|
from sleekxmpp.util import bytes
|
2012-04-09 03:27:19 +00:00
|
|
|
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):
|
2013-01-10 06:13:44 +00:00
|
|
|
return base64.b64decode(bytes(self.xml.text))
|
2012-04-09 03:27:19 +00:00
|
|
|
|
|
|
|
def set_data(self, value):
|
2013-01-10 06:13:44 +00:00
|
|
|
self.xml.text = bytes(base64.b64encode(value)).decode('utf-8')
|
2012-04-09 03:27:19 +00:00
|
|
|
|
|
|
|
def del_data(self):
|
|
|
|
self.xml.text = ''
|