diff options
author | Lance Stout <lancestout@gmail.com> | 2011-07-02 23:09:29 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-07-02 23:09:29 -0700 |
commit | 0224d028e76ba608400fe55602fdb84f8e70f13b (patch) | |
tree | 3c256f3edcf66a2824cc4933f240ba932cea91be /sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py | |
parent | 540d7496954c38e5483205410662120ec9ccd8c8 (diff) | |
download | slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.tar.gz slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.tar.bz2 slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.tar.xz slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.zip |
SASL failure event now includes the failure stanza.
Broke SASL stanzas into separate files.
Fixed typo in feature_bind.
Diffstat (limited to 'sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py')
-rw-r--r-- | sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py b/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py new file mode 100644 index 00000000..1189cd80 --- /dev/null +++ b/sleekxmpp/features/feature_mechanisms/stanza/mechanisms.py @@ -0,0 +1,55 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2011 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.stanza import StreamFeatures +from sleekxmpp.xmlstream import ElementBase, StanzaBase, ET +from sleekxmpp.xmlstream import register_stanza_plugin + + +class Mechanisms(ElementBase): + + """ + """ + + name = 'mechanisms' + namespace = 'urn:ietf:params:xml:ns:xmpp-sasl' + interfaces = set(('mechanisms', 'required')) + plugin_attrib = name + is_extension = True + + def get_required(self): + """ + """ + return True + + def get_mechanisms(self): + """ + """ + results = [] + mechs = self.findall('{%s}mechanism' % self.namespace) + if mechs: + for mech in mechs: + results.append(mech.text) + return results + + def set_mechanisms(self, values): + """ + """ + self.del_mechanisms() + for val in values: + mech = ET.Element('{%s}mechanism' % self.namespace) + mech.text = val + self.append(mech) + + def del_mechanisms(self): + """ + """ + mechs = self.findall('{%s}mechanism' % self.namespace) + if mechs: + for mech in mechs: + self.xml.remove(mech) |