mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Working presence!
This commit is contained in:
parent
78739d9638
commit
b7e9b10cce
3 changed files with 43 additions and 16 deletions
|
@ -39,6 +39,7 @@ function init_stanza_dispatcher(session)
|
||||||
-- Authentication successful!
|
-- Authentication successful!
|
||||||
session.username = username;
|
session.username = username;
|
||||||
session.resource = resource;
|
session.resource = resource;
|
||||||
|
session.full_jid = username.."@"..session.host.."/"..session.resource;
|
||||||
if not hosts[session.host].sessions[username] then
|
if not hosts[session.host].sessions[username] then
|
||||||
hosts[session.host].sessions[username] = { sessions = {} };
|
hosts[session.host].sessions[username] = { sessions = {} };
|
||||||
end
|
end
|
||||||
|
@ -97,25 +98,40 @@ function init_stanza_dispatcher(session)
|
||||||
end
|
end
|
||||||
elseif stanza.name == "presence" then
|
elseif stanza.name == "presence" then
|
||||||
if session.roster then
|
if session.roster then
|
||||||
|
local initial_presence = not session.last_presence;
|
||||||
|
session.last_presence = stanza;
|
||||||
|
|
||||||
-- Broadcast presence and probes
|
-- Broadcast presence and probes
|
||||||
local broadcast = st.presence({ from = session.username.."@"..session.host.."/"..session.resource });
|
local broadcast = st.presence({ from = session.full_jid, type = stanza.attr.type });
|
||||||
local probe = st.presence { from = broadcast.attr.from, type = "probe" };
|
--local probe = st.presence { from = broadcast.attr.from, type = "probe" };
|
||||||
|
|
||||||
for child in stanza:children() do
|
for child in stanza:childtags() do
|
||||||
broadcast:tag(child.name, child.attr);
|
broadcast:text(tostring(child));
|
||||||
end
|
end
|
||||||
for contact in pairs(session.roster) do
|
for contact_jid in pairs(session.roster) do
|
||||||
broadcast.attr.to = contact;
|
broadcast.attr.to = contact_jid;
|
||||||
send_to(contact, broadcast);
|
send_to(contact_jid, broadcast);
|
||||||
--local host = jid.host(contact);
|
if initial_presence then
|
||||||
--if hosts[host] and hosts[host].type == "local" then
|
print("Initital presence");
|
||||||
--local node, host = jid.split(contact);
|
local node, host = jid.split(contact_jid);
|
||||||
--if host[host].sessions[node]
|
if hosts[host] and hosts[host].type == "local" then
|
||||||
--local pres = st.presence { from = con
|
local contact = hosts[host].sessions[node]
|
||||||
--else
|
if contact then
|
||||||
-- probe.attr.to = contact;
|
local pres = st.presence { to = session.full_jid };
|
||||||
-- send_to(contact, probe);
|
for resource, contact_session in pairs(contact.sessions) do
|
||||||
--end
|
if contact_session.last_presence then
|
||||||
|
pres.tags = contact_session.last_presence.tags;
|
||||||
|
pres.attr.from = contact_session.full_jid;
|
||||||
|
send(pres);
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
--FIXME: Do we send unavailable if they are offline?
|
||||||
|
else
|
||||||
|
probe.attr.to = contact;
|
||||||
|
send_to(contact, probe);
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Probe for our contacts' presence
|
-- Probe for our contacts' presence
|
||||||
|
|
2
main.lua
2
main.lua
|
@ -132,6 +132,8 @@ function handler(conn, data, err)
|
||||||
session.parser = lxp.new(session.xml_handlers, ":");
|
session.parser = lxp.new(session.xml_handlers, ":");
|
||||||
|
|
||||||
function session.disconnect(err)
|
function session.disconnect(err)
|
||||||
|
hosts[session.host].sessions[session.username] = nil;
|
||||||
|
session = nil;
|
||||||
print("Disconnected: "..err);
|
print("Disconnected: "..err);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -67,6 +67,15 @@ function stanza_mt:children()
|
||||||
if v then return v; end
|
if v then return v; end
|
||||||
end, self, i;
|
end, self, i;
|
||||||
|
|
||||||
|
end
|
||||||
|
function stanza_mt:childtags()
|
||||||
|
local i = 0;
|
||||||
|
return function (a)
|
||||||
|
i = i + 1
|
||||||
|
local v = self.tags[i]
|
||||||
|
if v then return v; end
|
||||||
|
end, self.tags[1], i;
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
function stanza_mt.__tostring(t)
|
function stanza_mt.__tostring(t)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue