Changeset

88:e204ef45bdd6

Add doc/example_bosh.lua
author Matthew Wild <mwild1@gmail.com>
date Fri, 06 Aug 2010 16:31:30 +0100
parents 87:d59073722924
children 89:1752a9097e6b
files doc/example_bosh.lua
diffstat 1 files changed, 41 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/example_bosh.lua	Fri Aug 06 16:31:30 2010 +0100
@@ -0,0 +1,41 @@
+-- Change these:
+local jid, password = "user@example.com", "secret";
+
+-- This line squishes verse each time you run,
+-- handy if you're hacking on Verse itself
+--os.execute("squish --minify-level=none verse");
+
+require "verse" -- Verse main library
+require "verse.bosh" -- Verse BOSH support
+require "verse.client" -- XMPP client library
+
+c = verse.new_bosh(nil, "http://example.com:5280/http-bind");
+c:add_plugin("version");
+
+-- Add some hooks for debugging
+c:hook("opened", function () print("Stream opened!") end);
+c:hook("closed", function () print("Stream closed!") end);
+c:hook("stanza", function (stanza) print("Stanza:", stanza) end);
+
+-- This one prints all received data
+c:hook("incoming-raw", print, 1000);
+
+-- Print a message after authentication
+c:hook("authentication-success", function () print("Logged in!"); end);
+c:hook("authentication-failure", function (err) print("Failed to log in! Error: "..tostring(err.condition)); end);
+
+-- Print a message and exit when disconnected
+c:hook("disconnected", function () print("Disconnected!"); os.exit(); end);
+
+-- Now, actually start the connection:
+c:connect_client(jid, password);
+
+-- Catch the "ready" event to know when the stream is ready to use
+c:hook("ready", function ()
+	print("Stream ready!");
+	c.version:set{ name = "Verse example BOSH client" };
+	c:query_version(c.jid, function (v) print("I am using "..(v.name or "<unknown>")); end);
+end);
+
+print("Starting loop...")
+verse.loop()