Software /
code /
verse
Annotate
plugins/bind.lua @ 226:efd66bcc62c1
doc: Add Carbons example
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 02 Nov 2011 01:18:53 +0100 |
parent | 197:7e98cf2c1d8d |
child | 245:19356e2150f3 |
rev | line source |
---|---|
9 | 1 local xmlns_bind = "urn:ietf:params:xml:ns:xmpp-bind"; |
2 | |
3 function verse.plugins.bind(stream) | |
4 local function handle_features(features) | |
5 if stream.bound then return; end | |
6 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
|
7 stream:send_iq(verse.iq({ type = "set" }):tag("bind", {xmlns=xmlns_bind}):tag("resource"):text(stream.resource), |
9 | 8 function (reply) |
9 if reply.attr.type == "result" then | |
10 local result_jid = reply | |
11 :get_child("bind", xmlns_bind) | |
12 :get_child("jid") | |
13 :get_text(); | |
14 stream.username, stream.host, stream.resource = jid.split(result_jid); | |
15 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
|
16 stream:event("bind-success", { jid = result_jid }); |
9 | 17 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
|
18 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
|
19 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
|
20 stream:event("bind-failure", { error = condition, text = text, type = type }); |
9 | 21 end |
22 end); | |
23 end | |
24 stream:hook("stream-features", handle_features, 200); | |
25 return true; | |
26 end | |
27 |