File

plugins/session.lua @ 76:927167321283

verse.client: Fire 'ready' event on stream when resource binding or session negotiation is complete, hook this instead of binding-success
author Matthew Wild <mwild1@gmail.com>
date Sun, 30 May 2010 02:49:02 +0100
parent 75:f5ac4e39e84f
child 78:f4188eff53a7
line wrap: on
line source

local st = require "util.stanza";
local xmlns_session = "urn:ietf:params:xml:ns:xmpp-session";

function verse.plugins.session(stream)
	
	local function handle_features(features)
		local session_feature = features:get_child("session", xmlns_session);
		if session_feature and not session_feature:get_child("optional") then
			local function handle_binding(jid)
				stream:debug("Establishing Session...");
				stream:send_iq(st.iq({ type = "set" }):tag("session", {xmlns=xmlns_session}),
					function (reply)
						if reply.attr.type == "result" then
							stream:event("session-success");
						elseif reply.attr.type == "error" then
							local err = reply:child_with_name("error");
							local type, condition, text = reply:get_error();
							stream:event("session-failure", { error = condition, text = text, type = type });
						end
					end);
				return true;
			end
			stream:hook("binding-success", handle_binding);
		end
	end
	stream:hook("stream-features", handle_features);
	
	return true;
end