diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-11-10 01:33:37 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-11-10 01:33:37 +0500 |
commit | b2a1a80faf383663f9e67f9cc64403bf09d43df3 (patch) | |
tree | 5e5f1072ec164d55c8d7d9e4d8a6e4ab1f78f159 /plugins | |
parent | 439b80fc6ee666302ecd7d7d50bdb9c5fa4e12cc (diff) | |
download | prosody-b2a1a80faf383663f9e67f9cc64403bf09d43df3.tar.gz prosody-b2a1a80faf383663f9e67f9cc64403bf09d43df3.zip |
Added mod_uptime: [XEP-0012: Last Activity] queries now work when directed at the server.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_uptime.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/mod_uptime.lua b/plugins/mod_uptime.lua new file mode 100644 index 00000000..55e5f168 --- /dev/null +++ b/plugins/mod_uptime.lua @@ -0,0 +1,25 @@ +
+local st = require "util.stanza"
+local send = require "core.sessionmanager".send_to_session
+
+local jid_split = require "util.jid".split;
+local t_concat = table.concat;
+
+local start_time = os.time();
+
+add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
+ function (origin, stanza)
+ if stanza.tags[1].name == "query" then
+ if stanza.attr.type == "get" then
+ local node, host, resource = jid_split(stanza.attr.to);
+ if node or resource then
+ -- TODO
+ else
+ origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
+ return true;
+ end
+ end
+ end
+ end);
+
+
|