summaryrefslogtreecommitdiff
path: root/sleekxmpp
diff options
context:
space:
mode:
authorRobert Robinson <rerobins@gmail.com>2015-09-14 16:35:47 -0600
committerRobert Robinson <rerobins@gmail.com>2015-09-14 17:04:43 -0600
commitf2bf6072ec447cf5cc331b4057b29078b1c932b5 (patch)
tree7ee54178e02ab403a9dbfa2454e0fe40e7de8d78 /sleekxmpp
parent5f9abe2e0e06b4cda898db90ba1b524640411e42 (diff)
downloadslixmpp-f2bf6072ec447cf5cc331b4057b29078b1c932b5.tar.gz
slixmpp-f2bf6072ec447cf5cc331b4057b29078b1c932b5.tar.bz2
slixmpp-f2bf6072ec447cf5cc331b4057b29078b1c932b5.tar.xz
slixmpp-f2bf6072ec447cf5cc331b4057b29078b1c932b5.zip
Add plugin
(cherry picked from commit 2296d56)
Diffstat (limited to 'sleekxmpp')
-rw-r--r--sleekxmpp/plugins/xep_0122/data_validation.py19
-rw-r--r--sleekxmpp/plugins/xep_0122/stanza.py34
2 files changed, 42 insertions, 11 deletions
diff --git a/sleekxmpp/plugins/xep_0122/data_validation.py b/sleekxmpp/plugins/xep_0122/data_validation.py
new file mode 100644
index 00000000..6f6cbe8c
--- /dev/null
+++ b/sleekxmpp/plugins/xep_0122/data_validation.py
@@ -0,0 +1,19 @@
+from sleekxmpp.xmlstream import register_stanza_plugin
+from sleekxmpp.plugins import BasePlugin
+from sleekxmpp.plugins.xep_0004 import stanza
+from sleekxmpp.plugins.xep_0004.stanza import FormField
+from sleekxmpp.plugins.xep_0122.stanza import FormValidation
+
+
+class XEP_0122(BasePlugin):
+ """
+ XEP-0004: Data Forms
+ """
+
+ name = 'xep_0122'
+ description = 'XEP-0122: Data Forms Validation'
+ dependencies = set(['xep_0004'])
+ stanza = stanza
+
+ def plugin_init(self):
+ register_stanza_plugin(FormField, FormValidation, iterable=True)
diff --git a/sleekxmpp/plugins/xep_0122/stanza.py b/sleekxmpp/plugins/xep_0122/stanza.py
index bf8545c8..bc3c177a 100644
--- a/sleekxmpp/plugins/xep_0122/stanza.py
+++ b/sleekxmpp/plugins/xep_0122/stanza.py
@@ -13,13 +13,17 @@ class FormValidation(ElementBase):
datatype='xs:dateTime'/>
<value>2003-10-06T11:22:00-07:00</value>
</field>
+
+ Questions:
+ Should this look at the datatype value and convert the range values as appropriate?
+ Should this stanza provide a pass/fail for a value from the field, or convert field value to datatype?
"""
namespace = 'http://jabber.org/protocol/xdata-validate'
name = 'validate'
plugin_attrib = 'validate'
- interfaces = set(('datatype', 'basic', 'open', 'range', 'regex', ))
- sub_interfaces = set(('basic', 'open', 'range', 'regex', ))
+ interfaces = {'datatype', 'basic', 'open', 'range', 'regex', }
+ sub_interfaces = {'basic', 'open', 'range', 'regex', }
plugin_attrib_map = {}
plugin_tag_map = {}
@@ -33,22 +37,28 @@ class FormValidation(ElementBase):
if value:
self._add_field('basic')
else:
- self['basic'] = False
+ del self['basic']
def set_open(self, value):
if value:
self._add_field('open')
+ else:
+ del self['open']
def set_regex(self, regex):
if regex:
_regex = self._add_field('regex')
_regex.text = regex
+ else:
+ del self['regex']
def set_range(self, value, minimum=None, maximum=None):
if value:
_range = self._add_field('range')
_range.attrib['min'] = str(minimum)
_range.attrib['max'] = str(maximum)
+ else:
+ del self['range']
def remove_all(self, except_tag=None):
for a in self.sub_interfaces:
@@ -65,18 +75,20 @@ class FormValidation(ElementBase):
def get_regex(self):
present = self.xml.find('{%s}regex' % self.namespace)
- if present:
+ if present is not None:
return present.text
return False
def get_range(self):
- present = self.xml.find('{%s}regex' % self.namespace)
- if present:
- return dict(present.attrib)
+ present = self.xml.find('{%s}range' % self.namespace)
+ if present is not None:
+ attributes = present.attrib
+ return_value = dict()
+ if 'min' in attributes:
+ return_value['minimum'] = attributes['min']
+ if 'max' in attributes:
+ return_value['maximum'] = attributes['max']
+ return return_value
return False
-
-
-FormValidation.getBasic = FormValidation.get_basic
-FormValidation.setBasic = FormValidation.set_basic