# HG changeset patch # User Matthew Wild # Date 1441490920 -3600 # Node ID a45f2f79e99bdbcfeac54c37986942647d3b42ad # Parent 23b3c8e294d29a003bce14cccb96cbca8961919d mod_http_user_count: Support for host and MUC session counts diff -r 23b3c8e294d2 -r a45f2f79e99b mod_http_user_count/mod_http_user_count.lua --- a/mod_http_user_count/mod_http_user_count.lua Fri Sep 04 00:41:29 2015 +0200 +++ b/mod_http_user_count/mod_http_user_count.lua Sat Sep 05 23:08:40 2015 +0100 @@ -1,10 +1,33 @@ local it = require "util.iterators"; +local jid_split = require "util.jid".prepped_split; module:depends("http"); +local function check_muc(jid) + local room_name, host = jid_split(jid); + if not hosts[host] then + return nil, "No such host: "..host; + elseif not hosts[host].modules.muc then + return nil, "Host '"..host.."' is not a MUC service"; + end + return room_name, host; +end + module:provides("http", { route = { ["GET /sessions"] = function () return tostring(it.count(it.keys(prosody.full_sessions))); end; ["GET /users"] = function () return tostring(it.count(it.keys(prosody.bare_sessions))); end; + ["GET /host"] = function () return tostring(it.count(it.keys(prosody.hosts[module.host].sessions))); end; + ["GET /room/*"] = function (request, room_jid) + local name, host = check_muc(room_jid); + if not name then + return "0"; + end + local room = prosody.hosts[host].modules.muc.rooms[name.."@"..host]; + if not room then + return "0"; + end + return tostring(it.count(it.keys(room._occupants))); + end; }; });