summaryrefslogtreecommitdiff
path: root/examples/adhoc_provider.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-08-18 01:06:59 -0700
committerLance Stout <lancestout@gmail.com>2011-08-18 01:06:59 -0700
commit015f662249eec9a0504bea1d614ad1138d8e19ab (patch)
treefa3da93e6dabd8a27aead8f034bb02e636d849e5 /examples/adhoc_provider.py
parent8d998d71a3f21a8ee6e887b87daaed3285329522 (diff)
downloadslixmpp-015f662249eec9a0504bea1d614ad1138d8e19ab.tar.gz
slixmpp-015f662249eec9a0504bea1d614ad1138d8e19ab.tar.bz2
slixmpp-015f662249eec9a0504bea1d614ad1138d8e19ab.tar.xz
slixmpp-015f662249eec9a0504bea1d614ad1138d8e19ab.zip
Update examples to work with Python3 (raw_input vs input)
Diffstat (limited to 'examples/adhoc_provider.py')
-rwxr-xr-xexamples/adhoc_provider.py25
1 files changed, 23 insertions, 2 deletions
diff --git a/examples/adhoc_provider.py b/examples/adhoc_provider.py
index 3316a0c6..5fa26334 100755
--- a/examples/adhoc_provider.py
+++ b/examples/adhoc_provider.py
@@ -24,6 +24,8 @@ import sleekxmpp
if sys.version_info < (3, 0):
reload(sys)
sys.setdefaultencoding('utf8')
+else:
+ raw_input = input
class CommandBot(sleekxmpp.ClientXMPP):
@@ -79,9 +81,21 @@ class CommandBot(sleekxmpp.ClientXMPP):
here to persist across handler callbacks.
"""
form = self['xep_0004'].makeForm('form', 'Greeting')
+ form['instructions'] = 'Send a custom greeting to a JID'
form.addField(var='greeting',
ftype='text-single',
label='Your greeting')
+ form.addField(var='recipient',
+ ftype='jid-single',
+ label='Who to greet')
+ form.addField(var='message',
+ ftype='text-multi',
+ label='Your message')
+ form.addField(var='demobool',
+ ftype='boolean',
+ label='Test booleans',
+ desc='Test default values too',
+ value=True)
session['payload'] = form
session['next'] = self._handle_command_complete
@@ -123,8 +137,14 @@ class CommandBot(sleekxmpp.ClientXMPP):
form = payload
greeting = form['values']['greeting']
- self.send_message(mto=session['from'],
- mbody="%s, World!" % greeting)
+ recipient = form['values']['recipient']
+ message = '\n'.join(form['values']['message'])
+
+ if recipient is None:
+ recipient = session['from']
+ self.send_message(mto=recipient,
+ mbody="%s, %s!\n%s" % (greeting, recipient, message),
+ mtype='chat')
# Having no return statement is the same as unsetting the 'payload'
# and 'next' session values and returning the session.
@@ -176,6 +196,7 @@ if __name__ == '__main__':
xmpp.register_plugin('xep_0030') # Service Discovery
xmpp.register_plugin('xep_0004') # Data Forms
xmpp.register_plugin('xep_0050') # Adhoc Commands
+ xmpp.register_plugin('xep_0199', {'keepalive': True, 'frequency':15})
# If you are working with an OpenFire server, you may need
# to adjust the SSL version used: