plugins/bind.lua

Sun, 12 Feb 2012 20:21:52 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 12 Feb 2012 20:21:52 +0000
changeset 279
7a0aa3d055f4
parent 250
a5ac643a7fd6
child 300
b1d50f9a04c7
permissions
-rw-r--r--

verse: Accept a file object as a log handler, and automatically call :write() on it with a formatted message

250
a5ac643a7fd6 added local verse var to all plugins
mva <mva@mva.name>
parents: 245
diff changeset
1 local verse = require "verse";
a5ac643a7fd6 added local verse var to all plugins
mva <mva@mva.name>
parents: 245
diff changeset
2
9
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 local xmlns_bind = "urn:ietf:params:xml:ns:xmpp-bind";
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 function verse.plugins.bind(stream)
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 local function handle_features(features)
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 if stream.bound then return; end
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 stream:debug("Binding resource...");
197
7e98cf2c1d8d plugins.*: Use verse.stanza() & co instead of require util.stanza
Kim Alvefur <zash@zash.se>
parents: 160
diff changeset
9 stream:send_iq(verse.iq({ type = "set" }):tag("bind", {xmlns=xmlns_bind}):tag("resource"):text(stream.resource),
9
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 function (reply)
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 if reply.attr.type == "result" then
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 local result_jid = reply
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 :get_child("bind", xmlns_bind)
245
19356e2150f3 plugins.bind: get_child_text()
Kim Alvefur <zash@zash.se>
parents: 197
diff changeset
14 :get_child_text("jid");
9
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 stream.username, stream.host, stream.resource = jid.split(result_jid);
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 stream.jid, stream.bound = result_jid, true;
160
5cbbfe42212e plugins.bind: Fix the bind-success event, now fires with data { jid = result_jid } (thanks Jon)
Matthew Wild <mwild1@gmail.com>
parents: 78
diff changeset
17 stream:event("bind-success", { jid = result_jid });
9
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 elseif reply.attr.type == "error" then
43
a33036b7e5ab verse.plugins.bind: Fix incorrect variable name causing traceback on unsuccessful bind
Matthew Wild <mwild1@gmail.com>
parents: 40
diff changeset
19 local err = reply:child_with_name("error");
a33036b7e5ab verse.plugins.bind: Fix incorrect variable name causing traceback on unsuccessful bind
Matthew Wild <mwild1@gmail.com>
parents: 40
diff changeset
20 local type, condition, text = reply:get_error();
78
f4188eff53a7 verse.client, verse.plugins.bind, verse.plugins.session: Rename binding-success and binding-failure to bind-success and bind-failure for consistency
Matthew Wild <mwild1@gmail.com>
parents: 43
diff changeset
21 stream:event("bind-failure", { error = condition, text = text, type = type });
9
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 end
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 end);
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 end
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25 stream:hook("stream-features", handle_features, 200);
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26 return true;
ca225a2d67b4 plugins.bind: Add plugin
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27 end

mercurial