Merge 0.10->trunk
[prosody.git] / plugins / mod_watchregistrations.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 local host = module:get_host();
11 local jid_prep = require "util.jid".prep;
12
13 local registration_watchers = module:get_option_set("registration_watchers", module:get_option("admins", {})) / jid_prep;
14 local registration_notification = module:get_option_string("registration_notification", "User $username just registered on $host from $ip");
15
16 local st = require "util.stanza";
17
18 module:hook("user-registered", function (user)
19         module:log("debug", "Notifying of new registration");
20         local message = st.message{ type = "chat", from = host }
21                 :tag("body")
22                         :text(registration_notification:gsub("%$(%w+)", function (v)
23                                 return user[v] or user.session and user.session[v] or nil;
24                         end));
25         for jid in registration_watchers do
26                 module:log("debug", "Notifying %s", jid);
27                 message.attr.to = jid;
28                 module:send(message);
29         end
30 end);