plugins/mod_watchregistrations.lua

Fri, 26 Jun 2009 08:54:22 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Fri, 26 Jun 2009 08:54:22 +0500
changeset 1418
d14de6cb8b5b
parent 1251
302582b827ed
child 1522
569d58d21612
permissions
-rw-r--r--

mod_message, mod_presence: Maintain list of top resources. Less work in routing messages to bare JIDs. - #optimization


local host = module:get_host();

local config = require "core.configmanager";

local registration_watchers = config.get(host, "core", "registration_watchers") 
	or config.get(host, "core", "admins") or {};

local registration_alert = config.get(host, "core", "registration_notification") or "User $username just registered on $host from $ip";

local st = require "util.stanza";

module:hook("user-registered",
	function (user)
		module:log("debug", "Notifying of new registration");
		local message = st.message{ type = "chat", from = host }
					:tag("body")
					:text(registration_alert:gsub("%$(%w+)", 
						function (v) return user[v] or user.session and user.session[v] or nil; end));
		
		for _, jid in ipairs(registration_watchers) do
			module:log("debug", "Notifying %s", jid);
			message.attr.to = jid;
			core_route_stanza(hosts[host], message);
		end
	end);

mercurial