Software /
code /
prosody-modules
File
mod_last_offline/mod_last_offline.lua @ 890:7ac1b8a799be
mod_carbons_adhoc: Initial commit.
This module will add an Adhoc-command by which a user can see if Message
Carbons (XEP-0280) are generated for his clients and also which version
is used for the individual client. Clients which receive copies as per
mod_carbons_copies will be listed as Version 0 carbons.
author | Michael Holzt <kju@fqdn.org> |
---|---|
date | Sun, 23 Dec 2012 19:36:31 +0100 |
parent | 883:bec0a995f5df |
line wrap: on
line source
local datamanager = require "util.datamanager"; local jid_split = require "util.jid".split; local time = os.time; local NULL = {}; local host = module.host; module:hook("resource-unbind", function(event) local session = event.session; if session.username then datamanager.store(session.username, host, "last_online", { timestamp = time(), }); end end); local function offline_stamp(event) local stanza = event.stanza; local node, to_host = jid_split(stanza.attr.from); if to_host == host and event.origin == hosts[host] and stanza.attr.type == "unavailable" then local timestamp = (datamanager.load(node, host, "last_online") or NULL).timestamp; if timestamp then stanza:tag("delay", { xmlns = "urn:xmpp:delay", from = host, stamp = datetime.datetime(timestamp), }):up(); end end end module:hook("pre-presence/bare", offline_stamp); module:hook("pre-presence/full", offline_stamp);