2011-07-03 06:09:29 +00:00
|
|
|
"""
|
|
|
|
SleekXMPP: The Sleek XMPP Library
|
|
|
|
Copyright (C) 2011 Nathanael C. Fritz
|
|
|
|
This file is part of SleekXMPP.
|
|
|
|
|
|
|
|
See the file LICENSE for copying permission.
|
|
|
|
"""
|
|
|
|
|
2011-08-04 00:00:51 +00:00
|
|
|
import base64
|
|
|
|
|
|
|
|
from sleekxmpp.thirdparty.suelta.util import bytes
|
|
|
|
|
2012-02-17 22:59:56 +00:00
|
|
|
from sleekxmpp.xmlstream import StanzaBase
|
2011-07-03 06:09:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Auth(StanzaBase):
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|
|
|
|
name = 'auth'
|
|
|
|
namespace = 'urn:ietf:params:xml:ns:xmpp-sasl'
|
|
|
|
interfaces = set(('mechanism', 'value'))
|
|
|
|
plugin_attrib = name
|
|
|
|
|
2012-06-19 08:29:48 +00:00
|
|
|
#: Some SASL mechs require sending values as is,
|
2012-01-07 04:31:58 +00:00
|
|
|
#: without converting base64.
|
|
|
|
plain_mechs = set(['X-MESSENGER-OAUTH2'])
|
|
|
|
|
2011-07-03 06:09:29 +00:00
|
|
|
def setup(self, xml):
|
|
|
|
StanzaBase.setup(self, xml)
|
|
|
|
self.xml.tag = self.tag_name()
|
|
|
|
|
|
|
|
def get_value(self):
|
2012-01-07 04:31:58 +00:00
|
|
|
if not self['mechanism'] in self.plain_mechs:
|
|
|
|
return base64.b64decode(bytes(self.xml.text))
|
|
|
|
else:
|
|
|
|
return self.xml.text
|
2011-08-04 00:00:51 +00:00
|
|
|
|
|
|
|
def set_value(self, values):
|
2012-01-07 04:31:58 +00:00
|
|
|
if not self['mechanism'] in self.plain_mechs:
|
2012-02-10 06:01:11 +00:00
|
|
|
if values:
|
|
|
|
self.xml.text = bytes(base64.b64encode(values)).decode('utf-8')
|
|
|
|
else:
|
|
|
|
self.xml.text = '='
|
2012-01-07 04:31:58 +00:00
|
|
|
else:
|
2012-01-07 05:19:08 +00:00
|
|
|
self.xml.text = bytes(values).decode('utf-8')
|
2011-07-03 06:09:29 +00:00
|
|
|
|
|
|
|
def del_value(self):
|
|
|
|
self.xml.text = ''
|