2015-04-07 16:30:34 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_muc_admin.erl
|
|
|
|
%%% Author : Badlop <badlop@ono.com>
|
|
|
|
%%% Purpose : Tools for additional MUC administration
|
|
|
|
%%% Created : 8 Sep 2007 by Badlop <badlop@ono.com>
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2018-01-05 21:18:58 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2018 ProcessOne
|
2016-12-27 10:44:07 +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.
|
|
|
|
%%%
|
|
|
|
%%% 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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
%%%
|
2015-04-07 16:30:34 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_muc_admin).
|
|
|
|
-author('badlop@ono.com').
|
|
|
|
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
2017-12-13 04:07:12 +01:00
|
|
|
-export([start/2, stop/1, reload/3, depends/2,
|
|
|
|
muc_online_rooms/1, muc_online_rooms_by_regex/2,
|
2017-08-24 10:40:24 +02:00
|
|
|
muc_register_nick/3, muc_unregister_nick/2,
|
2017-04-10 12:23:14 +02:00
|
|
|
create_room_with_opts/4, create_room/3, destroy_room/2,
|
2015-04-07 16:30:34 +02:00
|
|
|
create_rooms_file/1, destroy_rooms_file/1,
|
|
|
|
rooms_unused_list/2, rooms_unused_destroy/2,
|
2015-06-01 14:38:27 +02:00
|
|
|
get_user_rooms/2, get_room_occupants/2,
|
2015-08-12 13:26:24 +02:00
|
|
|
get_room_occupants_number/2, send_direct_invitation/5,
|
2015-06-01 14:38:27 +02:00
|
|
|
change_room_option/4, get_room_options/2,
|
2018-02-25 10:28:14 +01:00
|
|
|
set_room_affiliation/4, get_room_affiliations/2, get_room_affiliation/3,
|
2015-06-01 14:38:27 +02:00
|
|
|
web_menu_main/2, web_page_main/2, web_menu_host/3,
|
2016-09-06 16:55:18 +02:00
|
|
|
subscribe_room/4, unsubscribe_room/2, get_subscribers/2,
|
2018-01-23 08:54:52 +01:00
|
|
|
web_page_host/3, mod_options/1, get_commands_spec/0]).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
-include("logger.hrl").
|
2016-07-25 12:50:30 +02:00
|
|
|
-include("xmpp.hrl").
|
2017-04-10 12:23:14 +02:00
|
|
|
-include("mod_muc.hrl").
|
2015-04-07 16:30:34 +02:00
|
|
|
-include("mod_muc_room.hrl").
|
|
|
|
-include("ejabberd_http.hrl").
|
|
|
|
-include("ejabberd_web_admin.hrl").
|
|
|
|
-include("ejabberd_commands.hrl").
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% gen_mod
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
start(Host, _Opts) ->
|
2016-01-26 10:00:11 +01:00
|
|
|
ejabberd_commands:register_commands(get_commands_spec()),
|
2015-04-07 16:30:34 +02:00
|
|
|
ejabberd_hooks:add(webadmin_menu_main, ?MODULE, web_menu_main, 50),
|
|
|
|
ejabberd_hooks:add(webadmin_menu_host, Host, ?MODULE, web_menu_host, 50),
|
|
|
|
ejabberd_hooks:add(webadmin_page_main, ?MODULE, web_page_main, 50),
|
|
|
|
ejabberd_hooks:add(webadmin_page_host, Host, ?MODULE, web_page_host, 50).
|
|
|
|
|
|
|
|
stop(Host) ->
|
2017-11-06 16:53:49 +01:00
|
|
|
case gen_mod:is_loaded_elsewhere(Host, ?MODULE) of
|
|
|
|
false ->
|
|
|
|
ejabberd_commands:unregister_commands(get_commands_spec());
|
|
|
|
true ->
|
|
|
|
ok
|
|
|
|
end,
|
2015-04-07 16:30:34 +02:00
|
|
|
ejabberd_hooks:delete(webadmin_menu_main, ?MODULE, web_menu_main, 50),
|
|
|
|
ejabberd_hooks:delete(webadmin_menu_host, Host, ?MODULE, web_menu_host, 50),
|
|
|
|
ejabberd_hooks:delete(webadmin_page_main, ?MODULE, web_page_main, 50),
|
|
|
|
ejabberd_hooks:delete(webadmin_page_host, Host, ?MODULE, web_page_host, 50).
|
|
|
|
|
2017-02-22 17:46:47 +01:00
|
|
|
reload(_Host, _NewOpts, _OldOpts) ->
|
|
|
|
ok.
|
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[{mod_muc, hard}].
|
|
|
|
|
2015-04-07 16:30:34 +02:00
|
|
|
%%%
|
|
|
|
%%% Register commands
|
|
|
|
%%%
|
|
|
|
|
2016-01-26 10:00:11 +01:00
|
|
|
get_commands_spec() ->
|
2015-04-07 16:30:34 +02:00
|
|
|
[
|
|
|
|
#ejabberd_commands{name = muc_online_rooms, tags = [muc],
|
|
|
|
desc = "List existing rooms ('global' to get all vhosts)",
|
2015-09-28 14:25:43 +02:00
|
|
|
policy = admin,
|
2015-04-07 16:30:34 +02:00
|
|
|
module = ?MODULE, function = muc_online_rooms,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Server domain where the MUC service is, or 'global' for all"],
|
|
|
|
args_example = ["example.com"],
|
|
|
|
result_desc = "List of rooms",
|
|
|
|
result_example = ["room1@muc.example.com", "room2@muc.example.com"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{host, binary}],
|
|
|
|
result = {rooms, {list, {room, string}}}},
|
2017-12-13 04:07:12 +01:00
|
|
|
#ejabberd_commands{name = muc_online_rooms_by_regex, tags = [muc],
|
|
|
|
desc = "List existing rooms ('global' to get all vhosts) by regex",
|
|
|
|
policy = admin,
|
|
|
|
module = ?MODULE, function = muc_online_rooms_by_regex,
|
|
|
|
args_desc = ["Server domain where the MUC service is, or 'global' for all",
|
|
|
|
"Regex pattern for room name"],
|
|
|
|
args_example = ["example.com", "^prefix"],
|
|
|
|
result_desc = "List of rooms with summary",
|
|
|
|
result_example = [{"room1@muc.example.com", "true", 10},
|
|
|
|
{"room2@muc.example.com", "false", 10}],
|
|
|
|
args = [{host, binary}, {regex, binary}],
|
|
|
|
result = {rooms, {list, {room, {tuple,
|
|
|
|
[{jid, string},
|
|
|
|
{public, string},
|
|
|
|
{participants, integer}
|
|
|
|
]}}}}},
|
2017-04-10 12:23:14 +02:00
|
|
|
#ejabberd_commands{name = muc_register_nick, tags = [muc],
|
2017-08-24 10:40:24 +02:00
|
|
|
desc = "Register a nick to a User JID in the MUC service of a server",
|
2017-04-10 12:23:14 +02:00
|
|
|
module = ?MODULE, function = muc_register_nick,
|
2017-08-24 10:40:24 +02:00
|
|
|
args_desc = ["Nick", "User JID", "Server Host"],
|
|
|
|
args_example = [<<"Tim">>, <<"tim@example.org">>, <<"example.org">>],
|
|
|
|
args = [{nick, binary}, {jid, binary}, {serverhost, binary}],
|
2017-04-10 12:23:14 +02:00
|
|
|
result = {res, rescode}},
|
2015-04-07 16:30:34 +02:00
|
|
|
#ejabberd_commands{name = muc_unregister_nick, tags = [muc],
|
2017-08-24 10:40:24 +02:00
|
|
|
desc = "Unregister the nick registered by that account in the MUC service",
|
2015-04-07 16:30:34 +02:00
|
|
|
module = ?MODULE, function = muc_unregister_nick,
|
2017-08-24 10:40:24 +02:00
|
|
|
args_desc = ["User JID", "MUC service"],
|
|
|
|
args_example = [<<"tim@example.org">>, <<"example.org">>],
|
|
|
|
args = [{jid, binary}, {serverhost, binary}],
|
2015-04-07 16:30:34 +02:00
|
|
|
result = {res, rescode}},
|
|
|
|
|
|
|
|
#ejabberd_commands{name = create_room, tags = [muc_room],
|
|
|
|
desc = "Create a MUC room name@service in host",
|
|
|
|
module = ?MODULE, function = create_room,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service", "Server host"],
|
|
|
|
args_example = ["room1", "muc.example.com", "example.com"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{name, binary}, {service, binary},
|
|
|
|
{host, binary}],
|
|
|
|
result = {res, rescode}},
|
|
|
|
#ejabberd_commands{name = destroy_room, tags = [muc_room],
|
|
|
|
desc = "Destroy a MUC room",
|
|
|
|
module = ?MODULE, function = destroy_room,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service"],
|
|
|
|
args_example = ["room1", "muc.example.com"],
|
2015-08-12 13:26:24 +02:00
|
|
|
args = [{name, binary}, {service, binary}],
|
2015-04-07 16:30:34 +02:00
|
|
|
result = {res, rescode}},
|
|
|
|
#ejabberd_commands{name = create_rooms_file, tags = [muc],
|
|
|
|
desc = "Create the rooms indicated in file",
|
2015-08-12 17:18:41 +02:00
|
|
|
longdesc = "Provide one room JID per line. Rooms will be created after restart.",
|
2015-04-07 16:30:34 +02:00
|
|
|
module = ?MODULE, function = create_rooms_file,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Path to the text file with one room JID per line"],
|
|
|
|
args_example = ["/home/ejabberd/rooms.txt"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{file, string}],
|
|
|
|
result = {res, rescode}},
|
2016-09-13 11:52:59 +02:00
|
|
|
#ejabberd_commands{name = create_room_with_opts, tags = [muc_room],
|
|
|
|
desc = "Create a MUC room name@service in host with given options",
|
|
|
|
module = ?MODULE, function = create_room_with_opts,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service", "Server host", "List of options"],
|
|
|
|
args_example = ["room1", "muc.example.com", "localhost", [{"members_only","true"}]],
|
2016-09-13 11:52:59 +02:00
|
|
|
args = [{name, binary}, {service, binary},
|
|
|
|
{host, binary},
|
|
|
|
{options, {list,
|
|
|
|
{option, {tuple,
|
|
|
|
[{name, binary},
|
|
|
|
{value, binary}
|
|
|
|
]}}
|
|
|
|
}}],
|
|
|
|
result = {res, rescode}},
|
2015-04-07 16:30:34 +02:00
|
|
|
#ejabberd_commands{name = destroy_rooms_file, tags = [muc],
|
|
|
|
desc = "Destroy the rooms indicated in file",
|
2015-08-12 17:18:41 +02:00
|
|
|
longdesc = "Provide one room JID per line.",
|
2015-04-07 16:30:34 +02:00
|
|
|
module = ?MODULE, function = destroy_rooms_file,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Path to the text file with one room JID per line"],
|
|
|
|
args_example = ["/home/ejabberd/rooms.txt"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{file, string}],
|
|
|
|
result = {res, rescode}},
|
|
|
|
#ejabberd_commands{name = rooms_unused_list, tags = [muc],
|
|
|
|
desc = "List the rooms that are unused for many days in host",
|
|
|
|
module = ?MODULE, function = rooms_unused_list,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Server host", "Number of days"],
|
|
|
|
args_example = ["example.com", 31],
|
|
|
|
result_desc = "List of unused rooms",
|
|
|
|
result_example = ["room1@muc.example.com", "room2@muc.example.com"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{host, binary}, {days, integer}],
|
|
|
|
result = {rooms, {list, {room, string}}}},
|
|
|
|
#ejabberd_commands{name = rooms_unused_destroy, tags = [muc],
|
|
|
|
desc = "Destroy the rooms that are unused for many days in host",
|
|
|
|
module = ?MODULE, function = rooms_unused_destroy,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Server host", "Number of days"],
|
|
|
|
args_example = ["example.com", 31],
|
|
|
|
result_desc = "List of unused rooms that has been destroyed",
|
|
|
|
result_example = ["room1@muc.example.com", "room2@muc.example.com"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{host, binary}, {days, integer}],
|
|
|
|
result = {rooms, {list, {room, string}}}},
|
|
|
|
|
2015-04-29 13:21:41 +02:00
|
|
|
#ejabberd_commands{name = get_user_rooms, tags = [muc],
|
|
|
|
desc = "Get the list of rooms where this user is occupant",
|
|
|
|
module = ?MODULE, function = get_user_rooms,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Username", "Server host"],
|
|
|
|
args_example = ["tom", "example.com"],
|
|
|
|
result_example = ["room1@muc.example.com", "room2@muc.example.com"],
|
2015-04-29 13:21:41 +02:00
|
|
|
args = [{user, binary}, {host, binary}],
|
|
|
|
result = {rooms, {list, {room, string}}}},
|
|
|
|
|
2015-04-07 16:30:34 +02:00
|
|
|
#ejabberd_commands{name = get_room_occupants, tags = [muc_room],
|
|
|
|
desc = "Get the list of occupants of a MUC room",
|
|
|
|
module = ?MODULE, function = get_room_occupants,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service"],
|
|
|
|
args_example = ["room1", "muc.example.com"],
|
|
|
|
result_desc = "The list of occupants with JID, nick and affiliation",
|
|
|
|
result_example = [{"user1@example.com/psi", "User 1", "owner"}],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{name, binary}, {service, binary}],
|
|
|
|
result = {occupants, {list,
|
|
|
|
{occupant, {tuple,
|
|
|
|
[{jid, string},
|
|
|
|
{nick, string},
|
|
|
|
{role, string}
|
|
|
|
]}}
|
|
|
|
}}},
|
|
|
|
|
|
|
|
#ejabberd_commands{name = get_room_occupants_number, tags = [muc_room],
|
|
|
|
desc = "Get the number of occupants of a MUC room",
|
|
|
|
module = ?MODULE, function = get_room_occupants_number,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service"],
|
|
|
|
args_example = ["room1", "muc.example.com"],
|
|
|
|
result_desc = "Number of room occupants",
|
|
|
|
result_example = 7,
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{name, binary}, {service, binary}],
|
|
|
|
result = {occupants, integer}},
|
|
|
|
|
|
|
|
#ejabberd_commands{name = send_direct_invitation, tags = [muc_room],
|
|
|
|
desc = "Send a direct invitation to several destinations",
|
|
|
|
longdesc = "Password and Message can also be: none. Users JIDs are separated with : ",
|
|
|
|
module = ?MODULE, function = send_direct_invitation,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service", "Password, or none",
|
|
|
|
"Reason text, or none", "Users JIDs separated with : characters"],
|
2017-06-19 16:31:07 +02:00
|
|
|
args_example = [<<"room1">>, <<"muc.example.com">>,
|
|
|
|
<<>>, <<"Check this out!">>,
|
|
|
|
"user2@localhost:user3@example.com"],
|
|
|
|
args = [{name, binary}, {service, binary}, {password, binary},
|
|
|
|
{reason, binary}, {users, binary}],
|
2015-04-07 16:30:34 +02:00
|
|
|
result = {res, rescode}},
|
|
|
|
|
|
|
|
#ejabberd_commands{name = change_room_option, tags = [muc_room],
|
|
|
|
desc = "Change an option in a MUC room",
|
|
|
|
module = ?MODULE, function = change_room_option,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service", "Option name", "Value to assign"],
|
|
|
|
args_example = ["room1", "muc.example.com", "members_only", "true"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{name, binary}, {service, binary},
|
|
|
|
{option, binary}, {value, binary}],
|
|
|
|
result = {res, rescode}},
|
2015-05-15 17:47:10 +02:00
|
|
|
#ejabberd_commands{name = get_room_options, tags = [muc_room],
|
|
|
|
desc = "Get options from a MUC room",
|
|
|
|
module = ?MODULE, function = get_room_options,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service"],
|
|
|
|
args_example = ["room1", "muc.example.com"],
|
|
|
|
result_desc = "List of room options tuples with name and value",
|
|
|
|
result_example = [{"members_only", "true"}],
|
2015-05-15 17:47:10 +02:00
|
|
|
args = [{name, binary}, {service, binary}],
|
|
|
|
result = {options, {list,
|
|
|
|
{option, {tuple,
|
|
|
|
[{name, string},
|
|
|
|
{value, string}
|
|
|
|
]}}
|
|
|
|
}}},
|
2016-08-09 12:36:43 +02:00
|
|
|
#ejabberd_commands{name = subscribe_room, tags = [muc_room],
|
|
|
|
desc = "Subscribe to a MUC conference",
|
|
|
|
module = ?MODULE, function = subscribe_room,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Full JID, including some resource", "a user's nick",
|
|
|
|
"the room to subscribe", "nodes separated by commas: ,"],
|
|
|
|
args_example = ["tom@localhost/dummy", "Tom", "room1@conference.localhost",
|
|
|
|
"urn:xmpp:mucsub:nodes:messages,urn:xmpp:mucsub:nodes:affiliations"],
|
|
|
|
result_desc = "The list of nodes that has subscribed",
|
|
|
|
result_example = ["urn:xmpp:mucsub:nodes:messages",
|
|
|
|
"urn:xmpp:mucsub:nodes:affiliations"],
|
2016-08-09 12:36:43 +02:00
|
|
|
args = [{user, binary}, {nick, binary}, {room, binary},
|
|
|
|
{nodes, binary}],
|
2016-08-10 11:16:20 +02:00
|
|
|
result = {nodes, {list, {node, string}}}},
|
2016-08-09 12:36:43 +02:00
|
|
|
#ejabberd_commands{name = unsubscribe_room, tags = [muc_room],
|
|
|
|
desc = "Unsubscribe from a MUC conference",
|
|
|
|
module = ?MODULE, function = unsubscribe_room,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["User JID", "the room to subscribe"],
|
|
|
|
args_example = ["tom@localhost", "room1@conference.localhost"],
|
2016-08-09 12:36:43 +02:00
|
|
|
args = [{user, binary}, {room, binary}],
|
|
|
|
result = {res, rescode}},
|
2016-09-06 16:55:18 +02:00
|
|
|
#ejabberd_commands{name = get_subscribers, tags = [muc_room],
|
|
|
|
desc = "List subscribers of a MUC conference",
|
|
|
|
module = ?MODULE, function = get_subscribers,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service"],
|
|
|
|
args_example = ["room1", "muc.example.com"],
|
|
|
|
result_desc = "The list of users that are subscribed to that room",
|
|
|
|
result_example = ["user2@example.com", "user3@example.com"],
|
2016-09-06 16:55:18 +02:00
|
|
|
args = [{name, binary}, {service, binary}],
|
|
|
|
result = {subscribers, {list, {jid, string}}}},
|
2015-04-07 16:30:34 +02:00
|
|
|
#ejabberd_commands{name = set_room_affiliation, tags = [muc_room],
|
|
|
|
desc = "Change an affiliation in a MUC room",
|
|
|
|
module = ?MODULE, function = set_room_affiliation,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service", "User JID", "Affiliation to set"],
|
|
|
|
args_example = ["room1", "muc.example.com", "user2@example.com", "member"],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{name, binary}, {service, binary},
|
|
|
|
{jid, binary}, {affiliation, binary}],
|
|
|
|
result = {res, rescode}},
|
|
|
|
#ejabberd_commands{name = get_room_affiliations, tags = [muc_room],
|
|
|
|
desc = "Get the list of affiliations of a MUC room",
|
|
|
|
module = ?MODULE, function = get_room_affiliations,
|
2017-05-22 12:55:32 +02:00
|
|
|
args_desc = ["Room name", "MUC service"],
|
|
|
|
args_example = ["room1", "muc.example.com"],
|
|
|
|
result_desc = "The list of affiliations with username, domain, affiliation and reason",
|
2017-06-19 16:31:07 +02:00
|
|
|
result_example = [{"user1", "example.com", member, "member"}],
|
2015-04-07 16:30:34 +02:00
|
|
|
args = [{name, binary}, {service, binary}],
|
|
|
|
result = {affiliations, {list,
|
|
|
|
{affiliation, {tuple,
|
|
|
|
[{username, string},
|
|
|
|
{domain, string},
|
|
|
|
{affiliation, atom},
|
|
|
|
{reason, string}
|
|
|
|
]}}
|
2018-02-25 10:28:14 +01:00
|
|
|
}}},
|
|
|
|
#ejabberd_commands{name = get_room_affiliation, tags = [muc_room],
|
|
|
|
desc = "Get affiliation of a user in MUC room",
|
|
|
|
module = ?MODULE, function = get_room_affiliation,
|
|
|
|
args_desc = ["Room name", "MUC service", "User JID"],
|
|
|
|
args_example = ["room1", "muc.example.com", "user1@example.com"],
|
|
|
|
result_desc = "Affiliation of the user",
|
2018-03-01 19:45:16 +01:00
|
|
|
result_example = member,
|
2018-02-25 10:28:14 +01:00
|
|
|
args = [{name, binary}, {service, binary}, {jid, binary}],
|
2018-03-01 19:45:16 +01:00
|
|
|
result = {affiliation, atom}}
|
2018-02-25 10:28:14 +01:00
|
|
|
].
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
%%%
|
|
|
|
%%% ejabberd commands
|
|
|
|
%%%
|
|
|
|
|
|
|
|
muc_online_rooms(ServerHost) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
Hosts = find_hosts(ServerHost),
|
|
|
|
lists:flatmap(
|
|
|
|
fun(Host) ->
|
2017-05-22 12:55:32 +02:00
|
|
|
[<<Name/binary, "@", Host/binary>>
|
2017-01-13 10:03:39 +01:00
|
|
|
|| {Name, _, _} <- mod_muc:get_online_rooms(Host)]
|
|
|
|
end, Hosts).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
2017-12-13 04:07:12 +01:00
|
|
|
muc_online_rooms_by_regex(ServerHost, Regex) ->
|
|
|
|
{_, P} = re:compile(Regex),
|
|
|
|
Hosts = find_hosts(ServerHost),
|
|
|
|
lists:flatmap(
|
|
|
|
fun(Host) ->
|
|
|
|
[build_summary_room(Name, RoomHost, Pid)
|
|
|
|
|| {Name, RoomHost, Pid} <- mod_muc:get_online_rooms(Host),
|
|
|
|
is_name_match(Name, P)]
|
|
|
|
end, Hosts).
|
|
|
|
|
|
|
|
is_name_match(Name, P) ->
|
|
|
|
case re:run(Name, P) of
|
|
|
|
{match, _} -> true;
|
|
|
|
nomatch -> false
|
|
|
|
end.
|
|
|
|
|
|
|
|
build_summary_room(Name, Host, Pid) ->
|
|
|
|
C = get_room_config(Pid),
|
|
|
|
Public = C#config.public,
|
|
|
|
S = get_room_state(Pid),
|
2018-11-15 12:13:45 +01:00
|
|
|
Participants = maps:size(S#state.users),
|
2017-12-13 04:07:12 +01:00
|
|
|
{<<Name/binary, "@", Host/binary>>,
|
|
|
|
misc:atom_to_binary(Public),
|
|
|
|
Participants
|
2018-09-20 18:02:47 +02:00
|
|
|
}.
|
2017-12-13 04:07:12 +01:00
|
|
|
|
2017-08-24 10:40:24 +02:00
|
|
|
muc_register_nick(Nick, FromBinary, ServerHost) ->
|
|
|
|
Host = find_host(ServerHost),
|
|
|
|
From = jid:decode(FromBinary),
|
|
|
|
Lang = <<"en">>,
|
2018-05-14 12:24:56 +02:00
|
|
|
case mod_muc:iq_set_register_info(ServerHost, Host, From, Nick, Lang) of
|
|
|
|
{result, undefined} -> ok;
|
|
|
|
E -> E
|
|
|
|
end.
|
2017-04-10 12:23:14 +02:00
|
|
|
|
2017-08-24 10:40:24 +02:00
|
|
|
muc_unregister_nick(FromBinary, ServerHost) ->
|
|
|
|
muc_register_nick(<<"">>, FromBinary, ServerHost).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
2017-11-17 13:23:27 +01:00
|
|
|
get_user_rooms(User, Server) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
lists:flatmap(
|
|
|
|
fun(ServerHost) ->
|
|
|
|
case gen_mod:is_loaded(ServerHost, mod_muc) of
|
|
|
|
true ->
|
|
|
|
Rooms = mod_muc:get_online_rooms_by_user(
|
2017-11-17 13:23:27 +01:00
|
|
|
ServerHost, jid:nodeprep(User), jid:nodeprep(Server)),
|
2017-01-13 10:03:39 +01:00
|
|
|
[<<Name/binary, "@", Host/binary>>
|
|
|
|
|| {Name, Host} <- Rooms];
|
|
|
|
false ->
|
|
|
|
[]
|
|
|
|
end
|
2018-06-14 13:00:47 +02:00
|
|
|
end, ejabberd_config:get_myhosts()).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Ad-hoc commands
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Web Admin
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%%---------------
|
|
|
|
%% Web Admin Menu
|
|
|
|
|
|
|
|
web_menu_main(Acc, Lang) ->
|
|
|
|
Acc ++ [{<<"muc">>, ?T(<<"Multi-User Chat">>)}].
|
|
|
|
|
|
|
|
web_menu_host(Acc, _Host, Lang) ->
|
|
|
|
Acc ++ [{<<"muc">>, ?T(<<"Multi-User Chat">>)}].
|
|
|
|
|
|
|
|
|
|
|
|
%%---------------
|
|
|
|
%% Web Admin Page
|
|
|
|
|
|
|
|
-define(TDTD(L, N),
|
|
|
|
?XE(<<"tr">>, [?XCT(<<"td">>, L),
|
2016-07-25 12:50:30 +02:00
|
|
|
?XC(<<"td">>, integer_to_binary(N))
|
2015-04-07 16:30:34 +02:00
|
|
|
])).
|
|
|
|
|
|
|
|
web_page_main(_, #request{path=[<<"muc">>], lang = Lang} = _Request) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
OnlineRoomsNumber = lists:foldl(
|
|
|
|
fun(Host, Acc) ->
|
2017-03-21 15:35:51 +01:00
|
|
|
Acc + mod_muc:count_online_rooms(Host)
|
2017-01-13 10:03:39 +01:00
|
|
|
end, 0, find_hosts(global)),
|
2015-07-15 11:54:35 +02:00
|
|
|
Res = [?XCT(<<"h1">>, <<"Multi-User Chat">>),
|
|
|
|
?XCT(<<"h3">>, <<"Statistics">>),
|
2015-04-07 16:30:34 +02:00
|
|
|
?XAE(<<"table">>, [],
|
2018-08-08 14:05:04 +02:00
|
|
|
[?XE(<<"tbody">>, [?TDTD(<<"Total rooms">>, OnlineRoomsNumber)
|
2015-04-07 16:30:34 +02:00
|
|
|
])
|
|
|
|
]),
|
|
|
|
?XE(<<"ul">>, [?LI([?ACT(<<"rooms">>, <<"List of rooms">>)])])
|
|
|
|
],
|
|
|
|
{stop, Res};
|
|
|
|
|
|
|
|
web_page_main(_, #request{path=[<<"muc">>, <<"rooms">>], q = Q, lang = Lang} = _Request) ->
|
|
|
|
Sort_query = get_sort_query(Q),
|
|
|
|
Res = make_rooms_page(global, Lang, Sort_query),
|
|
|
|
{stop, Res};
|
|
|
|
|
|
|
|
web_page_main(Acc, _) -> Acc.
|
|
|
|
|
|
|
|
web_page_host(_, Host,
|
|
|
|
#request{path = [<<"muc">>],
|
|
|
|
q = Q,
|
|
|
|
lang = Lang} = _Request) ->
|
|
|
|
Sort_query = get_sort_query(Q),
|
2017-06-01 19:27:28 +02:00
|
|
|
Res = make_rooms_page(Host, Lang, Sort_query),
|
2015-04-07 16:30:34 +02:00
|
|
|
{stop, Res};
|
|
|
|
web_page_host(Acc, _, _) -> Acc.
|
|
|
|
|
|
|
|
|
|
|
|
%% Returns: {normal | reverse, Integer}
|
|
|
|
get_sort_query(Q) ->
|
|
|
|
case catch get_sort_query2(Q) of
|
|
|
|
{ok, Res} -> Res;
|
|
|
|
_ -> {normal, 1}
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_sort_query2(Q) ->
|
|
|
|
{value, {_, String}} = lists:keysearch(<<"sort">>, 1, Q),
|
2016-07-25 12:50:30 +02:00
|
|
|
Integer = binary_to_integer(String),
|
2015-04-07 16:30:34 +02:00
|
|
|
case Integer >= 0 of
|
|
|
|
true -> {ok, {normal, Integer}};
|
|
|
|
false -> {ok, {reverse, abs(Integer)}}
|
|
|
|
end.
|
|
|
|
|
|
|
|
make_rooms_page(Host, Lang, {Sort_direction, Sort_column}) ->
|
|
|
|
Rooms_names = get_rooms(Host),
|
|
|
|
Rooms_infos = build_info_rooms(Rooms_names),
|
|
|
|
Rooms_sorted = sort_rooms(Sort_direction, Sort_column, Rooms_infos),
|
|
|
|
Rooms_prepared = prepare_rooms_infos(Rooms_sorted),
|
|
|
|
TList = lists:map(
|
|
|
|
fun(Room) ->
|
|
|
|
?XE(<<"tr">>, [?XC(<<"td">>, E) || E <- Room])
|
|
|
|
end, Rooms_prepared),
|
|
|
|
Titles = [<<"Jabber ID">>,
|
|
|
|
<<"# participants">>,
|
|
|
|
<<"Last message">>,
|
|
|
|
<<"Public">>,
|
|
|
|
<<"Persistent">>,
|
|
|
|
<<"Logging">>,
|
|
|
|
<<"Just created">>,
|
2015-07-15 11:54:35 +02:00
|
|
|
<<"Room title">>],
|
2015-04-07 16:30:34 +02:00
|
|
|
{Titles_TR, _} =
|
|
|
|
lists:mapfoldl(
|
|
|
|
fun(Title, Num_column) ->
|
2016-07-25 12:50:30 +02:00
|
|
|
NCS = integer_to_binary(Num_column),
|
2015-04-07 16:30:34 +02:00
|
|
|
TD = ?XE(<<"td">>, [?CT(Title),
|
|
|
|
?C(<<" ">>),
|
2015-07-15 11:54:35 +02:00
|
|
|
?AC(<<"?sort=", NCS/binary>>, <<"<">>),
|
2015-04-07 16:30:34 +02:00
|
|
|
?C(<<" ">>),
|
2015-07-15 11:54:35 +02:00
|
|
|
?AC(<<"?sort=-", NCS/binary>>, <<">">>)]),
|
2015-04-07 16:30:34 +02:00
|
|
|
{TD, Num_column+1}
|
|
|
|
end,
|
|
|
|
1,
|
|
|
|
Titles),
|
2015-07-15 11:54:35 +02:00
|
|
|
[?XCT(<<"h1">>, <<"Multi-User Chat">>),
|
|
|
|
?XCT(<<"h2">>, <<"Chatrooms">>),
|
2015-04-07 16:30:34 +02:00
|
|
|
?XE(<<"table">>,
|
|
|
|
[?XE(<<"thead">>,
|
|
|
|
[?XE(<<"tr">>, Titles_TR)]
|
|
|
|
),
|
|
|
|
?XE(<<"tbody">>, TList)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
].
|
|
|
|
|
|
|
|
sort_rooms(Direction, Column, Rooms) ->
|
|
|
|
Rooms2 = lists:keysort(Column, Rooms),
|
|
|
|
case Direction of
|
|
|
|
normal -> Rooms2;
|
|
|
|
reverse -> lists:reverse(Rooms2)
|
|
|
|
end.
|
|
|
|
|
|
|
|
build_info_rooms(Rooms) ->
|
|
|
|
[build_info_room(Room) || Room <- Rooms].
|
|
|
|
|
|
|
|
build_info_room({Name, Host, Pid}) ->
|
|
|
|
C = get_room_config(Pid),
|
|
|
|
Title = C#config.title,
|
|
|
|
Public = C#config.public,
|
|
|
|
Persistent = C#config.persistent,
|
|
|
|
Logging = C#config.logging,
|
|
|
|
|
|
|
|
S = get_room_state(Pid),
|
|
|
|
Just_created = S#state.just_created,
|
2018-11-15 12:13:45 +01:00
|
|
|
Num_participants = maps:size(S#state.users),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
History = (S#state.history)#lqueue.queue,
|
|
|
|
Ts_last_message =
|
2017-06-01 19:27:28 +02:00
|
|
|
case p1_queue:is_empty(History) of
|
2015-04-07 16:30:34 +02:00
|
|
|
true ->
|
|
|
|
<<"A long time ago">>;
|
|
|
|
false ->
|
2017-06-01 19:27:28 +02:00
|
|
|
Last_message1 = get_queue_last(History),
|
2015-04-07 16:30:34 +02:00
|
|
|
{_, _, _, Ts_last, _} = Last_message1,
|
2016-11-13 08:44:53 +01:00
|
|
|
xmpp_util:encode_timestamp(Ts_last)
|
2015-04-07 16:30:34 +02:00
|
|
|
end,
|
|
|
|
|
|
|
|
{<<Name/binary, "@", Host/binary>>,
|
|
|
|
Num_participants,
|
|
|
|
Ts_last_message,
|
|
|
|
Public,
|
|
|
|
Persistent,
|
|
|
|
Logging,
|
|
|
|
Just_created,
|
|
|
|
Title}.
|
|
|
|
|
2017-06-01 19:27:28 +02:00
|
|
|
get_queue_last(Queue) ->
|
|
|
|
List = p1_queue:to_list(Queue),
|
|
|
|
lists:last(List).
|
|
|
|
|
2015-04-07 16:30:34 +02:00
|
|
|
prepare_rooms_infos(Rooms) ->
|
|
|
|
[prepare_room_info(Room) || Room <- Rooms].
|
|
|
|
prepare_room_info(Room_info) ->
|
|
|
|
{NameHost,
|
|
|
|
Num_participants,
|
|
|
|
Ts_last_message,
|
|
|
|
Public,
|
|
|
|
Persistent,
|
|
|
|
Logging,
|
|
|
|
Just_created,
|
|
|
|
Title} = Room_info,
|
|
|
|
[NameHost,
|
2016-07-25 12:50:30 +02:00
|
|
|
integer_to_binary(Num_participants),
|
2015-04-07 16:30:34 +02:00
|
|
|
Ts_last_message,
|
2017-04-11 12:13:58 +02:00
|
|
|
misc:atom_to_binary(Public),
|
|
|
|
misc:atom_to_binary(Persistent),
|
|
|
|
misc:atom_to_binary(Logging),
|
|
|
|
misc:atom_to_binary(Just_created),
|
2015-04-07 16:30:34 +02:00
|
|
|
Title].
|
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Create/Delete Room
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%% @spec (Name::binary(), Host::binary(), ServerHost::binary()) ->
|
|
|
|
%% ok | error
|
|
|
|
%% @doc Create a room immediately with the default options.
|
2016-02-08 21:35:26 +01:00
|
|
|
create_room(Name1, Host1, ServerHost) ->
|
2018-02-13 11:08:13 +01:00
|
|
|
case create_room_with_opts(Name1, Host1, ServerHost, []) of
|
|
|
|
ok -> change_room_option(Name1, Host1, <<"persistent">>, <<"true">>);
|
|
|
|
Error -> Error
|
|
|
|
end.
|
2016-09-13 11:52:59 +02:00
|
|
|
|
|
|
|
create_room_with_opts(Name1, Host1, ServerHost, CustomRoomOpts) ->
|
2016-11-04 17:28:28 +01:00
|
|
|
true = (error /= (Name = jid:nodeprep(Name1))),
|
|
|
|
true = (error /= (Host = jid:nodeprep(Host1))),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%% Get the default room options from the muc configuration
|
|
|
|
DefRoomOpts = gen_mod:get_module_opt(ServerHost, mod_muc,
|
2018-01-23 08:54:52 +01:00
|
|
|
default_room_options),
|
2016-09-13 11:52:59 +02:00
|
|
|
%% Change default room options as required
|
|
|
|
FormattedRoomOpts = [format_room_option(Opt, Val) || {Opt, Val}<-CustomRoomOpts],
|
|
|
|
RoomOpts = lists:ukeymerge(1,
|
|
|
|
lists:keysort(1, FormattedRoomOpts),
|
|
|
|
lists:keysort(1, DefRoomOpts)),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%% Store the room on the server, it is not started yet though at this point
|
2016-09-13 11:52:59 +02:00
|
|
|
mod_muc:store_room(ServerHost, Host, Name, RoomOpts),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%% Get all remaining mod_muc parameters that might be utilized
|
2018-01-23 08:54:52 +01:00
|
|
|
Access = gen_mod:get_module_opt(ServerHost, mod_muc, access),
|
|
|
|
AcCreate = gen_mod:get_module_opt(ServerHost, mod_muc, access_create),
|
|
|
|
AcAdmin = gen_mod:get_module_opt(ServerHost, mod_muc, access_admin),
|
|
|
|
AcPer = gen_mod:get_module_opt(ServerHost, mod_muc, access_persistent),
|
|
|
|
HistorySize = gen_mod:get_module_opt(ServerHost, mod_muc, history_size),
|
|
|
|
RoomShaper = gen_mod:get_module_opt(ServerHost, mod_muc, room_shaper),
|
|
|
|
QueueType = gen_mod:get_module_opt(ServerHost, mod_muc, queue_type),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%% If the room does not exist yet in the muc_online_room
|
2017-01-13 10:03:39 +01:00
|
|
|
case mod_muc:find_online_room(Name, Host) of
|
|
|
|
error ->
|
2015-04-07 16:30:34 +02:00
|
|
|
%% Start the room
|
|
|
|
{ok, Pid} = mod_muc_room:start(
|
|
|
|
Host,
|
|
|
|
ServerHost,
|
|
|
|
{Access, AcCreate, AcAdmin, AcPer},
|
|
|
|
Name,
|
|
|
|
HistorySize,
|
|
|
|
RoomShaper,
|
2017-03-10 13:12:43 +01:00
|
|
|
RoomOpts,
|
|
|
|
QueueType),
|
2017-03-17 20:07:23 +01:00
|
|
|
mod_muc:register_online_room(Name, Host, Pid),
|
2015-04-07 16:30:34 +02:00
|
|
|
ok;
|
2017-01-13 10:03:39 +01:00
|
|
|
{ok, _} ->
|
2015-04-07 16:30:34 +02:00
|
|
|
error
|
|
|
|
end.
|
|
|
|
|
|
|
|
%% Create the room only in the database.
|
|
|
|
%% It is required to restart the MUC service for the room to appear.
|
|
|
|
muc_create_room(ServerHost, {Name, Host, _}, DefRoomOpts) ->
|
|
|
|
io:format("Creating room ~s@~s~n", [Name, Host]),
|
|
|
|
mod_muc:store_room(ServerHost, Host, Name, DefRoomOpts).
|
|
|
|
|
2015-08-12 13:26:24 +02:00
|
|
|
%% @spec (Name::binary(), Host::binary()) ->
|
2015-04-07 16:30:34 +02:00
|
|
|
%% ok | {error, room_not_exists}
|
|
|
|
%% @doc Destroy the room immediately.
|
|
|
|
%% If the room has participants, they are not notified that the room was destroyed;
|
|
|
|
%% they will notice when they try to chat and receive an error that the room doesn't exist.
|
2015-08-12 13:26:24 +02:00
|
|
|
destroy_room(Name, Service) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
case mod_muc:find_online_room(Name, Service) of
|
|
|
|
{ok, Pid} ->
|
2017-08-05 19:58:21 +02:00
|
|
|
p1_fsm:send_all_state_event(Pid, destroy),
|
2015-04-07 16:30:34 +02:00
|
|
|
ok;
|
2017-01-13 10:03:39 +01:00
|
|
|
error ->
|
2015-04-07 16:30:34 +02:00
|
|
|
error
|
|
|
|
end.
|
|
|
|
|
|
|
|
destroy_room({N, H, SH}) ->
|
|
|
|
io:format("Destroying room: ~s@~s - vhost: ~s~n", [N, H, SH]),
|
2015-08-12 13:26:24 +02:00
|
|
|
destroy_room(N, H).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Destroy Rooms in File
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%% The format of the file is: one chatroom JID per line
|
|
|
|
%% The file encoding must be UTF-8
|
|
|
|
|
|
|
|
destroy_rooms_file(Filename) ->
|
2016-11-04 16:54:31 +01:00
|
|
|
{ok, F} = file:open(Filename, [read]),
|
2015-04-07 16:30:34 +02:00
|
|
|
RJID = read_room(F),
|
|
|
|
Rooms = read_rooms(F, RJID, []),
|
|
|
|
file:close(F),
|
|
|
|
[destroy_room(A) || A <- Rooms],
|
|
|
|
ok.
|
|
|
|
|
|
|
|
read_rooms(_F, eof, L) ->
|
|
|
|
L;
|
2017-01-31 17:50:04 +01:00
|
|
|
read_rooms(F, no_room, L) ->
|
|
|
|
RJID2 = read_room(F),
|
|
|
|
read_rooms(F, RJID2, L);
|
2015-04-07 16:30:34 +02:00
|
|
|
read_rooms(F, RJID, L) ->
|
|
|
|
RJID2 = read_room(F),
|
|
|
|
read_rooms(F, RJID2, [RJID | L]).
|
|
|
|
|
|
|
|
read_room(F) ->
|
|
|
|
case io:get_line(F, "") of
|
|
|
|
eof -> eof;
|
|
|
|
String ->
|
|
|
|
case io_lib:fread("~s", String) of
|
2016-11-04 16:54:31 +01:00
|
|
|
{ok, [RoomJID], _} -> split_roomjid(list_to_binary(RoomJID));
|
2015-04-07 16:30:34 +02:00
|
|
|
{error, What} ->
|
|
|
|
io:format("Parse error: what: ~p~non the line: ~p~n~n", [What, String])
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
|
|
|
%% This function is quite rudimentary
|
|
|
|
%% and may not be accurate
|
|
|
|
split_roomjid(RoomJID) ->
|
2017-01-31 17:50:04 +01:00
|
|
|
split_roomjid2(binary:split(RoomJID, <<"@">>)).
|
|
|
|
split_roomjid2([Name, Host]) ->
|
2016-02-09 15:49:47 +01:00
|
|
|
[_MUC_service_name, ServerHost] = binary:split(Host, <<".">>),
|
2017-01-31 17:50:04 +01:00
|
|
|
{Name, Host, ServerHost};
|
|
|
|
split_roomjid2(_) ->
|
|
|
|
no_room.
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Create Rooms in File
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
create_rooms_file(Filename) ->
|
2016-11-04 16:54:31 +01:00
|
|
|
{ok, F} = file:open(Filename, [read]),
|
2015-04-07 16:30:34 +02:00
|
|
|
RJID = read_room(F),
|
|
|
|
Rooms = read_rooms(F, RJID, []),
|
|
|
|
file:close(F),
|
|
|
|
%% Read the default room options defined for the first virtual host
|
2018-06-14 13:00:47 +02:00
|
|
|
DefRoomOpts = gen_mod:get_module_opt(ejabberd_config:get_myname(), mod_muc,
|
2018-01-23 08:54:52 +01:00
|
|
|
default_room_options),
|
2018-06-14 13:00:47 +02:00
|
|
|
[muc_create_room(ejabberd_config:get_myname(), A, DefRoomOpts) || A <- Rooms],
|
2015-04-07 16:30:34 +02:00
|
|
|
ok.
|
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% List/Delete Unused Rooms
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%%---------------
|
|
|
|
%% Control
|
|
|
|
|
2017-12-21 17:00:43 +01:00
|
|
|
rooms_unused_list(ServerHost, Days) ->
|
|
|
|
rooms_unused_report(list, ServerHost, Days).
|
|
|
|
rooms_unused_destroy(ServerHost, Days) ->
|
|
|
|
rooms_unused_report(destroy, ServerHost, Days).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
2017-12-21 17:00:43 +01:00
|
|
|
rooms_unused_report(Action, ServerHost, Days) ->
|
|
|
|
{NA, NP, RP} = muc_unused(Action, ServerHost, Days),
|
2015-04-07 16:30:34 +02:00
|
|
|
io:format("Unused rooms: ~p out of ~p~n", [NP, NA]),
|
2015-04-29 13:21:41 +02:00
|
|
|
[<<R/binary, "@", H/binary>> || {R, H, _P} <- RP].
|
2015-04-07 16:30:34 +02:00
|
|
|
|
2017-12-21 17:00:43 +01:00
|
|
|
muc_unused(Action, ServerHost, Last_allowed) ->
|
2015-04-07 16:30:34 +02:00
|
|
|
%% Get all required info about all existing rooms
|
2017-12-21 17:00:43 +01:00
|
|
|
Rooms_all = get_rooms(ServerHost),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%% Decide which ones pass the requirements
|
|
|
|
Rooms_pass = decide_rooms(Rooms_all, Last_allowed),
|
|
|
|
|
|
|
|
Num_rooms_all = length(Rooms_all),
|
|
|
|
Num_rooms_pass = length(Rooms_pass),
|
|
|
|
|
|
|
|
%% Perform the desired action for matching rooms
|
|
|
|
act_on_rooms(Action, Rooms_pass, ServerHost),
|
|
|
|
|
|
|
|
{Num_rooms_all, Num_rooms_pass, Rooms_pass}.
|
|
|
|
|
|
|
|
%%---------------
|
|
|
|
%% Get info
|
|
|
|
|
2017-01-13 10:03:39 +01:00
|
|
|
get_rooms(ServerHost) ->
|
|
|
|
Hosts = find_hosts(ServerHost),
|
|
|
|
lists:flatmap(
|
|
|
|
fun(Host) ->
|
|
|
|
mod_muc:get_online_rooms(Host)
|
|
|
|
end, Hosts).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
get_room_config(Room_pid) ->
|
2017-08-05 19:58:21 +02:00
|
|
|
{ok, R} = p1_fsm:sync_send_all_state_event(Room_pid, get_config),
|
2015-04-07 16:30:34 +02:00
|
|
|
R.
|
|
|
|
|
|
|
|
get_room_state(Room_pid) ->
|
2017-08-05 19:58:21 +02:00
|
|
|
{ok, R} = p1_fsm:sync_send_all_state_event(Room_pid, get_state),
|
2015-04-07 16:30:34 +02:00
|
|
|
R.
|
|
|
|
|
|
|
|
%%---------------
|
|
|
|
%% Decide
|
|
|
|
|
|
|
|
decide_rooms(Rooms, Last_allowed) ->
|
|
|
|
Decide = fun(R) -> decide_room(R, Last_allowed) end,
|
|
|
|
lists:filter(Decide, Rooms).
|
|
|
|
|
|
|
|
decide_room({_Room_name, _Host, Room_pid}, Last_allowed) ->
|
|
|
|
C = get_room_config(Room_pid),
|
|
|
|
Persistent = C#config.persistent,
|
|
|
|
|
|
|
|
S = get_room_state(Room_pid),
|
|
|
|
Just_created = S#state.just_created,
|
|
|
|
|
|
|
|
Room_users = S#state.users,
|
2018-11-15 12:13:45 +01:00
|
|
|
Num_users = maps:size(Room_users),
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
History = (S#state.history)#lqueue.queue,
|
2015-12-07 16:08:57 +01:00
|
|
|
Ts_now = calendar:universal_time(),
|
2015-04-07 16:30:34 +02:00
|
|
|
Ts_uptime = uptime_seconds(),
|
2017-06-01 19:27:28 +02:00
|
|
|
{Has_hist, Last} = case p1_queue:is_empty(History) of
|
2015-04-07 16:30:34 +02:00
|
|
|
true ->
|
|
|
|
{false, Ts_uptime};
|
|
|
|
false ->
|
2017-12-22 14:32:47 +01:00
|
|
|
Last_message = get_queue_last(History),
|
|
|
|
Ts_last = calendar:now_to_universal_time(
|
|
|
|
element(4, Last_message)),
|
2015-04-07 16:30:34 +02:00
|
|
|
Ts_diff =
|
|
|
|
calendar:datetime_to_gregorian_seconds(Ts_now)
|
|
|
|
- calendar:datetime_to_gregorian_seconds(Ts_last),
|
|
|
|
{true, Ts_diff}
|
|
|
|
end,
|
|
|
|
|
|
|
|
case {Persistent, Just_created, Num_users, Has_hist, seconds_to_days(Last)} of
|
|
|
|
{_true, false, 0, _, Last_days}
|
|
|
|
when Last_days >= Last_allowed ->
|
|
|
|
true;
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end.
|
|
|
|
|
|
|
|
seconds_to_days(S) ->
|
|
|
|
S div (60*60*24).
|
|
|
|
|
|
|
|
%%---------------
|
|
|
|
%% Act
|
|
|
|
|
|
|
|
act_on_rooms(Action, Rooms, ServerHost) ->
|
2018-06-14 13:00:47 +02:00
|
|
|
ServerHosts = [ {A, find_host(A)} || A <- ejabberd_config:get_myhosts() ],
|
2015-04-07 16:30:34 +02:00
|
|
|
Delete = fun({_N, H, _Pid} = Room) ->
|
|
|
|
SH = case ServerHost of
|
|
|
|
global -> find_serverhost(H, ServerHosts);
|
|
|
|
O -> O
|
|
|
|
end,
|
|
|
|
|
|
|
|
act_on_room(Action, Room, SH)
|
|
|
|
end,
|
|
|
|
lists:foreach(Delete, Rooms).
|
|
|
|
|
|
|
|
find_serverhost(Host, ServerHosts) ->
|
|
|
|
{value, {ServerHost, Host}} = lists:keysearch(Host, 2, ServerHosts),
|
|
|
|
ServerHost.
|
|
|
|
|
|
|
|
act_on_room(destroy, {N, H, Pid}, SH) ->
|
2017-08-05 19:58:21 +02:00
|
|
|
p1_fsm:send_all_state_event(
|
2015-04-07 16:30:34 +02:00
|
|
|
Pid, {destroy, <<"Room destroyed by rooms_unused_destroy.">>}),
|
|
|
|
mod_muc:room_destroyed(H, N, Pid, SH),
|
|
|
|
mod_muc:forget_room(SH, H, N);
|
|
|
|
|
|
|
|
act_on_room(list, _, _) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Change Room Option
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
get_room_occupants(Room, Host) ->
|
|
|
|
case get_room_pid(Room, Host) of
|
|
|
|
room_not_found -> throw({error, room_not_found});
|
|
|
|
Pid -> get_room_occupants(Pid)
|
|
|
|
end.
|
|
|
|
|
|
|
|
get_room_occupants(Pid) ->
|
|
|
|
S = get_room_state(Pid),
|
|
|
|
lists:map(
|
|
|
|
fun({_LJID, Info}) ->
|
2017-02-26 08:07:12 +01:00
|
|
|
{jid:encode(Info#user.jid),
|
2015-04-07 16:30:34 +02:00
|
|
|
Info#user.nick,
|
|
|
|
atom_to_list(Info#user.role)}
|
|
|
|
end,
|
2018-11-15 12:13:45 +01:00
|
|
|
maps:to_list(S#state.users)).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
get_room_occupants_number(Room, Host) ->
|
2017-09-07 18:32:26 +02:00
|
|
|
case get_room_pid(Room, Host) of
|
|
|
|
room_not_found ->
|
|
|
|
throw({error, room_not_found});
|
|
|
|
Pid ->
|
|
|
|
S = get_room_state(Pid),
|
2018-11-15 12:13:45 +01:00
|
|
|
maps:size(S#state.users)
|
2017-09-07 18:32:26 +02:00
|
|
|
end.
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Send Direct Invitation
|
|
|
|
%%----------------------------
|
|
|
|
%% http://xmpp.org/extensions/xep-0249.html
|
|
|
|
|
2015-08-12 13:26:24 +02:00
|
|
|
send_direct_invitation(RoomName, RoomService, Password, Reason, UsersString) ->
|
2017-02-25 08:01:01 +01:00
|
|
|
RoomJid = jid:make(RoomName, RoomService),
|
2017-02-16 09:00:26 +01:00
|
|
|
XmlEl = build_invitation(Password, Reason, RoomJid),
|
2017-12-19 10:24:07 +01:00
|
|
|
Users = get_users_to_invite(RoomJid, UsersString),
|
|
|
|
[send_direct_invitation(RoomJid, UserJid, XmlEl)
|
|
|
|
|| UserJid <- Users],
|
2015-04-07 16:30:34 +02:00
|
|
|
timer:sleep(1000),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
get_users_to_invite(RoomJid, UsersString) ->
|
2016-02-09 15:49:47 +01:00
|
|
|
UsersStrings = binary:split(UsersString, <<":">>, [global]),
|
2015-04-07 16:30:34 +02:00
|
|
|
OccupantsTuples = get_room_occupants(RoomJid#jid.luser,
|
|
|
|
RoomJid#jid.lserver),
|
2017-02-26 08:07:12 +01:00
|
|
|
OccupantsJids = [jid:decode(JidString)
|
2015-04-07 16:30:34 +02:00
|
|
|
|| {JidString, _Nick, _} <- OccupantsTuples],
|
2016-02-09 15:49:47 +01:00
|
|
|
lists:filtermap(
|
|
|
|
fun(UserString) ->
|
2017-02-26 08:07:12 +01:00
|
|
|
UserJid = jid:decode(UserString),
|
2016-02-09 15:49:47 +01:00
|
|
|
Val = lists:all(fun(OccupantJid) ->
|
|
|
|
UserJid#jid.luser /= OccupantJid#jid.luser
|
|
|
|
orelse UserJid#jid.lserver /= OccupantJid#jid.lserver
|
|
|
|
end,
|
|
|
|
OccupantsJids),
|
2017-12-19 10:24:07 +01:00
|
|
|
case {UserJid#jid.luser, Val} of
|
|
|
|
{<<>>, _} -> false;
|
|
|
|
{_, true} -> {true, UserJid};
|
2016-02-09 15:49:47 +01:00
|
|
|
_ -> false
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
UsersStrings).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
2017-02-16 09:00:26 +01:00
|
|
|
build_invitation(Password, Reason, RoomJid) ->
|
|
|
|
Invite = #x_conference{jid = RoomJid,
|
|
|
|
password = case Password of
|
|
|
|
<<"none">> -> <<>>;
|
|
|
|
_ -> Password
|
|
|
|
end,
|
|
|
|
reason = case Reason of
|
|
|
|
<<"none">> -> <<>>;
|
|
|
|
_ -> Reason
|
|
|
|
end},
|
|
|
|
#message{sub_els = [Invite]}.
|
|
|
|
|
|
|
|
send_direct_invitation(FromJid, UserJid, Msg) ->
|
|
|
|
ejabberd_router:route(xmpp:set_from_to(Msg, FromJid, UserJid)).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Change Room Option
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%% @spec(Name::string(), Service::string(), Option::string(), Value) -> ok
|
|
|
|
%% Value = atom() | integer() | string()
|
|
|
|
%% @doc Change an option in an existing room.
|
|
|
|
%% Requires the name of the room, the MUC service where it exists,
|
|
|
|
%% the option to change (for example title or max_users),
|
|
|
|
%% and the value to assign to the new option.
|
|
|
|
%% For example:
|
2016-09-13 11:52:59 +02:00
|
|
|
%% change_room_option(<<"testroom">>, <<"conference.localhost">>, <<"title">>, <<"Test Room">>)
|
2015-04-07 16:30:34 +02:00
|
|
|
change_room_option(Name, Service, OptionString, ValueString) ->
|
2016-09-13 11:52:59 +02:00
|
|
|
case get_room_pid(Name, Service) of
|
|
|
|
room_not_found ->
|
|
|
|
room_not_found;
|
|
|
|
Pid ->
|
|
|
|
{Option, Value} = format_room_option(OptionString, ValueString),
|
|
|
|
Config = get_room_config(Pid),
|
|
|
|
Config2 = change_option(Option, Value, Config),
|
2017-08-05 19:58:21 +02:00
|
|
|
{ok, _} = p1_fsm:sync_send_all_state_event(Pid, {change_config, Config2}),
|
2016-09-13 11:52:59 +02:00
|
|
|
ok
|
|
|
|
end.
|
|
|
|
|
|
|
|
format_room_option(OptionString, ValueString) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
Option = misc:binary_to_atom(OptionString),
|
2015-04-07 16:30:34 +02:00
|
|
|
Value = case Option of
|
|
|
|
title -> ValueString;
|
|
|
|
description -> ValueString;
|
|
|
|
password -> ValueString;
|
|
|
|
subject ->ValueString;
|
|
|
|
subject_author ->ValueString;
|
2017-05-29 12:46:59 +02:00
|
|
|
presence_broadcast ->misc:expr_to_term(ValueString);
|
2016-09-24 22:34:28 +02:00
|
|
|
max_users -> binary_to_integer(ValueString);
|
2018-09-20 18:02:47 +02:00
|
|
|
voice_request_min_interval -> binary_to_integer(ValueString);
|
|
|
|
vcard -> ValueString;
|
|
|
|
vcard_xupdate when ValueString /= <<"undefined">>,
|
|
|
|
ValueString /= <<"external">> ->
|
|
|
|
ValueString;
|
|
|
|
lang -> ValueString;
|
|
|
|
pubsub -> ValueString;
|
2017-04-11 12:13:58 +02:00
|
|
|
_ -> misc:binary_to_atom(ValueString)
|
2015-04-07 16:30:34 +02:00
|
|
|
end,
|
2016-09-13 11:52:59 +02:00
|
|
|
{Option, Value}.
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%% @doc Get the Pid of an existing MUC room, or 'room_not_found'.
|
|
|
|
get_room_pid(Name, Service) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
case mod_muc:find_online_room(Name, Service) of
|
|
|
|
error ->
|
2015-04-07 16:30:34 +02:00
|
|
|
room_not_found;
|
2017-01-13 10:03:39 +01:00
|
|
|
{ok, Pid} ->
|
|
|
|
Pid
|
2015-04-07 16:30:34 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
%% It is required to put explicitely all the options because
|
|
|
|
%% the record elements are replaced at compile time.
|
|
|
|
%% So, this can't be parametrized.
|
|
|
|
change_option(Option, Value, Config) ->
|
|
|
|
case Option of
|
|
|
|
allow_change_subj -> Config#config{allow_change_subj = Value};
|
|
|
|
allow_private_messages -> Config#config{allow_private_messages = Value};
|
2015-06-18 13:13:49 +02:00
|
|
|
allow_private_messages_from_visitors -> Config#config{allow_private_messages_from_visitors = Value};
|
2015-04-07 16:30:34 +02:00
|
|
|
allow_query_users -> Config#config{allow_query_users = Value};
|
2016-08-22 01:17:32 +02:00
|
|
|
allow_subscription -> Config#config{allow_subscription = Value};
|
2015-04-07 16:30:34 +02:00
|
|
|
allow_user_invites -> Config#config{allow_user_invites = Value};
|
2015-06-18 13:13:49 +02:00
|
|
|
allow_visitor_nickchange -> Config#config{allow_visitor_nickchange = Value};
|
|
|
|
allow_visitor_status -> Config#config{allow_visitor_status = Value};
|
|
|
|
allow_voice_requests -> Config#config{allow_voice_requests = Value};
|
2015-04-07 16:30:34 +02:00
|
|
|
anonymous -> Config#config{anonymous = Value};
|
2015-06-18 13:13:49 +02:00
|
|
|
captcha_protected -> Config#config{captcha_protected = Value};
|
2015-05-12 17:37:39 +02:00
|
|
|
description -> Config#config{description = Value};
|
2015-04-07 16:30:34 +02:00
|
|
|
logging -> Config#config{logging = Value};
|
2016-01-02 20:57:01 +01:00
|
|
|
mam -> Config#config{mam = Value};
|
2015-04-07 16:30:34 +02:00
|
|
|
max_users -> Config#config{max_users = Value};
|
|
|
|
members_by_default -> Config#config{members_by_default = Value};
|
|
|
|
members_only -> Config#config{members_only = Value};
|
|
|
|
moderated -> Config#config{moderated = Value};
|
|
|
|
password -> Config#config{password = Value};
|
|
|
|
password_protected -> Config#config{password_protected = Value};
|
|
|
|
persistent -> Config#config{persistent = Value};
|
2017-05-29 12:46:59 +02:00
|
|
|
presence_broadcast -> Config#config{presence_broadcast = Value};
|
2015-04-07 16:30:34 +02:00
|
|
|
public -> Config#config{public = Value};
|
|
|
|
public_list -> Config#config{public_list = Value};
|
2015-06-18 13:13:49 +02:00
|
|
|
title -> Config#config{title = Value};
|
|
|
|
vcard -> Config#config{vcard = Value};
|
|
|
|
voice_request_min_interval -> Config#config{voice_request_min_interval = Value}
|
2015-04-07 16:30:34 +02:00
|
|
|
end.
|
|
|
|
|
2015-05-15 17:47:10 +02:00
|
|
|
%%----------------------------
|
|
|
|
%% Get Room Options
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
get_room_options(Name, Service) ->
|
2015-08-28 13:34:51 +02:00
|
|
|
case get_room_pid(Name, Service) of
|
|
|
|
room_not_found -> [];
|
|
|
|
Pid -> get_room_options(Pid)
|
|
|
|
end.
|
2015-05-15 17:47:10 +02:00
|
|
|
|
|
|
|
get_room_options(Pid) ->
|
|
|
|
Config = get_room_config(Pid),
|
|
|
|
get_options(Config).
|
|
|
|
|
|
|
|
get_options(Config) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
Fields = [misc:atom_to_binary(Field) || Field <- record_info(fields, config)],
|
2016-04-05 14:13:28 +02:00
|
|
|
[config | ValuesRaw] = tuple_to_list(Config),
|
2017-04-11 12:13:58 +02:00
|
|
|
Values = lists:map(fun(V) when is_atom(V) -> misc:atom_to_binary(V);
|
2016-07-25 12:50:30 +02:00
|
|
|
(V) when is_integer(V) -> integer_to_binary(V);
|
2016-04-05 14:13:28 +02:00
|
|
|
(V) when is_tuple(V); is_list(V) -> list_to_binary(hd(io_lib:format("~w", [V])));
|
|
|
|
(V) -> V end, ValuesRaw),
|
2015-05-15 17:47:10 +02:00
|
|
|
lists:zip(Fields, Values).
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Get Room Affiliations
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%% @spec(Name::binary(), Service::binary()) ->
|
|
|
|
%% [{JID::string(), Domain::string(), Role::string(), Reason::string()}]
|
|
|
|
%% @doc Get the affiliations of the room Name@Service.
|
|
|
|
get_room_affiliations(Name, Service) ->
|
2017-01-13 10:03:39 +01:00
|
|
|
case mod_muc:find_online_room(Name, Service) of
|
|
|
|
{ok, Pid} ->
|
2015-04-07 16:30:34 +02:00
|
|
|
%% Get the PID of the online room, then request its state
|
2017-08-05 19:58:21 +02:00
|
|
|
{ok, StateData} = p1_fsm:sync_send_all_state_event(Pid, get_state),
|
2018-11-15 12:13:45 +01:00
|
|
|
Affiliations = maps:to_list(StateData#state.affiliations),
|
2015-04-07 16:30:34 +02:00
|
|
|
lists:map(
|
|
|
|
fun({{Uname, Domain, _Res}, {Aff, Reason}}) when is_atom(Aff)->
|
|
|
|
{Uname, Domain, Aff, Reason};
|
|
|
|
({{Uname, Domain, _Res}, Aff}) when is_atom(Aff)->
|
|
|
|
{Uname, Domain, Aff, <<>>}
|
|
|
|
end, Affiliations);
|
2017-01-13 10:03:39 +01:00
|
|
|
error ->
|
2015-04-07 16:30:34 +02:00
|
|
|
throw({error, "The room does not exist."})
|
|
|
|
end.
|
|
|
|
|
2018-02-25 10:28:14 +01:00
|
|
|
%%----------------------------
|
|
|
|
%% Get Room Affiliation
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%% @spec(Name::binary(), Service::binary(), JID::binary()) ->
|
|
|
|
%% {Affiliation::string()}
|
|
|
|
%% @doc Get affiliation of a user in the room Name@Service.
|
|
|
|
|
|
|
|
get_room_affiliation(Name, Service, JID) ->
|
|
|
|
case mod_muc:find_online_room(Name, Service) of
|
|
|
|
{ok, Pid} ->
|
|
|
|
%% Get the PID of the online room, then request its state
|
|
|
|
{ok, StateData} = p1_fsm:sync_send_all_state_event(Pid, get_state),
|
|
|
|
UserJID = jid:decode(JID),
|
2018-03-01 19:45:16 +01:00
|
|
|
mod_muc_room:get_affiliation(UserJID, StateData);
|
2018-02-25 10:28:14 +01:00
|
|
|
error ->
|
|
|
|
throw({error, "The room does not exist."})
|
|
|
|
end.
|
|
|
|
|
2015-04-07 16:30:34 +02:00
|
|
|
%%----------------------------
|
|
|
|
%% Change Room Affiliation
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
%% @spec(Name, Service, JID, AffiliationString) -> ok | {error, Error}
|
|
|
|
%% Name = binary()
|
|
|
|
%% Service = binary()
|
|
|
|
%% JID = binary()
|
|
|
|
%% AffiliationString = "outcast" | "none" | "member" | "admin" | "owner"
|
|
|
|
%% @doc Set the affiliation of JID in the room Name@Service.
|
|
|
|
%% If the affiliation is 'none', the action is to remove,
|
|
|
|
%% In any other case the action will be to create the affiliation.
|
|
|
|
set_room_affiliation(Name, Service, JID, AffiliationString) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
Affiliation = misc:binary_to_atom(AffiliationString),
|
2017-01-13 10:03:39 +01:00
|
|
|
case mod_muc:find_online_room(Name, Service) of
|
|
|
|
{ok, Pid} ->
|
2015-04-07 16:30:34 +02:00
|
|
|
%% Get the PID for the online room so we can get the state of the room
|
2017-08-05 19:58:21 +02:00
|
|
|
{ok, StateData} = p1_fsm:sync_send_all_state_event(Pid, {process_item_change, {jid:decode(JID), affiliation, Affiliation, <<"">>}, undefined}),
|
2015-04-27 17:00:22 +02:00
|
|
|
mod_muc:store_room(StateData#state.server_host, StateData#state.host, StateData#state.room, make_opts(StateData)),
|
2015-04-07 16:30:34 +02:00
|
|
|
ok;
|
2017-01-13 10:03:39 +01:00
|
|
|
error ->
|
2015-04-07 16:30:34 +02:00
|
|
|
error
|
|
|
|
end.
|
|
|
|
|
2016-08-09 12:36:43 +02:00
|
|
|
%%%
|
|
|
|
%%% MUC Subscription
|
|
|
|
%%%
|
|
|
|
|
|
|
|
subscribe_room(_User, Nick, _Room, _Nodes) when Nick == <<"">> ->
|
|
|
|
throw({error, "Nickname must be set"});
|
|
|
|
subscribe_room(User, Nick, Room, Nodes) ->
|
|
|
|
NodeList = re:split(Nodes, "\\h*,\\h*"),
|
2017-02-26 08:07:12 +01:00
|
|
|
try jid:decode(Room) of
|
2016-08-09 12:36:43 +02:00
|
|
|
#jid{luser = Name, lserver = Host} when Name /= <<"">> ->
|
2017-02-26 08:07:12 +01:00
|
|
|
try jid:decode(User) of
|
2016-08-11 16:13:20 +02:00
|
|
|
#jid{lresource = <<"">>} ->
|
|
|
|
throw({error, "User's JID should have a resource"});
|
|
|
|
UserJID ->
|
2016-08-09 12:36:43 +02:00
|
|
|
case get_room_pid(Name, Host) of
|
|
|
|
Pid when is_pid(Pid) ->
|
2017-08-05 19:58:21 +02:00
|
|
|
case p1_fsm:sync_send_all_state_event(
|
2016-08-09 12:36:43 +02:00
|
|
|
Pid,
|
|
|
|
{muc_subscribe, UserJID, Nick, NodeList}) of
|
|
|
|
{ok, SubscribedNodes} ->
|
|
|
|
SubscribedNodes;
|
|
|
|
{error, Reason} ->
|
|
|
|
throw({error, binary_to_list(Reason)})
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
throw({error, "The room does not exist"})
|
|
|
|
end
|
2017-02-26 08:07:12 +01:00
|
|
|
catch _:{bad_jid, _} ->
|
|
|
|
throw({error, "Malformed user JID"})
|
2016-08-09 12:36:43 +02:00
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
throw({error, "Malformed room JID"})
|
2017-02-26 08:07:12 +01:00
|
|
|
catch _:{bad_jid, _} ->
|
|
|
|
throw({error, "Malformed room JID"})
|
2016-08-09 12:36:43 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
unsubscribe_room(User, Room) ->
|
2017-02-26 08:07:12 +01:00
|
|
|
try jid:decode(Room) of
|
2016-08-09 12:36:43 +02:00
|
|
|
#jid{luser = Name, lserver = Host} when Name /= <<"">> ->
|
2017-02-26 08:07:12 +01:00
|
|
|
try jid:decode(User) of
|
2016-08-09 12:36:43 +02:00
|
|
|
UserJID ->
|
|
|
|
case get_room_pid(Name, Host) of
|
|
|
|
Pid when is_pid(Pid) ->
|
2017-08-05 19:58:21 +02:00
|
|
|
case p1_fsm:sync_send_all_state_event(
|
2016-08-09 12:36:43 +02:00
|
|
|
Pid,
|
|
|
|
{muc_unsubscribe, UserJID}) of
|
|
|
|
ok ->
|
|
|
|
ok;
|
|
|
|
{error, Reason} ->
|
|
|
|
throw({error, binary_to_list(Reason)})
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
throw({error, "The room does not exist"})
|
|
|
|
end
|
2017-02-26 08:07:12 +01:00
|
|
|
catch _:{bad_jid, _} ->
|
|
|
|
throw({error, "Malformed user JID"})
|
2016-08-09 12:36:43 +02:00
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
throw({error, "Malformed room JID"})
|
2017-02-26 08:07:12 +01:00
|
|
|
catch _:{bad_jid, _} ->
|
|
|
|
throw({error, "Malformed room JID"})
|
2016-08-09 12:36:43 +02:00
|
|
|
end.
|
|
|
|
|
2016-09-06 16:55:18 +02:00
|
|
|
get_subscribers(Name, Host) ->
|
|
|
|
case get_room_pid(Name, Host) of
|
|
|
|
Pid when is_pid(Pid) ->
|
2017-08-05 19:58:21 +02:00
|
|
|
{ok, JIDList} = p1_fsm:sync_send_all_state_event(Pid, get_subscribers),
|
2017-02-26 08:07:12 +01:00
|
|
|
[jid:encode(jid:remove_resource(J)) || J <- JIDList];
|
2016-09-06 16:55:18 +02:00
|
|
|
_ ->
|
|
|
|
throw({error, "The room does not exist"})
|
|
|
|
end.
|
|
|
|
|
2016-12-09 13:07:48 +01:00
|
|
|
%% Copied from mod_muc_room.erl
|
|
|
|
get_config_opt_name(Pos) ->
|
|
|
|
Fs = [config|record_info(fields, config)],
|
|
|
|
lists:nth(Pos, Fs).
|
|
|
|
-define(MAKE_CONFIG_OPT(Opt),
|
|
|
|
{get_config_opt_name(Opt), element(Opt, Config)}).
|
2015-04-07 16:30:34 +02:00
|
|
|
make_opts(StateData) ->
|
|
|
|
Config = StateData#state.config,
|
2018-11-15 12:13:45 +01:00
|
|
|
Subscribers = maps:fold(
|
2016-12-09 13:07:48 +01:00
|
|
|
fun(_LJID, Sub, Acc) ->
|
|
|
|
[{Sub#subscriber.jid,
|
|
|
|
Sub#subscriber.nick,
|
|
|
|
Sub#subscriber.nodes}|Acc]
|
|
|
|
end, [], StateData#state.subscribers),
|
|
|
|
[?MAKE_CONFIG_OPT(#config.title), ?MAKE_CONFIG_OPT(#config.description),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_change_subj),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_query_users),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_private_messages),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_private_messages_from_visitors),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_visitor_status),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_visitor_nickchange),
|
|
|
|
?MAKE_CONFIG_OPT(#config.public), ?MAKE_CONFIG_OPT(#config.public_list),
|
|
|
|
?MAKE_CONFIG_OPT(#config.persistent),
|
|
|
|
?MAKE_CONFIG_OPT(#config.moderated),
|
|
|
|
?MAKE_CONFIG_OPT(#config.members_by_default),
|
|
|
|
?MAKE_CONFIG_OPT(#config.members_only),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_user_invites),
|
|
|
|
?MAKE_CONFIG_OPT(#config.password_protected),
|
|
|
|
?MAKE_CONFIG_OPT(#config.captcha_protected),
|
|
|
|
?MAKE_CONFIG_OPT(#config.password), ?MAKE_CONFIG_OPT(#config.anonymous),
|
|
|
|
?MAKE_CONFIG_OPT(#config.logging), ?MAKE_CONFIG_OPT(#config.max_users),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_voice_requests),
|
|
|
|
?MAKE_CONFIG_OPT(#config.allow_subscription),
|
|
|
|
?MAKE_CONFIG_OPT(#config.mam),
|
|
|
|
?MAKE_CONFIG_OPT(#config.presence_broadcast),
|
|
|
|
?MAKE_CONFIG_OPT(#config.voice_request_min_interval),
|
|
|
|
?MAKE_CONFIG_OPT(#config.vcard),
|
|
|
|
{captcha_whitelist,
|
|
|
|
(?SETS):to_list((StateData#state.config)#config.captcha_whitelist)},
|
|
|
|
{affiliations,
|
2018-11-15 12:13:45 +01:00
|
|
|
maps:to_list(StateData#state.affiliations)},
|
2015-04-07 16:30:34 +02:00
|
|
|
{subject, StateData#state.subject},
|
2016-12-09 13:07:48 +01:00
|
|
|
{subject_author, StateData#state.subject_author},
|
|
|
|
{subscribers, Subscribers}].
|
2015-04-07 16:30:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
%%----------------------------
|
|
|
|
%% Utils
|
|
|
|
%%----------------------------
|
|
|
|
|
|
|
|
uptime_seconds() ->
|
|
|
|
trunc(element(1, erlang:statistics(wall_clock))/1000).
|
|
|
|
|
|
|
|
find_host(global) ->
|
|
|
|
global;
|
|
|
|
find_host("global") ->
|
|
|
|
global;
|
|
|
|
find_host(<<"global">>) ->
|
|
|
|
global;
|
|
|
|
find_host(ServerHost) when is_list(ServerHost) ->
|
|
|
|
find_host(list_to_binary(ServerHost));
|
|
|
|
find_host(ServerHost) ->
|
|
|
|
gen_mod:get_module_opt_host(ServerHost, mod_muc, <<"conference.@HOST@">>).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2017-01-13 10:03:39 +01:00
|
|
|
find_hosts(Global) when Global == global;
|
|
|
|
Global == "global";
|
|
|
|
Global == <<"global">> ->
|
|
|
|
lists:flatmap(
|
|
|
|
fun(ServerHost) ->
|
|
|
|
case gen_mod:is_loaded(ServerHost, mod_muc) of
|
|
|
|
true ->
|
2017-12-21 17:00:43 +01:00
|
|
|
[find_host(ServerHost)];
|
2017-01-13 10:03:39 +01:00
|
|
|
false ->
|
|
|
|
[]
|
|
|
|
end
|
2018-06-14 13:00:47 +02:00
|
|
|
end, ejabberd_config:get_myhosts());
|
2017-01-13 10:03:39 +01:00
|
|
|
find_hosts(ServerHost) when is_list(ServerHost) ->
|
|
|
|
find_hosts(list_to_binary(ServerHost));
|
|
|
|
find_hosts(ServerHost) ->
|
|
|
|
case gen_mod:is_loaded(ServerHost, mod_muc) of
|
|
|
|
true ->
|
2017-12-21 17:00:43 +01:00
|
|
|
[find_host(ServerHost)];
|
2017-01-13 10:03:39 +01:00
|
|
|
false ->
|
|
|
|
[]
|
|
|
|
end.
|
|
|
|
|
2018-01-23 08:54:52 +01:00
|
|
|
mod_options(_) -> [].
|