summaryrefslogtreecommitdiff
path: root/sleekxmpp/component_example.py
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@netflint.net>2009-06-03 22:56:51 +0000
committerNathan Fritz <fritzy@netflint.net>2009-06-03 22:56:51 +0000
commit96b103b27599e5af247c1e3b95d62c80c1e32a63 (patch)
tree0527b1607b16adb020759ee9a944e1b22e3e0e6b /sleekxmpp/component_example.py
downloadslixmpp-96b103b27599e5af247c1e3b95d62c80c1e32a63.tar.gz
slixmpp-96b103b27599e5af247c1e3b95d62c80c1e32a63.tar.bz2
slixmpp-96b103b27599e5af247c1e3b95d62c80c1e32a63.tar.xz
slixmpp-96b103b27599e5af247c1e3b95d62c80c1e32a63.zip
moved seesmic branch to trunk
Diffstat (limited to 'sleekxmpp/component_example.py')
-rw-r--r--sleekxmpp/component_example.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/sleekxmpp/component_example.py b/sleekxmpp/component_example.py
new file mode 100644
index 00000000..04802370
--- /dev/null
+++ b/sleekxmpp/component_example.py
@@ -0,0 +1,42 @@
+import sleekxmpp.componentxmpp
+import logging
+from optparse import OptionParser
+import time
+
+class Example(sleekxmpp.componentxmpp.ComponentXMPP):
+
+ def __init__(self, jid, password):
+ sleekxmpp.componentxmpp.ComponentXMPP.__init__(self, jid, password, 'localhost', 5060)
+ self.add_event_handler("session_start", self.start)
+ self.add_event_handler("message", self.message)
+
+ def start(self, event):
+ #self.getRoster()
+ #self.sendPresence(pto='admin@tigase.netflint.net/sarkozy')
+ self.sendPresence(pto='tigase.netflint.net')
+ pass
+
+ def message(self, event):
+ print event
+ self.sendMessage("%s/%s" % (event['jid'], event['resource']), "Thanks for sending me, \"%s\"." % event['message'], mtype=event['type'])
+
+if __name__ == '__main__':
+ #parse command line arguements
+ optp = OptionParser()
+ optp.add_option('-q','--quiet', help='set logging to ERROR', action='store_const', dest='loglevel', const=logging.ERROR, default=logging.INFO)
+ optp.add_option('-d','--debug', help='set logging to DEBUG', action='store_const', dest='loglevel', const=logging.DEBUG, default=logging.INFO)
+ optp.add_option('-v','--verbose', help='set logging to COMM', action='store_const', dest='loglevel', const=5, default=logging.INFO)
+ optp.add_option("-c","--config", dest="configfile", default="config.xml", help="set config file to use")
+ opts,args = optp.parse_args()
+
+ logging.basicConfig(level=opts.loglevel, format='%(levelname)-8s %(message)s')
+ xmpp = Example('component.server.tld', 'asdfasdf')
+ xmpp.registerPlugin('xep_0004')
+ xmpp.registerPlugin('xep_0030')
+ xmpp.registerPlugin('xep_0060')
+ xmpp.registerPlugin('xep_0199')
+ if xmpp.connect():
+ xmpp.process(threaded=False)
+ print("done")
+ else:
+ print("Unable to connect.")