mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_lastactivity: Simplify iq handling by hooking on iq-get/ instead of iq/.
This commit is contained in:
parent
023fc8feb6
commit
911cd71d12
1 changed files with 11 additions and 13 deletions
|
@ -24,22 +24,20 @@ module:hook("pre-presence/bare", function(event)
|
|||
end
|
||||
end, 10);
|
||||
|
||||
module:hook("iq/bare/jabber:iq:last:query", function(event)
|
||||
module:hook("iq-get/bare/jabber:iq:last:query", function(event)
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
if stanza.attr.type == "get" then
|
||||
local username = jid_split(stanza.attr.to) or origin.username;
|
||||
if not stanza.attr.to or is_contact_subscribed(username, module.host, jid_bare(stanza.attr.from)) then
|
||||
local seconds, text = "0", "";
|
||||
if map[username] then
|
||||
seconds = tostring(os.difftime(os.time(), map[username].t));
|
||||
text = map[username].s;
|
||||
end
|
||||
origin.send(st.reply(stanza):tag('query', {xmlns='jabber:iq:last', seconds=seconds}):text(text));
|
||||
else
|
||||
origin.send(st.error_reply(stanza, 'auth', 'forbidden'));
|
||||
local username = jid_split(stanza.attr.to) or origin.username;
|
||||
if not stanza.attr.to or is_contact_subscribed(username, module.host, jid_bare(stanza.attr.from)) then
|
||||
local seconds, text = "0", "";
|
||||
if map[username] then
|
||||
seconds = tostring(os.difftime(os.time(), map[username].t));
|
||||
text = map[username].s;
|
||||
end
|
||||
return true;
|
||||
origin.send(st.reply(stanza):tag('query', {xmlns='jabber:iq:last', seconds=seconds}):text(text));
|
||||
else
|
||||
origin.send(st.error_reply(stanza, 'auth', 'forbidden'));
|
||||
end
|
||||
return true;
|
||||
end);
|
||||
|
||||
module.save = function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue