doc/example_pep.lua: Example script to use the PEP plugin

Mon, 13 Sep 2010 14:12:09 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 13 Sep 2010 14:12:09 +0100
changeset 128
720b9ccd7ea4
parent 127
8f831f259cea
child 129
c0be31a5ff55

doc/example_pep.lua: Example script to use the PEP plugin

doc/example_pep.lua file | annotate | diff | comparison | revisions
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/example_pep.lua	Mon Sep 13 14:12:09 2010 +0100
@@ -0,0 +1,52 @@
+-- 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");
+
+require "verse" -- Verse main library
+require "verse.client" -- XMPP client library
+
+c = verse.new();
+c:add_plugin("version");
+c:add_plugin("disco");
+c:add_plugin("pep");
+
+-- 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 client" };
+	c:publish_pep(verse.stanza("tune", { xmlns = "http://jabber.org/protocol/tune" })
+		:tag("title"):text("Beautiful Cedars"):up()
+		:tag("artist"):text("The Spinners"):up()
+		:tag("source"):text("Not Quite Folk"):up()
+		:tag("track"):text("4"):up()
+	);
+	
+	c:hook_pep("http://jabber.org/protocol/mood", function (event)
+		print(event.from.." is "..event.item.tags[1].name);
+	end);
+	c:send(verse.presence():add_child(c:caps()));
+end);
+
+print("Starting loop...")
+verse.loop()

mercurial