summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0122/stanza.py
diff options
context:
space:
mode:
authorRobert Robinson <rerobins@gmail.com>2015-09-12 22:10:28 -0600
committerRobert Robinson <rerobins@gmail.com>2015-09-14 17:04:08 -0600
commitea65b672e75d2b544a2d9c3ef0d497c1e66075bc (patch)
tree4753af9909454742d5c45393913e538f642b301e /sleekxmpp/plugins/xep_0122/stanza.py
parent93c705fb3133b27388c0845f925b0615c88414b1 (diff)
downloadslixmpp-ea65b672e75d2b544a2d9c3ef0d497c1e66075bc.tar.gz
slixmpp-ea65b672e75d2b544a2d9c3ef0d497c1e66075bc.tar.bz2
slixmpp-ea65b672e75d2b544a2d9c3ef0d497c1e66075bc.tar.xz
slixmpp-ea65b672e75d2b544a2d9c3ef0d497c1e66075bc.zip
Initial cut at getting the stanzas to work.
(cherry picked from commit 8c7df49)
Diffstat (limited to 'sleekxmpp/plugins/xep_0122/stanza.py')
-rw-r--r--sleekxmpp/plugins/xep_0122/stanza.py83
1 files changed, 83 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0122/stanza.py b/sleekxmpp/plugins/xep_0122/stanza.py
new file mode 100644
index 00000000..1807b11c
--- /dev/null
+++ b/sleekxmpp/plugins/xep_0122/stanza.py
@@ -0,0 +1,83 @@
+
+from sleekxmpp.xmlstream import ElementBase, ET
+
+
+class FormValidation(ElementBase):
+ """
+ Validation values for form fields.
+
+ Example:
+
+ <field var='evt.date' type='text-single' label='Event Date/Time'>
+ <validate xmlns='http://jabber.org/protocol/xdata-validate'
+ datatype='xs:dateTime'/>
+ <value>2003-10-06T11:22:00-07:00</value>
+ </field>
+ """
+
+ 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', ))
+ plugin_attrib_map = {}
+ plugin_tag_map = {}
+
+ def _add_field(self, name):
+ item_xml = ET.Element('{%s}%s' % (self.namespace, name))
+ self.xml.append(item_xml)
+ return item_xml
+
+ def set_basic(self, value):
+ self.remove_all()
+ if value:
+ self._add_field('basic')
+
+ def set_open(self, value):
+ self.remove_all()
+ if value:
+ self._add_field('open')
+
+ def set_regex(self, regex):
+ self.remove_all()
+ if regex:
+ _regex = self._add_field('regex')
+ _regex.text = regex
+
+ def set_range(self, value, minimum=None, maximum=None):
+ self.remove_all()
+ if value:
+ _range = self._add_field('range')
+ _range.attrib['min'] = str(minimum)
+ _range.attrib['max'] = str(maximum)
+
+ def remove_all(self, except_tag=None):
+ for a in self.sub_interfaces:
+ if a != except_tag:
+ del self[a]
+
+ def get_basic(self):
+ present = self.xml.find('{%s}basic' % self.namespace)
+ return present is not None
+
+ def get_open(self):
+ present = self.xml.find('{%s}open' % self.namespace)
+ return present is not None
+
+ def get_regex(self):
+ present = self.xml.find('{%s}regex' % self.namespace)
+ if present:
+ return present.text
+
+ return False
+
+ def get_range(self):
+ present = self.xml.find('{%s}regex' % self.namespace)
+ if present:
+ return dict(present.attrib)
+
+ return False
+
+
+FormValidation.getBasic = FormValidation.get_basic
+FormValidation.setBasic = FormValidation.set_basic