2004-08-13 00:34:19 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_announce.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2004-08-13 00:34:19 +02:00
|
|
|
%%% Purpose : Manage announce messages
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 11 Aug 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2012-02-23 16:52:34 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2012 ProcessOne
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
2009-01-12 15:44:42 +01:00
|
|
|
%%%
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License
|
|
|
|
%%% along with this program; if not, write to the Free Software
|
|
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
2004-08-13 00:34:19 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Implements a small subset of XEP-0133: Service Administration
|
|
|
|
%%% Version 1.1 (2005-08-19)
|
2007-09-04 09:55:41 +02:00
|
|
|
|
2004-08-13 00:34:19 +02:00
|
|
|
-module(mod_announce).
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2004-08-13 00:34:19 +02:00
|
|
|
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
-export([start/2,
|
2004-08-13 00:34:19 +02:00
|
|
|
init/0,
|
2005-06-20 05:18:13 +02:00
|
|
|
stop/1,
|
2004-08-13 00:34:19 +02:00
|
|
|
announce/3,
|
2006-01-19 03:17:31 +01:00
|
|
|
send_motd/1,
|
|
|
|
disco_identity/5,
|
|
|
|
disco_features/5,
|
|
|
|
disco_items/5,
|
2010-01-03 01:38:00 +01:00
|
|
|
send_announcement_to_all/3,
|
2006-01-19 03:17:31 +01:00
|
|
|
announce_commands/4,
|
|
|
|
announce_items/4]).
|
2004-08-13 00:34:19 +02:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
|
|
|
-include("jlib.hrl").
|
2006-01-19 03:17:31 +01:00
|
|
|
-include("adhoc.hrl").
|
2004-08-13 00:34:19 +02:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
-record(motd, {server, packet}).
|
|
|
|
-record(motd_users, {us, dummy = []}).
|
2004-08-13 00:34:19 +02:00
|
|
|
|
|
|
|
-define(PROCNAME, ejabberd_announce).
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
-define(NS_ADMINL(Sub), ["http:","jabber.org","protocol","admin", Sub]).
|
|
|
|
tokenize(Node) -> string:tokens(Node, "/#").
|
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
start(Host, Opts) ->
|
|
|
|
case gen_mod:db_type(Opts) of
|
|
|
|
mnesia ->
|
|
|
|
mnesia:create_table(motd,
|
|
|
|
[{disc_copies, [node()]},
|
|
|
|
{attributes,
|
|
|
|
record_info(fields, motd)}]),
|
|
|
|
mnesia:create_table(motd_users,
|
|
|
|
[{disc_copies, [node()]},
|
|
|
|
{attributes,
|
|
|
|
record_info(fields, motd_users)}]),
|
|
|
|
update_tables();
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end,
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(local_send_to_resource_hook, Host,
|
2004-08-13 00:34:19 +02:00
|
|
|
?MODULE, announce, 50),
|
2006-01-19 03:17:31 +01:00
|
|
|
ejabberd_hooks:add(disco_local_identity, Host, ?MODULE, disco_identity, 50),
|
|
|
|
ejabberd_hooks:add(disco_local_features, Host, ?MODULE, disco_features, 50),
|
|
|
|
ejabberd_hooks:add(disco_local_items, Host, ?MODULE, disco_items, 50),
|
|
|
|
ejabberd_hooks:add(adhoc_local_items, Host, ?MODULE, announce_items, 50),
|
|
|
|
ejabberd_hooks:add(adhoc_local_commands, Host, ?MODULE, announce_commands, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(user_available_hook, Host,
|
2004-08-13 00:34:19 +02:00
|
|
|
?MODULE, send_motd, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
register(gen_mod:get_module_proc(Host, ?PROCNAME),
|
|
|
|
proc_lib:spawn(?MODULE, init, [])).
|
2004-08-13 00:34:19 +02:00
|
|
|
|
|
|
|
init() ->
|
|
|
|
loop().
|
|
|
|
|
|
|
|
loop() ->
|
|
|
|
receive
|
2004-08-22 23:54:14 +02:00
|
|
|
{announce_all, From, To, Packet} ->
|
|
|
|
announce_all(From, To, Packet),
|
|
|
|
loop();
|
2007-08-03 10:53:05 +02:00
|
|
|
{announce_all_hosts_all, From, To, Packet} ->
|
|
|
|
announce_all_hosts_all(From, To, Packet),
|
|
|
|
loop();
|
2004-08-13 00:34:19 +02:00
|
|
|
{announce_online, From, To, Packet} ->
|
|
|
|
announce_online(From, To, Packet),
|
|
|
|
loop();
|
2005-04-17 20:08:34 +02:00
|
|
|
{announce_all_hosts_online, From, To, Packet} ->
|
|
|
|
announce_all_hosts_online(From, To, Packet),
|
|
|
|
loop();
|
2004-08-13 00:34:19 +02:00
|
|
|
{announce_motd, From, To, Packet} ->
|
|
|
|
announce_motd(From, To, Packet),
|
|
|
|
loop();
|
2007-08-03 10:53:05 +02:00
|
|
|
{announce_all_hosts_motd, From, To, Packet} ->
|
|
|
|
announce_all_hosts_motd(From, To, Packet),
|
|
|
|
loop();
|
2004-08-13 00:34:19 +02:00
|
|
|
{announce_motd_update, From, To, Packet} ->
|
|
|
|
announce_motd_update(From, To, Packet),
|
|
|
|
loop();
|
2007-08-03 10:53:05 +02:00
|
|
|
{announce_all_hosts_motd_update, From, To, Packet} ->
|
|
|
|
announce_all_hosts_motd_update(From, To, Packet),
|
|
|
|
loop();
|
2004-08-13 00:34:19 +02:00
|
|
|
{announce_motd_delete, From, To, Packet} ->
|
|
|
|
announce_motd_delete(From, To, Packet),
|
|
|
|
loop();
|
2007-08-03 10:53:05 +02:00
|
|
|
{announce_all_hosts_motd_delete, From, To, Packet} ->
|
|
|
|
announce_all_hosts_motd_delete(From, To, Packet),
|
|
|
|
loop();
|
2004-08-13 00:34:19 +02:00
|
|
|
_ ->
|
|
|
|
loop()
|
|
|
|
end.
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
stop(Host) ->
|
2006-01-19 03:17:31 +01:00
|
|
|
ejabberd_hooks:delete(adhoc_local_commands, Host, ?MODULE, announce_commands, 50),
|
|
|
|
ejabberd_hooks:delete(adhoc_local_items, Host, ?MODULE, announce_items, 50),
|
|
|
|
ejabberd_hooks:delete(disco_local_identity, Host, ?MODULE, disco_identity, 50),
|
|
|
|
ejabberd_hooks:delete(disco_local_features, Host, ?MODULE, disco_features, 50),
|
|
|
|
ejabberd_hooks:delete(disco_local_items, Host, ?MODULE, disco_items, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(local_send_to_resource_hook, Host,
|
2004-08-13 00:34:19 +02:00
|
|
|
?MODULE, announce, 50),
|
2007-11-27 16:18:45 +01:00
|
|
|
ejabberd_hooks:delete(user_available_hook, Host,
|
2004-08-13 00:34:19 +02:00
|
|
|
?MODULE, send_motd, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME),
|
|
|
|
exit(whereis(Proc), stop),
|
|
|
|
{wait, Proc}.
|
2004-08-13 00:34:19 +02:00
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%% Announcing via messages to a custom resource
|
2004-08-13 00:34:19 +02:00
|
|
|
announce(From, To, Packet) ->
|
|
|
|
case To of
|
|
|
|
#jid{luser = "", lresource = Res} ->
|
|
|
|
{xmlelement, Name, _Attrs, _Els} = Packet,
|
2005-06-20 05:18:13 +02:00
|
|
|
Proc = gen_mod:get_module_proc(To#jid.lserver, ?PROCNAME),
|
|
|
|
case {Res, Name} of
|
|
|
|
{"announce/all", "message"} ->
|
|
|
|
Proc ! {announce_all, From, To, Packet},
|
|
|
|
stop;
|
2007-08-03 10:53:05 +02:00
|
|
|
{"announce/all-hosts/all", "message"} ->
|
|
|
|
Proc ! {announce_all_hosts_all, From, To, Packet},
|
|
|
|
stop;
|
2005-06-20 05:18:13 +02:00
|
|
|
{"announce/online", "message"} ->
|
|
|
|
Proc ! {announce_online, From, To, Packet},
|
|
|
|
stop;
|
|
|
|
{"announce/all-hosts/online", "message"} ->
|
|
|
|
Proc ! {announce_all_hosts_online, From, To, Packet},
|
|
|
|
stop;
|
|
|
|
{"announce/motd", "message"} ->
|
|
|
|
Proc ! {announce_motd, From, To, Packet},
|
|
|
|
stop;
|
2007-08-03 10:53:05 +02:00
|
|
|
{"announce/all-hosts/motd", "message"} ->
|
|
|
|
Proc ! {announce_all_hosts_motd, From, To, Packet},
|
|
|
|
stop;
|
2005-06-20 05:18:13 +02:00
|
|
|
{"announce/motd/update", "message"} ->
|
|
|
|
Proc ! {announce_motd_update, From, To, Packet},
|
|
|
|
stop;
|
2007-08-03 10:53:05 +02:00
|
|
|
{"announce/all-hosts/motd/update", "message"} ->
|
|
|
|
Proc ! {announce_all_hosts_motd_update, From, To, Packet},
|
|
|
|
stop;
|
2005-06-20 05:18:13 +02:00
|
|
|
{"announce/motd/delete", "message"} ->
|
|
|
|
Proc ! {announce_motd_delete, From, To, Packet},
|
|
|
|
stop;
|
2007-08-03 10:53:05 +02:00
|
|
|
{"announce/all-hosts/motd/delete", "message"} ->
|
|
|
|
Proc ! {announce_all_hosts_motd_delete, From, To, Packet},
|
|
|
|
stop;
|
2005-06-20 05:18:13 +02:00
|
|
|
_ ->
|
|
|
|
ok
|
2004-08-13 00:34:19 +02:00
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
|
|
|
%% Announcing via ad-hoc commands
|
2006-01-19 03:17:31 +01:00
|
|
|
-define(INFO_COMMAND(Lang, Node),
|
|
|
|
[{xmlelement, "identity",
|
|
|
|
[{"category", "automation"},
|
|
|
|
{"type", "command-node"},
|
|
|
|
{"name", get_title(Lang, Node)}], []}]).
|
|
|
|
|
|
|
|
disco_identity(Acc, _From, _To, Node, Lang) ->
|
2007-09-04 09:55:41 +02:00
|
|
|
LNode = tokenize(Node),
|
|
|
|
case LNode of
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("announce") ->
|
|
|
|
?INFO_COMMAND(Lang, Node);
|
|
|
|
?NS_ADMINL("announce-allhosts") ->
|
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMINL("announce-all") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMINL("announce-all-allhosts") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("set-motd") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("set-motd-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("edit-motd") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("edit-motd-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMINL("delete-motd") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMINL("delete-motd-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
?INFO_COMMAND(Lang, Node);
|
2006-01-19 03:17:31 +01:00
|
|
|
_ ->
|
|
|
|
Acc
|
|
|
|
end.
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
-define(INFO_RESULT(Allow, Feats),
|
2007-09-04 09:55:41 +02:00
|
|
|
case Allow of
|
|
|
|
deny ->
|
|
|
|
{error, ?ERR_FORBIDDEN};
|
|
|
|
allow ->
|
|
|
|
{result, Feats}
|
|
|
|
end).
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
disco_features(Acc, From, #jid{lserver = LServer} = _To,
|
|
|
|
"announce", _Lang) ->
|
|
|
|
case gen_mod:is_loaded(LServer, mod_adhoc) of
|
|
|
|
false ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
Access1 = gen_mod:get_module_opt(LServer, ?MODULE, access, none),
|
|
|
|
Access2 = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case {acl:match_rule(LServer, Access1, From),
|
|
|
|
acl:match_rule(global, Access2, From)} of
|
|
|
|
{deny, deny} ->
|
|
|
|
{error, ?ERR_FORBIDDEN};
|
|
|
|
_ ->
|
|
|
|
{result, []}
|
|
|
|
end
|
|
|
|
end;
|
|
|
|
|
|
|
|
disco_features(Acc, From, #jid{lserver = LServer} = _To,
|
|
|
|
Node, _Lang) ->
|
|
|
|
case gen_mod:is_loaded(LServer, mod_adhoc) of
|
|
|
|
false ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
Access = gen_mod:get_module_opt(LServer, ?MODULE, access, none),
|
|
|
|
Allow = acl:match_rule(LServer, Access, From),
|
2007-12-22 13:26:17 +01:00
|
|
|
AccessGlobal = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
AllowGlobal = acl:match_rule(global, AccessGlobal, From),
|
2006-01-19 03:17:31 +01:00
|
|
|
case Node of
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMIN ++ "#announce" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_RESULT(Allow, [?NS_COMMANDS]);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMIN ++ "#announce-all" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_RESULT(Allow, [?NS_COMMANDS]);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMIN ++ "#set-motd" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_RESULT(Allow, [?NS_COMMANDS]);
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMIN ++ "#edit-motd" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?INFO_RESULT(Allow, [?NS_COMMANDS]);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMIN ++ "#delete-motd" ->
|
|
|
|
?INFO_RESULT(Allow, [?NS_COMMANDS]);
|
|
|
|
?NS_ADMIN ++ "#announce-allhosts" ->
|
|
|
|
?INFO_RESULT(AllowGlobal, [?NS_COMMANDS]);
|
|
|
|
?NS_ADMIN ++ "#announce-all-allhosts" ->
|
|
|
|
?INFO_RESULT(AllowGlobal, [?NS_COMMANDS]);
|
|
|
|
?NS_ADMIN ++ "#set-motd-allhosts" ->
|
|
|
|
?INFO_RESULT(AllowGlobal, [?NS_COMMANDS]);
|
|
|
|
?NS_ADMIN ++ "#edit-motd-allhosts" ->
|
|
|
|
?INFO_RESULT(AllowGlobal, [?NS_COMMANDS]);
|
|
|
|
?NS_ADMIN ++ "#delete-motd-allhosts" ->
|
|
|
|
?INFO_RESULT(AllowGlobal, [?NS_COMMANDS]);
|
2006-01-19 03:17:31 +01:00
|
|
|
_ ->
|
|
|
|
Acc
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
-define(NODE_TO_ITEM(Lang, Server, Node),
|
|
|
|
{xmlelement, "item",
|
|
|
|
[{"jid", Server},
|
|
|
|
{"node", Node},
|
|
|
|
{"name", get_title(Lang, Node)}],
|
|
|
|
[]}).
|
|
|
|
|
|
|
|
-define(ITEMS_RESULT(Allow, Items),
|
2007-09-04 09:55:41 +02:00
|
|
|
case Allow of
|
|
|
|
deny ->
|
|
|
|
{error, ?ERR_FORBIDDEN};
|
|
|
|
allow ->
|
|
|
|
{result, Items}
|
|
|
|
end).
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
disco_items(Acc, From, #jid{lserver = LServer, server = Server} = _To,
|
|
|
|
"", Lang) ->
|
|
|
|
case gen_mod:is_loaded(LServer, mod_adhoc) of
|
|
|
|
false ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
Access1 = gen_mod:get_module_opt(LServer, ?MODULE, access, none),
|
|
|
|
Access2 = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case {acl:match_rule(LServer, Access1, From),
|
|
|
|
acl:match_rule(global, Access2, From)} of
|
|
|
|
{deny, deny} ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
Items = case Acc of
|
|
|
|
{result, I} -> I;
|
|
|
|
_ -> []
|
|
|
|
end,
|
|
|
|
Nodes = [?NODE_TO_ITEM(Lang, Server, "announce")],
|
|
|
|
{result, Items ++ Nodes}
|
|
|
|
end
|
|
|
|
end;
|
|
|
|
|
|
|
|
disco_items(Acc, From, #jid{lserver = LServer} = To, "announce", Lang) ->
|
|
|
|
case gen_mod:is_loaded(LServer, mod_adhoc) of
|
|
|
|
false ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
announce_items(Acc, From, To, Lang)
|
|
|
|
end;
|
|
|
|
|
|
|
|
disco_items(Acc, From, #jid{lserver = LServer} = _To, Node, _Lang) ->
|
|
|
|
case gen_mod:is_loaded(LServer, mod_adhoc) of
|
|
|
|
false ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
Access = gen_mod:get_module_opt(LServer, ?MODULE, access, none),
|
|
|
|
Allow = acl:match_rule(LServer, Access, From),
|
2007-12-22 13:26:17 +01:00
|
|
|
AccessGlobal = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
AllowGlobal = acl:match_rule(global, AccessGlobal, From),
|
2006-01-19 03:17:31 +01:00
|
|
|
case Node of
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMIN ++ "#announce" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?ITEMS_RESULT(Allow, []);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMIN ++ "#announce-all" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?ITEMS_RESULT(Allow, []);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMIN ++ "#set-motd" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?ITEMS_RESULT(Allow, []);
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMIN ++ "#edit-motd" ->
|
2006-01-19 03:17:31 +01:00
|
|
|
?ITEMS_RESULT(Allow, []);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMIN ++ "#delete-motd" ->
|
|
|
|
?ITEMS_RESULT(Allow, []);
|
|
|
|
?NS_ADMIN ++ "#announce-allhosts" ->
|
|
|
|
?ITEMS_RESULT(AllowGlobal, []);
|
|
|
|
?NS_ADMIN ++ "#announce-all-allhosts" ->
|
|
|
|
?ITEMS_RESULT(AllowGlobal, []);
|
|
|
|
?NS_ADMIN ++ "#set-motd-allhosts" ->
|
|
|
|
?ITEMS_RESULT(AllowGlobal, []);
|
|
|
|
?NS_ADMIN ++ "#edit-motd-allhosts" ->
|
|
|
|
?ITEMS_RESULT(AllowGlobal, []);
|
|
|
|
?NS_ADMIN ++ "#delete-motd-allhosts" ->
|
|
|
|
?ITEMS_RESULT(AllowGlobal, []);
|
2006-01-19 03:17:31 +01:00
|
|
|
_ ->
|
|
|
|
Acc
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
announce_items(Acc, From, #jid{lserver = LServer, server = Server} = _To, Lang) ->
|
|
|
|
Access1 = gen_mod:get_module_opt(LServer, ?MODULE, access, none),
|
|
|
|
Nodes1 = case acl:match_rule(LServer, Access1, From) of
|
|
|
|
allow ->
|
2007-12-22 13:26:17 +01:00
|
|
|
[?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#announce"),
|
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#announce-all"),
|
2007-09-04 09:55:41 +02:00
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#set-motd"),
|
2007-12-22 13:26:17 +01:00
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#edit-motd"),
|
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#delete-motd")];
|
2006-01-19 03:17:31 +01:00
|
|
|
deny ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
Access2 = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
Nodes2 = case acl:match_rule(global, Access2, From) of
|
|
|
|
allow ->
|
2007-12-22 13:26:17 +01:00
|
|
|
[?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#announce-allhosts"),
|
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#announce-all-allhosts"),
|
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#set-motd-allhosts"),
|
2007-09-04 09:55:41 +02:00
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#edit-motd-allhosts"),
|
|
|
|
?NODE_TO_ITEM(Lang, Server, ?NS_ADMIN ++ "#delete-motd-allhosts")];
|
2006-01-19 03:17:31 +01:00
|
|
|
deny ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
case {Nodes1, Nodes2} of
|
|
|
|
{[], []} ->
|
|
|
|
Acc;
|
|
|
|
_ ->
|
|
|
|
Items = case Acc of
|
|
|
|
{result, I} -> I;
|
|
|
|
_ -> []
|
|
|
|
end,
|
|
|
|
{result, Items ++ Nodes1 ++ Nodes2}
|
|
|
|
end.
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2006-01-19 03:17:31 +01:00
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
commands_result(Allow, From, To, Request) ->
|
2006-01-19 03:17:31 +01:00
|
|
|
case Allow of
|
|
|
|
deny ->
|
|
|
|
{error, ?ERR_FORBIDDEN};
|
|
|
|
allow ->
|
|
|
|
announce_commands(From, To, Request)
|
2007-09-04 09:55:41 +02:00
|
|
|
end.
|
|
|
|
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
announce_commands(Acc, From, #jid{lserver = LServer} = To,
|
2007-09-04 09:55:41 +02:00
|
|
|
#adhoc_request{ node = Node} = Request) ->
|
|
|
|
LNode = tokenize(Node),
|
|
|
|
F = fun() ->
|
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
Allow = acl:match_rule(global, Access, From),
|
|
|
|
commands_result(Allow, From, To, Request)
|
|
|
|
end,
|
|
|
|
R = case LNode of
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("announce-allhosts") -> F();
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMINL("announce-all-allhosts") -> F();
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("set-motd-allhosts") -> F();
|
2007-09-04 09:55:41 +02:00
|
|
|
?NS_ADMINL("edit-motd-allhosts") -> F();
|
|
|
|
?NS_ADMINL("delete-motd-allhosts") -> F();
|
|
|
|
_ ->
|
|
|
|
Access = gen_mod:get_module_opt(LServer, ?MODULE, access, none),
|
|
|
|
Allow = acl:match_rule(LServer, Access, From),
|
|
|
|
case LNode of
|
|
|
|
?NS_ADMINL("announce") ->
|
|
|
|
commands_result(Allow, From, To, Request);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("announce-all") ->
|
2007-09-04 09:55:41 +02:00
|
|
|
commands_result(Allow, From, To, Request);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("set-motd") ->
|
2007-09-04 09:55:41 +02:00
|
|
|
commands_result(Allow, From, To, Request);
|
|
|
|
?NS_ADMINL("edit-motd") ->
|
|
|
|
commands_result(Allow, From, To, Request);
|
2007-12-22 13:26:17 +01:00
|
|
|
?NS_ADMINL("delete-motd") ->
|
|
|
|
commands_result(Allow, From, To, Request);
|
2007-09-04 09:55:41 +02:00
|
|
|
_ ->
|
|
|
|
unknown
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
case R of
|
|
|
|
unknown -> Acc;
|
|
|
|
_ -> {stop, R}
|
2006-01-19 03:17:31 +01:00
|
|
|
end.
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
announce_commands(From, To,
|
|
|
|
#adhoc_request{lang = Lang,
|
|
|
|
node = Node,
|
|
|
|
action = Action,
|
|
|
|
xdata = XData} = Request) ->
|
|
|
|
%% If the "action" attribute is not present, it is
|
|
|
|
%% understood as "execute". If there was no <actions/>
|
|
|
|
%% element in the first response (which there isn't in our
|
|
|
|
%% case), "execute" and "complete" are equivalent.
|
|
|
|
ActionIsExecute = lists:member(Action,
|
|
|
|
["", "execute", "complete"]),
|
|
|
|
if Action == "cancel" ->
|
|
|
|
%% User cancels request
|
|
|
|
adhoc:produce_response(Request,
|
|
|
|
#adhoc_response{status = canceled});
|
|
|
|
XData == false, ActionIsExecute ->
|
|
|
|
%% User requests form
|
2007-12-22 14:58:19 +01:00
|
|
|
Elements = generate_adhoc_form(Lang, Node, To#jid.lserver),
|
2006-01-19 03:17:31 +01:00
|
|
|
adhoc:produce_response(
|
|
|
|
Request,
|
|
|
|
#adhoc_response{status = executing,
|
2007-09-04 09:55:41 +02:00
|
|
|
elements = [Elements]});
|
2006-01-19 03:17:31 +01:00
|
|
|
XData /= false, ActionIsExecute ->
|
|
|
|
%% User returns form.
|
|
|
|
case jlib:parse_xdata_submit(XData) of
|
|
|
|
invalid ->
|
|
|
|
{error, ?ERR_BAD_REQUEST};
|
|
|
|
Fields ->
|
|
|
|
handle_adhoc_form(From, To, Request, Fields)
|
|
|
|
end;
|
|
|
|
true ->
|
|
|
|
{error, ?ERR_BAD_REQUEST}
|
|
|
|
end.
|
|
|
|
|
2007-12-22 13:26:17 +01:00
|
|
|
-define(VVALUE(Val),
|
|
|
|
{xmlelement, "value", [], [{xmlcdata, Val}]}).
|
2007-09-04 09:55:41 +02:00
|
|
|
-define(TVFIELD(Type, Var, Val),
|
|
|
|
{xmlelement, "field", [{"type", Type},
|
|
|
|
{"var", Var}],
|
2011-09-05 09:09:36 +02:00
|
|
|
vvaluel(Val)}).
|
2007-09-04 09:55:41 +02:00
|
|
|
-define(HFIELD(), ?TVFIELD("hidden", "FORM_TYPE", ?NS_ADMIN)).
|
|
|
|
|
2011-09-05 09:09:36 +02:00
|
|
|
vvaluel(Val) ->
|
|
|
|
case Val of
|
|
|
|
"" -> [];
|
|
|
|
_ -> [?VVALUE(Val)]
|
|
|
|
end.
|
|
|
|
|
2007-12-22 14:58:19 +01:00
|
|
|
generate_adhoc_form(Lang, Node, ServerHost) ->
|
2007-09-04 09:55:41 +02:00
|
|
|
LNode = tokenize(Node),
|
2007-12-22 14:58:19 +01:00
|
|
|
{OldSubject, OldBody} = if (LNode == ?NS_ADMINL("edit-motd"))
|
|
|
|
or (LNode == ?NS_ADMINL("edit-motd-allhosts")) ->
|
|
|
|
get_stored_motd(ServerHost);
|
|
|
|
true ->
|
|
|
|
{[], []}
|
|
|
|
end,
|
2006-01-19 03:17:31 +01:00
|
|
|
{xmlelement, "x",
|
|
|
|
[{"xmlns", ?NS_XDATA},
|
|
|
|
{"type", "form"}],
|
2007-09-04 09:55:41 +02:00
|
|
|
[?HFIELD(),
|
|
|
|
{xmlelement, "title", [], [{xmlcdata, get_title(Lang, Node)}]}]
|
2006-01-19 03:17:31 +01:00
|
|
|
++
|
2007-09-04 09:55:41 +02:00
|
|
|
if (LNode == ?NS_ADMINL("delete-motd"))
|
|
|
|
or (LNode == ?NS_ADMINL("delete-motd-allhosts")) ->
|
|
|
|
[{xmlelement, "field",
|
2006-01-19 03:17:31 +01:00
|
|
|
[{"var", "confirm"},
|
|
|
|
{"type", "boolean"},
|
|
|
|
{"label", translate:translate(Lang, "Really delete message of the day?")}],
|
|
|
|
[{xmlelement, "value",
|
2007-09-04 09:55:41 +02:00
|
|
|
[],
|
|
|
|
[{xmlcdata, "true"}]}]}];
|
|
|
|
true ->
|
|
|
|
[{xmlelement, "field",
|
|
|
|
[{"var", "subject"},
|
|
|
|
{"type", "text-single"},
|
|
|
|
{"label", translate:translate(Lang, "Subject")}],
|
2011-09-05 09:09:36 +02:00
|
|
|
vvaluel(OldSubject)},
|
2007-09-04 09:55:41 +02:00
|
|
|
{xmlelement, "field",
|
|
|
|
[{"var", "body"},
|
|
|
|
{"type", "text-multi"},
|
|
|
|
{"label", translate:translate(Lang, "Message body")}],
|
2011-09-05 09:09:36 +02:00
|
|
|
vvaluel(OldBody)}]
|
2007-09-04 09:55:41 +02:00
|
|
|
end}.
|
2006-01-19 03:17:31 +01:00
|
|
|
|
|
|
|
join_lines([]) ->
|
|
|
|
[];
|
|
|
|
join_lines(Lines) ->
|
|
|
|
join_lines(Lines, []).
|
|
|
|
join_lines([Line|Lines], Acc) ->
|
|
|
|
join_lines(Lines, ["\n",Line|Acc]);
|
|
|
|
join_lines([], Acc) ->
|
|
|
|
%% Remove last newline
|
|
|
|
lists:flatten(lists:reverse(tl(Acc))).
|
|
|
|
|
|
|
|
handle_adhoc_form(From, #jid{lserver = LServer} = To,
|
|
|
|
#adhoc_request{lang = Lang,
|
|
|
|
node = Node,
|
|
|
|
sessionid = SessionID},
|
|
|
|
Fields) ->
|
|
|
|
Confirm = case lists:keysearch("confirm", 1, Fields) of
|
|
|
|
{value, {"confirm", ["true"]}} ->
|
|
|
|
true;
|
|
|
|
{value, {"confirm", ["1"]}} ->
|
|
|
|
true;
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end,
|
|
|
|
Subject = case lists:keysearch("subject", 1, Fields) of
|
|
|
|
{value, {"subject", SubjectLines}} ->
|
|
|
|
%% There really shouldn't be more than one
|
|
|
|
%% subject line, but can we stop them?
|
|
|
|
join_lines(SubjectLines);
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
Body = case lists:keysearch("body", 1, Fields) of
|
|
|
|
{value, {"body", BodyLines}} ->
|
|
|
|
join_lines(BodyLines);
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
Response = #adhoc_response{lang = Lang,
|
|
|
|
node = Node,
|
|
|
|
sessionid = SessionID,
|
|
|
|
status = completed},
|
|
|
|
Packet = {xmlelement, "message", [{"type", "normal"}],
|
|
|
|
if Subject /= [] ->
|
|
|
|
[{xmlelement, "subject", [],
|
|
|
|
[{xmlcdata, Subject}]}];
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end ++
|
|
|
|
if Body /= [] ->
|
|
|
|
[{xmlelement, "body", [],
|
|
|
|
[{xmlcdata, Body}]}];
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end},
|
|
|
|
|
|
|
|
Proc = gen_mod:get_module_proc(LServer, ?PROCNAME),
|
|
|
|
case {Node, Body} of
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#delete-motd", _} ->
|
2006-01-19 03:17:31 +01:00
|
|
|
if Confirm ->
|
|
|
|
Proc ! {announce_motd_delete, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
true ->
|
2006-01-19 03:17:31 +01:00
|
|
|
adhoc:produce_response(Response)
|
|
|
|
end;
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#delete-motd-allhosts", _} ->
|
2007-08-03 10:53:05 +02:00
|
|
|
if Confirm ->
|
|
|
|
Proc ! {announce_all_hosts_motd_delete, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
true ->
|
2007-08-03 10:53:05 +02:00
|
|
|
adhoc:produce_response(Response)
|
|
|
|
end;
|
2006-01-19 03:17:31 +01:00
|
|
|
{_, []} ->
|
|
|
|
%% An announce message with no body is definitely an operator error.
|
|
|
|
%% Throw an error and give him/her a chance to send message again.
|
|
|
|
{error, ?ERRT_NOT_ACCEPTABLE(
|
2007-09-04 09:55:41 +02:00
|
|
|
Lang,
|
|
|
|
"No body provided for announce message")};
|
2006-01-19 03:17:31 +01:00
|
|
|
%% Now send the packet to ?PROCNAME.
|
|
|
|
%% We don't use direct announce_* functions because it
|
|
|
|
%% leads to large delay in response and <iq/> queries processing
|
2007-12-22 13:26:17 +01:00
|
|
|
{?NS_ADMIN ++ "#announce", _} ->
|
|
|
|
Proc ! {announce_online, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
|
|
|
{?NS_ADMIN ++ "#announce-allhosts", _} ->
|
|
|
|
Proc ! {announce_all_hosts_online, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#announce-all", _} ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Proc ! {announce_all, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#announce-all-allhosts", _} ->
|
2007-08-03 10:53:05 +02:00
|
|
|
Proc ! {announce_all_hosts_all, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#set-motd", _} ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Proc ! {announce_motd, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-12-22 13:26:17 +01:00
|
|
|
{?NS_ADMIN ++ "#set-motd-allhosts", _} ->
|
2007-08-03 10:53:05 +02:00
|
|
|
Proc ! {announce_all_hosts_motd, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#edit-motd", _} ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Proc ! {announce_motd_update, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2007-09-04 09:55:41 +02:00
|
|
|
{?NS_ADMIN ++ "#edit-motd-allhosts", _} ->
|
2007-08-03 10:53:05 +02:00
|
|
|
Proc ! {announce_all_hosts_motd_update, From, To, Packet},
|
|
|
|
adhoc:produce_response(Response);
|
2006-01-19 03:17:31 +01:00
|
|
|
_ ->
|
|
|
|
%% This can't happen, as we haven't registered any other
|
|
|
|
%% command nodes.
|
|
|
|
{error, ?ERR_INTERNAL_SERVER_ERROR}
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_title(Lang, "announce") ->
|
|
|
|
translate:translate(Lang, "Announcements");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#announce-all") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
translate:translate(Lang, "Send announcement to all users");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#announce-all-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
translate:translate(Lang, "Send announcement to all users on all hosts");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#announce") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
translate:translate(Lang, "Send announcement to all online users");
|
2007-12-22 13:26:17 +01:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#announce-allhosts") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
translate:translate(Lang, "Send announcement to all online users on all hosts");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#set-motd") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
translate:translate(Lang, "Set message of the day and send to online users");
|
2007-12-22 13:26:17 +01:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#set-motd-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
translate:translate(Lang, "Set message of the day on all hosts and send to online users");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#edit-motd") ->
|
2006-01-19 03:17:31 +01:00
|
|
|
translate:translate(Lang, "Update message of the day (don't send)");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#edit-motd-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
translate:translate(Lang, "Update message of the day on all hosts (don't send)");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#delete-motd") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
translate:translate(Lang, "Delete message of the day");
|
2007-09-04 09:55:41 +02:00
|
|
|
get_title(Lang, ?NS_ADMIN ++ "#delete-motd-allhosts") ->
|
2007-08-03 10:53:05 +02:00
|
|
|
translate:translate(Lang, "Delete message of the day on all hosts").
|
2006-01-19 03:17:31 +01:00
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2006-01-19 03:17:31 +01:00
|
|
|
|
2004-08-22 23:54:14 +02:00
|
|
|
announce_all(From, To, Packet) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
Host = To#jid.lserver,
|
|
|
|
Access = gen_mod:get_module_opt(Host, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(Host, Access, From) of
|
2004-08-22 23:54:14 +02:00
|
|
|
deny ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
2004-08-22 23:54:14 +02:00
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
2005-04-17 20:08:34 +02:00
|
|
|
Local = jlib:make_jid("", To#jid.server, ""),
|
2004-08-22 23:54:14 +02:00
|
|
|
lists:foreach(
|
2007-09-04 09:55:41 +02:00
|
|
|
fun({User, Server}) ->
|
|
|
|
Dest = jlib:make_jid(User, Server, ""),
|
|
|
|
ejabberd_router:route(Local, Dest, Packet)
|
|
|
|
end, ejabberd_auth:get_vh_registered_users(Host))
|
2004-08-22 23:54:14 +02:00
|
|
|
end.
|
|
|
|
|
2007-08-03 10:53:05 +02:00
|
|
|
announce_all_hosts_all(From, To, Packet) ->
|
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(global, Access, From) of
|
|
|
|
deny ->
|
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
|
|
|
Local = jlib:make_jid("", To#jid.server, ""),
|
|
|
|
lists:foreach(
|
2007-09-04 09:55:41 +02:00
|
|
|
fun({User, Server}) ->
|
|
|
|
Dest = jlib:make_jid(User, Server, ""),
|
|
|
|
ejabberd_router:route(Local, Dest, Packet)
|
|
|
|
end, ejabberd_auth:dirty_get_registered_users())
|
2007-08-03 10:53:05 +02:00
|
|
|
end.
|
|
|
|
|
2004-08-13 00:34:19 +02:00
|
|
|
announce_online(From, To, Packet) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
Host = To#jid.lserver,
|
|
|
|
Access = gen_mod:get_module_opt(Host, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(Host, Access, From) of
|
2004-08-13 00:34:19 +02:00
|
|
|
deny ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
2004-08-13 00:34:19 +02:00
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
2005-06-20 05:18:13 +02:00
|
|
|
announce_online1(ejabberd_sm:get_vh_session_list(Host),
|
2005-04-17 20:08:34 +02:00
|
|
|
To#jid.server,
|
|
|
|
Packet)
|
2004-08-13 00:34:19 +02:00
|
|
|
end.
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
announce_all_hosts_online(From, To, Packet) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(global, Access, From) of
|
2005-04-17 20:08:34 +02:00
|
|
|
deny ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
2005-04-17 20:08:34 +02:00
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
|
|
|
announce_online1(ejabberd_sm:dirty_get_sessions_list(),
|
|
|
|
To#jid.server,
|
|
|
|
Packet)
|
|
|
|
end.
|
|
|
|
|
|
|
|
announce_online1(Sessions, Server, Packet) ->
|
2004-08-13 00:34:19 +02:00
|
|
|
Local = jlib:make_jid("", Server, ""),
|
|
|
|
lists:foreach(
|
2005-04-17 20:08:34 +02:00
|
|
|
fun({U, S, R}) ->
|
|
|
|
Dest = jlib:make_jid(U, S, R),
|
2004-08-13 00:34:19 +02:00
|
|
|
ejabberd_router:route(Local, Dest, Packet)
|
|
|
|
end, Sessions).
|
|
|
|
|
|
|
|
announce_motd(From, To, Packet) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
Host = To#jid.lserver,
|
|
|
|
Access = gen_mod:get_module_opt(Host, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(Host, Access, From) of
|
2004-08-13 00:34:19 +02:00
|
|
|
deny ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
2004-08-13 00:34:19 +02:00
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
2007-09-04 09:55:41 +02:00
|
|
|
announce_motd(Host, Packet)
|
2007-08-03 10:53:05 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
announce_all_hosts_motd(From, To, Packet) ->
|
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(global, Access, From) of
|
|
|
|
deny ->
|
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
|
|
|
Hosts = ?MYHOSTS,
|
|
|
|
[announce_motd(Host, Packet) || Host <- Hosts]
|
2004-08-13 00:34:19 +02:00
|
|
|
end.
|
|
|
|
|
2007-08-03 10:53:05 +02:00
|
|
|
announce_motd(Host, Packet) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
LServer = jlib:nameprep(Host),
|
|
|
|
announce_motd_update(LServer, Packet),
|
|
|
|
Sessions = ejabberd_sm:get_vh_session_list(LServer),
|
|
|
|
announce_online1(Sessions, LServer, Packet),
|
|
|
|
case gen_mod:db_type(LServer, ?MODULE) of
|
|
|
|
mnesia ->
|
|
|
|
F = fun() ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({U, S, _R}) ->
|
|
|
|
mnesia:write(#motd_users{us = {U, S}})
|
|
|
|
end, Sessions)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F);
|
|
|
|
odbc ->
|
|
|
|
F = fun() ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({U, _S, _R}) ->
|
|
|
|
Username = ejabberd_odbc:escape(U),
|
|
|
|
odbc_queries:update_t(
|
|
|
|
"motd",
|
|
|
|
["username", "xml"],
|
|
|
|
[Username, ""],
|
|
|
|
["username='", Username, "'"])
|
|
|
|
end, Sessions)
|
|
|
|
end,
|
|
|
|
ejabberd_odbc:sql_transaction(LServer, F)
|
|
|
|
end.
|
2007-08-03 10:53:05 +02:00
|
|
|
|
2004-08-13 00:34:19 +02:00
|
|
|
announce_motd_update(From, To, Packet) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
Host = To#jid.lserver,
|
|
|
|
Access = gen_mod:get_module_opt(Host, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(Host, Access, From) of
|
2004-08-13 00:34:19 +02:00
|
|
|
deny ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
2004-08-13 00:34:19 +02:00
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
2005-06-20 05:18:13 +02:00
|
|
|
announce_motd_update(Host, Packet)
|
2004-08-13 00:34:19 +02:00
|
|
|
end.
|
|
|
|
|
2007-08-03 10:53:05 +02:00
|
|
|
announce_all_hosts_motd_update(From, To, Packet) ->
|
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(global, Access, From) of
|
|
|
|
deny ->
|
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
|
|
|
Hosts = ?MYHOSTS,
|
|
|
|
[announce_motd_update(Host, Packet) || Host <- Hosts]
|
|
|
|
end.
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
announce_motd_update(LServer, Packet) ->
|
|
|
|
announce_motd_delete(LServer),
|
2012-04-27 11:52:05 +02:00
|
|
|
case gen_mod:db_type(LServer, ?MODULE) of
|
|
|
|
mnesia ->
|
|
|
|
F = fun() ->
|
|
|
|
mnesia:write(#motd{server = LServer, packet = Packet})
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F);
|
|
|
|
odbc ->
|
|
|
|
XML = ejabberd_odbc:escape(xml:element_to_binary(Packet)),
|
|
|
|
F = fun() ->
|
|
|
|
odbc_queries:update_t(
|
|
|
|
"motd",
|
|
|
|
["username", "xml"],
|
|
|
|
["", XML],
|
|
|
|
["username=''"])
|
|
|
|
end,
|
|
|
|
ejabberd_odbc:sql_transaction(LServer, F)
|
|
|
|
end.
|
2004-08-13 00:34:19 +02:00
|
|
|
|
|
|
|
announce_motd_delete(From, To, Packet) ->
|
2005-06-20 05:18:13 +02:00
|
|
|
Host = To#jid.lserver,
|
|
|
|
Access = gen_mod:get_module_opt(Host, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(Host, Access, From) of
|
2004-08-13 00:34:19 +02:00
|
|
|
deny ->
|
2006-01-19 03:17:31 +01:00
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
2004-08-13 00:34:19 +02:00
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
2005-06-20 05:18:13 +02:00
|
|
|
announce_motd_delete(Host)
|
2004-08-13 00:34:19 +02:00
|
|
|
end.
|
|
|
|
|
2007-08-03 10:53:05 +02:00
|
|
|
announce_all_hosts_motd_delete(From, To, Packet) ->
|
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, access, none),
|
|
|
|
case acl:match_rule(global, Access, From) of
|
|
|
|
deny ->
|
|
|
|
Err = jlib:make_error_reply(Packet, ?ERR_FORBIDDEN),
|
|
|
|
ejabberd_router:route(To, From, Err);
|
|
|
|
allow ->
|
|
|
|
Hosts = ?MYHOSTS,
|
|
|
|
[announce_motd_delete(Host) || Host <- Hosts]
|
|
|
|
end.
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
announce_motd_delete(LServer) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
case gen_mod:db_type(LServer, ?MODULE) of
|
|
|
|
mnesia ->
|
|
|
|
F = fun() ->
|
|
|
|
mnesia:delete({motd, LServer}),
|
|
|
|
mnesia:write_lock_table(motd_users),
|
|
|
|
Users = mnesia:select(
|
|
|
|
motd_users,
|
|
|
|
[{#motd_users{us = '$1', _ = '_'},
|
|
|
|
[{'==', {element, 2, '$1'}, LServer}],
|
|
|
|
['$1']}]),
|
|
|
|
lists:foreach(fun(US) ->
|
|
|
|
mnesia:delete({motd_users, US})
|
|
|
|
end, Users)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F);
|
|
|
|
odbc ->
|
|
|
|
F = fun() ->
|
|
|
|
ejabberd_odbc:sql_query_t(["delete from motd;"])
|
|
|
|
end,
|
|
|
|
ejabberd_odbc:sql_transaction(LServer, F)
|
|
|
|
end.
|
2004-08-13 00:34:19 +02:00
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
send_motd(JID) ->
|
|
|
|
send_motd(JID, gen_mod:db_type(JID#jid.lserver, ?MODULE)).
|
|
|
|
|
|
|
|
send_motd(#jid{luser = LUser, lserver = LServer} = JID, mnesia) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
case catch mnesia:dirty_read({motd, LServer}) of
|
2004-08-13 00:34:19 +02:00
|
|
|
[#motd{packet = Packet}] ->
|
2005-04-17 20:08:34 +02:00
|
|
|
US = {LUser, LServer},
|
|
|
|
case catch mnesia:dirty_read({motd_users, US}) of
|
2004-08-13 00:34:19 +02:00
|
|
|
[#motd_users{}] ->
|
|
|
|
ok;
|
|
|
|
_ ->
|
2005-04-17 20:08:34 +02:00
|
|
|
Local = jlib:make_jid("", LServer, ""),
|
2004-08-13 00:34:19 +02:00
|
|
|
ejabberd_router:route(Local, JID, Packet),
|
|
|
|
F = fun() ->
|
2005-04-17 20:08:34 +02:00
|
|
|
mnesia:write(#motd_users{us = US})
|
2004-08-13 00:34:19 +02:00
|
|
|
end,
|
|
|
|
mnesia:transaction(F)
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
ok
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
|
|
|
send_motd(#jid{luser = LUser, lserver = LServer} = JID, odbc) when LUser /= "" ->
|
|
|
|
case catch ejabberd_odbc:sql_query(
|
|
|
|
LServer, ["select xml from motd where username='';"]) of
|
|
|
|
{selected, ["xml"], [{XML}]} ->
|
|
|
|
case xml_stream:parse_element(XML) of
|
|
|
|
{error, _} ->
|
|
|
|
ok;
|
|
|
|
Packet ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
case catch ejabberd_odbc:sql_query(
|
|
|
|
LServer,
|
|
|
|
["select username from motd "
|
|
|
|
"where username='", Username, "';"]) of
|
|
|
|
{selected, ["username"], []} ->
|
|
|
|
Local = jlib:make_jid("", LServer, ""),
|
|
|
|
ejabberd_router:route(Local, JID, Packet),
|
|
|
|
F = fun() ->
|
|
|
|
odbc_queries:update_t(
|
|
|
|
"motd",
|
|
|
|
["username", "xml"],
|
|
|
|
[Username, ""],
|
|
|
|
["username='", Username, "'"])
|
|
|
|
end,
|
|
|
|
ejabberd_odbc:sql_transaction(LServer, F);
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end;
|
|
|
|
send_motd(_, odbc) ->
|
|
|
|
ok.
|
2004-08-13 00:34:19 +02:00
|
|
|
|
2007-12-22 14:58:19 +01:00
|
|
|
get_stored_motd(LServer) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
case get_stored_motd_packet(LServer, gen_mod:db_type(LServer, ?MODULE)) of
|
|
|
|
{ok, Packet} ->
|
|
|
|
{xml:get_subtag_cdata(Packet, "subject"),
|
|
|
|
xml:get_subtag_cdata(Packet, "body")};
|
|
|
|
error ->
|
|
|
|
{"", ""}
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_stored_motd_packet(LServer, mnesia) ->
|
2007-12-22 14:58:19 +01:00
|
|
|
case catch mnesia:dirty_read({motd, LServer}) of
|
|
|
|
[#motd{packet = Packet}] ->
|
2012-04-27 11:52:05 +02:00
|
|
|
{ok, Packet};
|
2007-12-22 14:58:19 +01:00
|
|
|
_ ->
|
2012-04-27 11:52:05 +02:00
|
|
|
error
|
|
|
|
end;
|
|
|
|
get_stored_motd_packet(LServer, odbc) ->
|
|
|
|
case catch ejabberd_odbc:sql_query(
|
|
|
|
LServer, ["select xml from motd where username='';"]) of
|
|
|
|
{selected, ["xml"], [{XML}]} ->
|
|
|
|
case xml_stream:parse_element(XML) of
|
|
|
|
{error, _} ->
|
|
|
|
error;
|
|
|
|
Packet ->
|
|
|
|
{ok, Packet}
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
error
|
2007-12-22 14:58:19 +01:00
|
|
|
end.
|
|
|
|
|
2010-01-03 01:38:00 +01:00
|
|
|
%% This function is similar to others, but doesn't perform any ACL verification
|
|
|
|
send_announcement_to_all(Host, SubjectS, BodyS) ->
|
|
|
|
SubjectEls = if SubjectS /= [] ->
|
|
|
|
[{xmlelement, "subject", [], [{xmlcdata, SubjectS}]}];
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
BodyEls = if BodyS /= [] ->
|
|
|
|
[{xmlelement, "body", [], [{xmlcdata, BodyS}]}];
|
|
|
|
true ->
|
|
|
|
[]
|
|
|
|
end,
|
|
|
|
Packet = {xmlelement, "message", [{"type", "normal"}], SubjectEls ++ BodyEls},
|
|
|
|
Sessions = ejabberd_sm:dirty_get_sessions_list(),
|
|
|
|
Local = jlib:make_jid("", Host, ""),
|
|
|
|
lists:foreach(
|
|
|
|
fun({U, S, R}) ->
|
|
|
|
Dest = jlib:make_jid(U, S, R),
|
|
|
|
ejabberd_router:route(Local, Dest, Packet)
|
|
|
|
end, Sessions).
|
|
|
|
|
2007-09-04 09:55:41 +02:00
|
|
|
%%-------------------------------------------------------------------------
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
update_tables() ->
|
|
|
|
update_motd_table(),
|
|
|
|
update_motd_users_table().
|
|
|
|
|
|
|
|
update_motd_table() ->
|
|
|
|
Fields = record_info(fields, motd),
|
|
|
|
case mnesia:table_info(motd, attributes) of
|
|
|
|
Fields ->
|
|
|
|
ok;
|
|
|
|
[id, packet] ->
|
|
|
|
?INFO_MSG("Converting motd table from "
|
|
|
|
"{id, packet} format", []),
|
|
|
|
Host = ?MYNAME,
|
|
|
|
{atomic, ok} = mnesia:create_table(
|
|
|
|
mod_announce_tmp_table,
|
|
|
|
[{disc_only_copies, [node()]},
|
|
|
|
{type, bag},
|
|
|
|
{local_content, true},
|
|
|
|
{record_name, motd},
|
|
|
|
{attributes, record_info(fields, motd)}]),
|
|
|
|
mnesia:transform_table(motd, ignore, Fields),
|
|
|
|
F1 = fun() ->
|
|
|
|
mnesia:write_lock_table(mod_announce_tmp_table),
|
|
|
|
mnesia:foldl(
|
|
|
|
fun(#motd{server = _} = R, _) ->
|
|
|
|
mnesia:dirty_write(
|
|
|
|
mod_announce_tmp_table,
|
|
|
|
R#motd{server = Host})
|
|
|
|
end, ok, motd)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F1),
|
|
|
|
mnesia:clear_table(motd),
|
|
|
|
F2 = fun() ->
|
|
|
|
mnesia:write_lock_table(motd),
|
|
|
|
mnesia:foldl(
|
|
|
|
fun(R, _) ->
|
|
|
|
mnesia:dirty_write(R)
|
|
|
|
end, ok, mod_announce_tmp_table)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F2),
|
|
|
|
mnesia:delete_table(mod_announce_tmp_table);
|
|
|
|
_ ->
|
|
|
|
?INFO_MSG("Recreating motd table", []),
|
|
|
|
mnesia:transform_table(motd, ignore, Fields)
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
|
|
update_motd_users_table() ->
|
|
|
|
Fields = record_info(fields, motd_users),
|
|
|
|
case mnesia:table_info(motd_users, attributes) of
|
|
|
|
Fields ->
|
|
|
|
ok;
|
|
|
|
[luser, dummy] ->
|
|
|
|
?INFO_MSG("Converting motd_users table from "
|
|
|
|
"{luser, dummy} format", []),
|
|
|
|
Host = ?MYNAME,
|
|
|
|
{atomic, ok} = mnesia:create_table(
|
|
|
|
mod_announce_tmp_table,
|
|
|
|
[{disc_only_copies, [node()]},
|
|
|
|
{type, bag},
|
|
|
|
{local_content, true},
|
|
|
|
{record_name, motd_users},
|
|
|
|
{attributes, record_info(fields, motd_users)}]),
|
|
|
|
mnesia:transform_table(motd_users, ignore, Fields),
|
|
|
|
F1 = fun() ->
|
|
|
|
mnesia:write_lock_table(mod_announce_tmp_table),
|
|
|
|
mnesia:foldl(
|
|
|
|
fun(#motd_users{us = U} = R, _) ->
|
|
|
|
mnesia:dirty_write(
|
|
|
|
mod_announce_tmp_table,
|
|
|
|
R#motd_users{us = {U, Host}})
|
|
|
|
end, ok, motd_users)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F1),
|
|
|
|
mnesia:clear_table(motd_users),
|
|
|
|
F2 = fun() ->
|
|
|
|
mnesia:write_lock_table(motd_users),
|
|
|
|
mnesia:foldl(
|
|
|
|
fun(R, _) ->
|
|
|
|
mnesia:dirty_write(R)
|
|
|
|
end, ok, mod_announce_tmp_table)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F2),
|
|
|
|
mnesia:delete_table(mod_announce_tmp_table);
|
|
|
|
_ ->
|
|
|
|
?INFO_MSG("Recreating motd_users table", []),
|
|
|
|
mnesia:transform_table(motd_users, ignore, Fields)
|
|
|
|
end.
|