Software /
code /
verse
File
plugins/bind.lua @ 245:19356e2150f3
plugins.bind: get_child_text()
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 24 Nov 2011 07:10:26 +0100 |
parent | 197:7e98cf2c1d8d |
child | 250:a5ac643a7fd6 |
line wrap: on
line source
local xmlns_bind = "urn:ietf:params:xml:ns:xmpp-bind"; function verse.plugins.bind(stream) local function handle_features(features) if stream.bound then return; end stream:debug("Binding resource..."); stream:send_iq(verse.iq({ type = "set" }):tag("bind", {xmlns=xmlns_bind}):tag("resource"):text(stream.resource), function (reply) if reply.attr.type == "result" then local result_jid = reply :get_child("bind", xmlns_bind) :get_child_text("jid"); stream.username, stream.host, stream.resource = jid.split(result_jid); stream.jid, stream.bound = result_jid, true; stream:event("bind-success", { jid = result_jid }); elseif reply.attr.type == "error" then local err = reply:child_with_name("error"); local type, condition, text = reply:get_error(); stream:event("bind-failure", { error = condition, text = text, type = type }); end end); end stream:hook("stream-features", handle_features, 200); return true; end