2005-04-17 20:08:34 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_shared_roster.erl
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2005-04-17 20:08:34 +02:00
|
|
|
%%% Purpose : Shared roster management
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Created : 5 Mar 2005 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2007-12-24 13:58:05 +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
|
|
|
%%%
|
2014-02-22 11:27:40 +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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 13:58:05 +01:00
|
|
|
%%%
|
2005-04-17 20:08:34 +02:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_shared_roster).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2007-12-24 13:58:05 +01:00
|
|
|
-author('alexey@process-one.net').
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
2017-02-22 17:46:47 +01:00
|
|
|
-export([start/2, stop/1, reload/3, export/1,
|
2016-11-22 14:48:01 +01:00
|
|
|
import_info/0, webadmin_menu/3, webadmin_page/3,
|
2017-05-17 13:47:35 +02:00
|
|
|
get_user_roster/2,
|
2016-11-22 14:48:01 +01:00
|
|
|
get_jid_info/4, import/5, process_item/2, import_start/2,
|
2017-01-09 15:02:17 +01:00
|
|
|
in_subscription/6, out_subscription/4, c2s_self_presence/1,
|
2015-06-01 14:38:27 +02:00
|
|
|
unset_presence/4, register_user/2, remove_user/2,
|
|
|
|
list_groups/1, create_group/2, create_group/3,
|
|
|
|
delete_group/2, get_group_opts/2, set_group_opts/3,
|
|
|
|
get_group_users/2, get_group_explicit_users/2,
|
2016-04-14 10:45:43 +02:00
|
|
|
is_user_in_group/3, add_user_to_group/3, opts_to_binary/1,
|
2016-07-06 13:58:48 +02:00
|
|
|
remove_user_from_group/3, mod_opt_type/1, depends/2]).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2016-07-30 07:37:34 +02:00
|
|
|
-include("xmpp.hrl").
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
-include("mod_roster.hrl").
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("ejabberd_http.hrl").
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("ejabberd_web_admin.hrl").
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2016-04-14 10:45:43 +02:00
|
|
|
-include("mod_shared_roster.hrl").
|
|
|
|
|
|
|
|
-type group_options() :: [{atom(), any()}].
|
|
|
|
-callback init(binary(), gen_mod:opts()) -> any().
|
2016-11-22 14:48:01 +01:00
|
|
|
-callback import(binary(), binary(), [binary()]) -> ok.
|
2016-04-14 10:45:43 +02:00
|
|
|
-callback list_groups(binary()) -> [binary()].
|
|
|
|
-callback groups_with_opts(binary()) -> [{binary(), group_options()}].
|
|
|
|
-callback create_group(binary(), binary(), group_options()) -> {atomic, any()}.
|
|
|
|
-callback delete_group(binary(), binary()) -> {atomic, any()}.
|
|
|
|
-callback get_group_opts(binary(), binary()) -> group_options() | error.
|
|
|
|
-callback set_group_opts(binary(), binary(), group_options()) -> {atomic, any()}.
|
|
|
|
-callback get_user_groups({binary(), binary()}, binary()) -> [binary()].
|
|
|
|
-callback get_group_explicit_users(binary(), binary()) -> [{binary(), binary()}].
|
|
|
|
-callback get_user_displayed_groups(binary(), binary(), group_options()) ->
|
|
|
|
[{binary(), group_options()}].
|
|
|
|
-callback is_user_in_group({binary(), binary()}, binary(), binary()) -> boolean().
|
2017-02-18 07:36:27 +01:00
|
|
|
-callback add_user_to_group(binary(), {binary(), binary()}, binary()) -> any().
|
2016-04-14 10:45:43 +02:00
|
|
|
-callback remove_user_from_group(binary(), {binary(), binary()}, binary()) -> {atomic, any()}.
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
start(Host, Opts) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, Opts, ?MODULE),
|
|
|
|
Mod:init(Host, Opts),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:add(webadmin_menu_host, Host, ?MODULE,
|
|
|
|
webadmin_menu, 70),
|
|
|
|
ejabberd_hooks:add(webadmin_page_host, Host, ?MODULE,
|
|
|
|
webadmin_page, 50),
|
|
|
|
ejabberd_hooks:add(roster_get, Host, ?MODULE,
|
|
|
|
get_user_roster, 70),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(roster_in_subscription, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
?MODULE, in_subscription, 30),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(roster_out_subscription, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
?MODULE, out_subscription, 30),
|
|
|
|
ejabberd_hooks:add(roster_get_jid_info, Host, ?MODULE,
|
|
|
|
get_jid_info, 70),
|
|
|
|
ejabberd_hooks:add(roster_process_item, Host, ?MODULE,
|
|
|
|
process_item, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:add(c2s_self_presence, Host, ?MODULE,
|
|
|
|
c2s_self_presence, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:add(unset_presence_hook, Host, ?MODULE,
|
|
|
|
unset_presence, 50),
|
|
|
|
ejabberd_hooks:add(register_user, Host, ?MODULE,
|
|
|
|
register_user, 50),
|
|
|
|
ejabberd_hooks:add(remove_user, Host, ?MODULE,
|
|
|
|
remove_user, 50).
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
stop(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:delete(webadmin_menu_host, Host, ?MODULE,
|
|
|
|
webadmin_menu, 70),
|
|
|
|
ejabberd_hooks:delete(webadmin_page_host, Host, ?MODULE,
|
|
|
|
webadmin_page, 50),
|
|
|
|
ejabberd_hooks:delete(roster_get, Host, ?MODULE,
|
|
|
|
get_user_roster, 70),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(roster_in_subscription, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
?MODULE, in_subscription, 30),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(roster_out_subscription, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
?MODULE, out_subscription, 30),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(roster_get_jid_info, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
?MODULE, get_jid_info, 70),
|
2006-07-06 16:08:09 +02:00
|
|
|
ejabberd_hooks:delete(roster_process_item, Host,
|
2008-04-26 19:37:43 +02:00
|
|
|
?MODULE, process_item, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:delete(c2s_self_presence, Host,
|
|
|
|
?MODULE, c2s_self_presence, 50),
|
2011-02-21 22:33:23 +01:00
|
|
|
ejabberd_hooks:delete(unset_presence_hook, Host,
|
|
|
|
?MODULE, unset_presence, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:delete(register_user, Host, ?MODULE,
|
|
|
|
register_user, 50),
|
|
|
|
ejabberd_hooks:delete(remove_user, Host, ?MODULE,
|
|
|
|
remove_user,
|
2015-10-07 00:06:58 +02:00
|
|
|
50).
|
2017-02-22 17:46:47 +01:00
|
|
|
|
|
|
|
reload(Host, NewOpts, OldOpts) ->
|
|
|
|
NewMod = gen_mod:db_mod(Host, NewOpts, ?MODULE),
|
|
|
|
OldMod = gen_mod:db_mod(Host, OldOpts, ?MODULE),
|
|
|
|
if NewMod /= OldMod ->
|
|
|
|
NewMod:init(Host, NewOpts);
|
|
|
|
true ->
|
|
|
|
ok
|
|
|
|
end,
|
|
|
|
ok.
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[].
|
|
|
|
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec get_user_roster([#roster{}], {binary(), binary()}) -> [#roster{}].
|
2005-04-17 20:08:34 +02:00
|
|
|
get_user_roster(Items, US) ->
|
|
|
|
{U, S} = US,
|
|
|
|
DisplayedGroups = get_user_displayed_groups(US),
|
2013-03-14 10:33:02 +01:00
|
|
|
SRUsers = lists:foldl(fun (Group, Acc1) ->
|
|
|
|
GroupName = get_group_name(S, Group),
|
|
|
|
lists:foldl(fun (User, Acc2) ->
|
|
|
|
if User == US -> Acc2;
|
|
|
|
true ->
|
|
|
|
dict:append(User,
|
|
|
|
GroupName,
|
|
|
|
Acc2)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Acc1, get_group_users(S, Group))
|
|
|
|
end,
|
|
|
|
dict:new(), DisplayedGroups),
|
|
|
|
{NewItems1, SRUsersRest} = lists:mapfoldl(fun (Item,
|
|
|
|
SRUsers1) ->
|
|
|
|
{_, _, {U1, S1, _}} =
|
|
|
|
Item#roster.usj,
|
|
|
|
US1 = {U1, S1},
|
|
|
|
case dict:find(US1,
|
|
|
|
SRUsers1)
|
|
|
|
of
|
2017-03-09 19:21:45 +01:00
|
|
|
{ok, GroupNames} ->
|
2013-03-14 10:33:02 +01:00
|
|
|
{Item#roster{subscription
|
|
|
|
=
|
|
|
|
both,
|
2017-03-09 19:21:45 +01:00
|
|
|
groups =
|
|
|
|
Item#roster.groups ++ GroupNames,
|
2013-03-14 10:33:02 +01:00
|
|
|
ask =
|
|
|
|
none},
|
|
|
|
dict:erase(US1,
|
|
|
|
SRUsers1)};
|
|
|
|
error ->
|
|
|
|
{Item, SRUsers1}
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
SRUsers, Items),
|
|
|
|
SRItems = [#roster{usj = {U, S, {U1, S1, <<"">>}},
|
|
|
|
us = US, jid = {U1, S1, <<"">>},
|
2016-07-30 07:37:34 +02:00
|
|
|
name = get_rosteritem_name(U1, S1),
|
2013-03-14 10:33:02 +01:00
|
|
|
subscription = both, ask = none, groups = GroupNames}
|
|
|
|
|| {{U1, S1}, GroupNames} <- dict:to_list(SRUsersRest)],
|
2005-04-17 20:08:34 +02:00
|
|
|
SRItems ++ NewItems1.
|
|
|
|
|
2016-07-30 07:37:34 +02:00
|
|
|
get_rosteritem_name(U, S) ->
|
|
|
|
case gen_mod:is_loaded(S, mod_vcard) of
|
2013-11-13 11:40:56 +01:00
|
|
|
true ->
|
2016-07-30 07:37:34 +02:00
|
|
|
SubEls = mod_vcard:get_vcard(U, S),
|
|
|
|
get_rosteritem_name_vcard(SubEls);
|
2013-11-13 11:40:56 +01:00
|
|
|
false ->
|
|
|
|
<<"">>
|
2010-02-02 19:47:22 +01:00
|
|
|
end.
|
|
|
|
|
2016-07-30 07:37:34 +02:00
|
|
|
-spec get_rosteritem_name_vcard([xmlel()]) -> binary().
|
|
|
|
get_rosteritem_name_vcard([Vcard|_]) ->
|
2016-02-03 19:03:17 +01:00
|
|
|
case fxml:get_path_s(Vcard,
|
2013-03-14 10:33:02 +01:00
|
|
|
[{elem, <<"NICKNAME">>}, cdata])
|
|
|
|
of
|
|
|
|
<<"">> ->
|
2016-02-03 19:03:17 +01:00
|
|
|
fxml:get_path_s(Vcard, [{elem, <<"FN">>}, cdata]);
|
2013-03-14 10:33:02 +01:00
|
|
|
Nickname -> Nickname
|
2016-07-30 07:37:34 +02:00
|
|
|
end;
|
|
|
|
get_rosteritem_name_vcard(_) ->
|
|
|
|
<<"">>.
|
2010-02-02 19:47:22 +01:00
|
|
|
|
2008-07-09 21:06:44 +02:00
|
|
|
%% This function rewrites the roster entries when moving or renaming
|
2006-07-06 16:08:09 +02:00
|
|
|
%% them in the user contact list.
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec process_item(#roster{}, binary()) -> #roster{}.
|
2006-07-06 16:08:09 +02:00
|
|
|
process_item(RosterItem, Host) ->
|
2008-07-09 21:06:44 +02:00
|
|
|
USFrom = {UserFrom, ServerFrom} = RosterItem#roster.us,
|
|
|
|
{UserTo, ServerTo, ResourceTo} = RosterItem#roster.jid,
|
2008-10-01 16:52:25 +02:00
|
|
|
NameTo = RosterItem#roster.name,
|
2008-07-09 21:06:44 +02:00
|
|
|
USTo = {UserTo, ServerTo},
|
2006-07-06 16:08:09 +02:00
|
|
|
DisplayedGroups = get_user_displayed_groups(USFrom),
|
2013-03-14 10:33:02 +01:00
|
|
|
CommonGroups = lists:filter(fun (Group) ->
|
2006-07-06 16:08:09 +02:00
|
|
|
is_user_in_group(USTo, Group, Host)
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
|
|
|
DisplayedGroups),
|
2006-07-06 16:08:09 +02:00
|
|
|
case CommonGroups of
|
2013-03-14 10:33:02 +01:00
|
|
|
[] -> RosterItem;
|
|
|
|
%% Roster item cannot be removed: We simply reset the original groups:
|
|
|
|
_ when RosterItem#roster.subscription == remove ->
|
|
|
|
GroupNames = lists:map(fun (Group) ->
|
|
|
|
get_group_name(Host, Group)
|
|
|
|
end,
|
|
|
|
CommonGroups),
|
|
|
|
RosterItem#roster{subscription = both, ask = none,
|
|
|
|
groups = GroupNames};
|
|
|
|
%% Both users have at least a common shared group,
|
|
|
|
%% So each user can see the other
|
|
|
|
_ ->
|
|
|
|
case lists:subtract(RosterItem#roster.groups,
|
|
|
|
CommonGroups)
|
|
|
|
of
|
|
|
|
%% If it doesn't, then remove this user from any
|
|
|
|
%% existing roster groups.
|
|
|
|
[] ->
|
|
|
|
mod_roster:out_subscription(UserTo, ServerTo,
|
2017-02-25 08:01:01 +01:00
|
|
|
jid:make(UserFrom, ServerFrom),
|
2013-03-14 10:33:02 +01:00
|
|
|
unsubscribe),
|
2017-02-18 07:36:27 +01:00
|
|
|
mod_roster:in_subscription(false, UserFrom, ServerFrom,
|
2017-02-25 08:01:01 +01:00
|
|
|
jid:make(UserTo, ServerTo),
|
2013-03-14 10:33:02 +01:00
|
|
|
unsubscribe, <<"">>),
|
|
|
|
RosterItem#roster{subscription = both, ask = none};
|
|
|
|
%% If so, it means the user wants to add that contact
|
|
|
|
%% to his personal roster
|
|
|
|
PersonalGroups ->
|
|
|
|
set_new_rosteritems(UserFrom, ServerFrom, UserTo,
|
|
|
|
ServerTo, ResourceTo, NameTo,
|
|
|
|
PersonalGroups)
|
|
|
|
end
|
2006-07-06 16:08:09 +02:00
|
|
|
end.
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
build_roster_record(User1, Server1, User2, Server2,
|
|
|
|
Name2, Groups) ->
|
|
|
|
USR2 = {User2, Server2, <<"">>},
|
2008-07-09 21:06:44 +02:00
|
|
|
#roster{usj = {User1, Server1, USR2},
|
2013-03-14 10:33:02 +01:00
|
|
|
us = {User1, Server1}, jid = USR2, name = Name2,
|
|
|
|
subscription = both, ask = none, groups = Groups}.
|
|
|
|
|
|
|
|
set_new_rosteritems(UserFrom, ServerFrom, UserTo,
|
|
|
|
ServerTo, ResourceTo, NameTo, GroupsFrom) ->
|
2008-07-09 21:06:44 +02:00
|
|
|
RIFrom = build_roster_record(UserFrom, ServerFrom,
|
2008-10-01 16:52:25 +02:00
|
|
|
UserTo, ServerTo, NameTo, GroupsFrom),
|
2008-07-09 21:06:44 +02:00
|
|
|
set_item(UserFrom, ServerFrom, ResourceTo, RIFrom),
|
2017-02-25 08:01:01 +01:00
|
|
|
JIDTo = jid:make(UserTo, ServerTo),
|
|
|
|
JIDFrom = jid:make(UserFrom, ServerFrom),
|
2013-03-14 10:33:02 +01:00
|
|
|
RITo = build_roster_record(UserTo, ServerTo, UserFrom,
|
|
|
|
ServerFrom, UserFrom, []),
|
|
|
|
set_item(UserTo, ServerTo, <<"">>, RITo),
|
|
|
|
mod_roster:out_subscription(UserFrom, ServerFrom, JIDTo,
|
|
|
|
subscribe),
|
2017-02-18 07:36:27 +01:00
|
|
|
mod_roster:in_subscription(false, UserTo, ServerTo,
|
2013-03-14 10:33:02 +01:00
|
|
|
JIDFrom, subscribe, <<"">>),
|
|
|
|
mod_roster:out_subscription(UserTo, ServerTo, JIDFrom,
|
|
|
|
subscribed),
|
2017-02-18 07:36:27 +01:00
|
|
|
mod_roster:in_subscription(false, UserFrom, ServerFrom,
|
2013-03-14 10:33:02 +01:00
|
|
|
JIDTo, subscribed, <<"">>),
|
|
|
|
mod_roster:out_subscription(UserTo, ServerTo, JIDFrom,
|
|
|
|
subscribe),
|
2017-02-18 07:36:27 +01:00
|
|
|
mod_roster:in_subscription(false, UserFrom, ServerFrom,
|
2013-03-14 10:33:02 +01:00
|
|
|
JIDTo, subscribe, <<"">>),
|
|
|
|
mod_roster:out_subscription(UserFrom, ServerFrom, JIDTo,
|
|
|
|
subscribed),
|
2017-02-18 07:36:27 +01:00
|
|
|
mod_roster:in_subscription(false, UserTo, ServerTo,
|
2013-03-14 10:33:02 +01:00
|
|
|
JIDFrom, subscribed, <<"">>),
|
2008-07-09 21:06:44 +02:00
|
|
|
RIFrom.
|
|
|
|
|
|
|
|
set_item(User, Server, Resource, Item) ->
|
2017-02-16 09:00:26 +01:00
|
|
|
ResIQ = #iq{from = jid:make(User, Server, Resource),
|
|
|
|
to = jid:make(Server),
|
|
|
|
type = set, id = <<"push", (randoms:get_string())/binary>>,
|
2016-07-30 07:37:34 +02:00
|
|
|
sub_els = [#roster_query{
|
|
|
|
items = [mod_roster:encode_item(Item)]}]},
|
2017-02-16 09:00:26 +01:00
|
|
|
ejabberd_router:route(ResIQ).
|
2008-07-09 21:06:44 +02:00
|
|
|
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec get_jid_info({subscription(), [binary()]}, binary(), binary(), jid())
|
|
|
|
-> {subscription(), [binary()]}.
|
2013-03-14 10:33:02 +01:00
|
|
|
get_jid_info({Subscription, Groups}, User, Server,
|
|
|
|
JID) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2005-04-17 20:08:34 +02:00
|
|
|
US = {LUser, LServer},
|
2015-11-24 16:44:13 +01:00
|
|
|
{U1, S1, _} = jid:tolower(JID),
|
2005-04-17 20:08:34 +02:00
|
|
|
US1 = {U1, S1},
|
|
|
|
DisplayedGroups = get_user_displayed_groups(US),
|
2013-03-14 10:33:02 +01:00
|
|
|
SRUsers = lists:foldl(fun (Group, Acc1) ->
|
|
|
|
lists:foldl(fun (User1, Acc2) ->
|
|
|
|
dict:append(User1,
|
|
|
|
get_group_name(LServer,
|
|
|
|
Group),
|
|
|
|
Acc2)
|
|
|
|
end,
|
|
|
|
Acc1,
|
|
|
|
get_group_users(LServer, Group))
|
|
|
|
end,
|
|
|
|
dict:new(), DisplayedGroups),
|
2005-04-17 20:08:34 +02:00
|
|
|
case dict:find(US1, SRUsers) of
|
2013-03-14 10:33:02 +01:00
|
|
|
{ok, GroupNames} ->
|
|
|
|
NewGroups = if Groups == [] -> GroupNames;
|
|
|
|
true -> Groups
|
|
|
|
end,
|
|
|
|
{both, NewGroups};
|
|
|
|
error -> {Subscription, Groups}
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
|
|
|
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec in_subscription(boolean(), binary(), binary(), jid(),
|
|
|
|
subscribe | subscribed | unsubscribe | unsubscribed,
|
|
|
|
binary()) -> boolean().
|
2013-03-14 10:33:02 +01:00
|
|
|
in_subscription(Acc, User, Server, JID, Type,
|
|
|
|
_Reason) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
process_subscription(in, User, Server, JID, Type, Acc).
|
|
|
|
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec out_subscription(
|
|
|
|
binary(), binary(), jid(),
|
|
|
|
subscribed | unsubscribed | subscribe | unsubscribe) -> boolean().
|
2013-03-14 10:33:02 +01:00
|
|
|
out_subscription(UserFrom, ServerFrom, JIDTo,
|
|
|
|
unsubscribed) ->
|
2009-02-14 00:01:41 +01:00
|
|
|
#jid{luser = UserTo, lserver = ServerTo} = JIDTo,
|
2017-02-25 08:01:01 +01:00
|
|
|
JIDFrom = jid:make(UserFrom, ServerFrom),
|
2013-03-14 10:33:02 +01:00
|
|
|
mod_roster:out_subscription(UserTo, ServerTo, JIDFrom,
|
|
|
|
unsubscribe),
|
2017-02-18 07:36:27 +01:00
|
|
|
mod_roster:in_subscription(false, UserFrom, ServerFrom,
|
2013-03-14 10:33:02 +01:00
|
|
|
JIDTo, unsubscribe, <<"">>),
|
|
|
|
process_subscription(out, UserFrom, ServerFrom, JIDTo,
|
|
|
|
unsubscribed, false);
|
2005-04-17 20:08:34 +02:00
|
|
|
out_subscription(User, Server, JID, Type) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
process_subscription(out, User, Server, JID, Type,
|
|
|
|
false).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
process_subscription(Direction, User, Server, JID,
|
|
|
|
_Type, Acc) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2005-04-17 20:08:34 +02:00
|
|
|
US = {LUser, LServer},
|
2013-03-14 10:33:02 +01:00
|
|
|
{U1, S1, _} =
|
2015-11-24 16:44:13 +01:00
|
|
|
jid:tolower(jid:remove_resource(JID)),
|
2005-04-17 20:08:34 +02:00
|
|
|
US1 = {U1, S1},
|
|
|
|
DisplayedGroups = get_user_displayed_groups(US),
|
2013-03-14 10:33:02 +01:00
|
|
|
SRUsers = lists:usort(lists:flatmap(fun (Group) ->
|
|
|
|
get_group_users(LServer, Group)
|
|
|
|
end,
|
|
|
|
DisplayedGroups)),
|
2005-04-17 20:08:34 +02:00
|
|
|
case lists:member(US1, SRUsers) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true ->
|
|
|
|
case Direction of
|
|
|
|
in -> {stop, false};
|
|
|
|
out -> stop
|
|
|
|
end;
|
|
|
|
false -> Acc
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
list_groups(Host) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:list_groups(Host).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2008-04-26 19:37:43 +02:00
|
|
|
groups_with_opts(Host) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:groups_with_opts(Host).
|
2008-04-26 19:37:43 +02:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
create_group(Host, Group) ->
|
|
|
|
create_group(Host, Group, []).
|
|
|
|
|
|
|
|
create_group(Host, Group, Opts) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:create_group(Host, Group, Opts).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
delete_group(Host, Group) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:delete_group(Host, Group).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
get_group_opts(Host, Group) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:get_group_opts(Host, Group).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
set_group_opts(Host, Group, Opts) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:set_group_opts(Host, Group, Opts).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
|
|
|
get_user_groups(US) ->
|
|
|
|
Host = element(2, US),
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:get_user_groups(US, Host) ++ get_special_users_groups(Host).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2011-07-27 10:20:22 +02:00
|
|
|
is_group_enabled(Host1, Group1) ->
|
|
|
|
{Host, Group} = split_grouphost(Host1, Group1),
|
2012-04-27 11:52:05 +02:00
|
|
|
case get_group_opts(Host, Group) of
|
2013-03-14 10:33:02 +01:00
|
|
|
error -> false;
|
|
|
|
Opts -> not lists:member(disabled, Opts)
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
|
|
|
|
2009-12-21 15:35:09 +01:00
|
|
|
%% @spec (Host::string(), Group::string(), Opt::atom(), Default) -> OptValue | Default
|
2005-04-17 20:08:34 +02:00
|
|
|
get_group_opt(Host, Group, Opt, Default) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
case get_group_opts(Host, Group) of
|
2013-03-14 10:33:02 +01:00
|
|
|
error -> Default;
|
|
|
|
Opts ->
|
|
|
|
case lists:keysearch(Opt, 1, Opts) of
|
|
|
|
{value, {_, Val}} -> Val;
|
|
|
|
false -> Default
|
|
|
|
end
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
|
|
|
|
2011-02-21 22:33:23 +01:00
|
|
|
get_online_users(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:usort([{U, S}
|
|
|
|
|| {U, S, _} <- ejabberd_sm:get_vh_session_list(Host)]).
|
2011-02-21 22:33:23 +01:00
|
|
|
|
2011-07-27 10:20:22 +02:00
|
|
|
get_group_users(Host1, Group1) ->
|
|
|
|
{Host, Group} = split_grouphost(Host1, Group1),
|
2005-09-29 03:04:24 +02:00
|
|
|
case get_group_opt(Host, Group, all_users, false) of
|
2017-05-11 13:37:21 +02:00
|
|
|
true -> ejabberd_auth:get_users(Host);
|
2013-03-14 10:33:02 +01:00
|
|
|
false -> []
|
|
|
|
end
|
|
|
|
++
|
|
|
|
case get_group_opt(Host, Group, online_users, false) of
|
|
|
|
true -> get_online_users(Host);
|
|
|
|
false -> []
|
|
|
|
end
|
|
|
|
++ get_group_explicit_users(Host, Group).
|
2005-09-29 03:04:24 +02:00
|
|
|
|
2011-02-21 22:33:23 +01:00
|
|
|
get_group_users(Host, Group, GroupOpts) ->
|
2008-04-26 19:37:43 +02:00
|
|
|
case proplists:get_value(all_users, GroupOpts, false) of
|
2017-05-11 13:37:21 +02:00
|
|
|
true -> ejabberd_auth:get_users(Host);
|
2013-03-14 10:33:02 +01:00
|
|
|
false -> []
|
|
|
|
end
|
|
|
|
++
|
|
|
|
case proplists:get_value(online_users, GroupOpts, false)
|
|
|
|
of
|
|
|
|
true -> get_online_users(Host);
|
|
|
|
false -> []
|
|
|
|
end
|
|
|
|
++ get_group_explicit_users(Host, Group).
|
|
|
|
|
2005-09-29 03:04:24 +02:00
|
|
|
get_group_explicit_users(Host, Group) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:get_group_explicit_users(Host, Group).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2011-07-27 10:20:22 +02:00
|
|
|
get_group_name(Host1, Group1) ->
|
|
|
|
{Host, Group} = split_grouphost(Host1, Group1),
|
2005-04-17 20:08:34 +02:00
|
|
|
get_group_opt(Host, Group, name, Group).
|
|
|
|
|
2011-02-21 22:33:23 +01:00
|
|
|
%% Get list of names of groups that have @all@/@online@/etc in the memberlist
|
2008-04-26 19:37:43 +02:00
|
|
|
get_special_users_groups(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:filter(fun (Group) ->
|
|
|
|
get_group_opt(Host, Group, all_users, false) orelse
|
|
|
|
get_group_opt(Host, Group, online_users, false)
|
|
|
|
end,
|
|
|
|
list_groups(Host)).
|
2005-09-29 03:04:24 +02:00
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
%% Get list of names of groups that have @online@ in the memberlist
|
2013-03-14 10:33:02 +01:00
|
|
|
get_special_users_groups_online(Host) ->
|
|
|
|
lists:filter(fun (Group) ->
|
|
|
|
get_group_opt(Host, Group, online_users, false)
|
|
|
|
end,
|
|
|
|
list_groups(Host)).
|
2008-04-26 19:37:43 +02:00
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
%% Given two lists of groupnames and their options,
|
|
|
|
%% return the list of displayed groups to the second list
|
2013-03-14 10:33:02 +01:00
|
|
|
displayed_groups(GroupsOpts, SelectedGroupsOpts) ->
|
|
|
|
DisplayedGroups = lists:usort(lists:flatmap(fun
|
|
|
|
({_Group, Opts}) ->
|
|
|
|
[G
|
|
|
|
|| G
|
|
|
|
<- proplists:get_value(displayed_groups,
|
|
|
|
Opts,
|
|
|
|
[]),
|
|
|
|
not
|
|
|
|
lists:member(disabled,
|
|
|
|
Opts)]
|
|
|
|
end,
|
|
|
|
SelectedGroupsOpts)),
|
|
|
|
[G
|
|
|
|
|| G <- DisplayedGroups,
|
|
|
|
not
|
|
|
|
lists:member(disabled,
|
|
|
|
proplists:get_value(G, GroupsOpts, []))].
|
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
%% Given a list of group names with options,
|
|
|
|
%% for those that have @all@ in memberlist,
|
|
|
|
%% get the list of groups displayed
|
2008-04-26 19:37:43 +02:00
|
|
|
get_special_displayed_groups(GroupsOpts) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
Groups = lists:filter(fun ({_Group, Opts}) ->
|
|
|
|
proplists:get_value(all_users, Opts, false)
|
|
|
|
end,
|
|
|
|
GroupsOpts),
|
2008-04-26 19:37:43 +02:00
|
|
|
displayed_groups(GroupsOpts, Groups).
|
|
|
|
|
2008-12-23 20:15:33 +01:00
|
|
|
%% Given a username and server, and a list of group names with options,
|
|
|
|
%% for the list of groups of that server that user is member
|
|
|
|
%% get the list of groups displayed
|
2008-04-26 19:37:43 +02:00
|
|
|
get_user_displayed_groups(LUser, LServer, GroupsOpts) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Groups = Mod:get_user_displayed_groups(LUser, LServer, GroupsOpts),
|
2008-04-26 19:37:43 +02:00
|
|
|
displayed_groups(GroupsOpts, Groups).
|
|
|
|
|
2008-12-23 20:15:33 +01:00
|
|
|
%% @doc Get the list of groups that are displayed to this user
|
2005-04-17 20:08:34 +02:00
|
|
|
get_user_displayed_groups(US) ->
|
|
|
|
Host = element(2, US),
|
2013-03-14 10:33:02 +01:00
|
|
|
DisplayedGroups1 = lists:usort(lists:flatmap(fun
|
|
|
|
(Group) ->
|
|
|
|
case
|
|
|
|
is_group_enabled(Host,
|
|
|
|
Group)
|
|
|
|
of
|
|
|
|
true ->
|
|
|
|
get_group_opt(Host,
|
|
|
|
Group,
|
|
|
|
displayed_groups,
|
|
|
|
[]);
|
|
|
|
false -> []
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
get_user_groups(US))),
|
|
|
|
[Group
|
|
|
|
|| Group <- DisplayedGroups1,
|
|
|
|
is_group_enabled(Host, Group)].
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2011-07-01 17:11:09 +02:00
|
|
|
is_user_in_group(US, Group, Host) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
case Mod:is_user_in_group(US, Group, Host) of
|
|
|
|
false ->
|
|
|
|
lists:member(US, get_group_users(Host, Group));
|
|
|
|
true ->
|
|
|
|
true
|
2006-07-06 16:08:09 +02:00
|
|
|
end.
|
|
|
|
|
2008-12-23 20:15:33 +01:00
|
|
|
%% @spec (Host::string(), {User::string(), Server::string()}, Group::string()) -> {atomic, ok}
|
2005-04-17 20:08:34 +02:00
|
|
|
add_user_to_group(Host, US, Group) ->
|
2008-12-23 20:15:33 +01:00
|
|
|
{LUser, LServer} = US,
|
2015-10-07 00:06:58 +02:00
|
|
|
case ejabberd_regexp:run(LUser, <<"^@.+@\$">>) of
|
2013-03-14 10:33:02 +01:00
|
|
|
match ->
|
2016-07-30 07:37:34 +02:00
|
|
|
GroupOpts = mod_shared_roster:get_group_opts(Host, Group),
|
2013-03-14 10:33:02 +01:00
|
|
|
MoreGroupOpts = case LUser of
|
|
|
|
<<"@all@">> -> [{all_users, true}];
|
|
|
|
<<"@online@">> -> [{online_users, true}];
|
|
|
|
_ -> []
|
|
|
|
end,
|
2016-07-30 07:37:34 +02:00
|
|
|
mod_shared_roster:set_group_opts(Host, Group,
|
2013-03-14 10:33:02 +01:00
|
|
|
GroupOpts ++ MoreGroupOpts);
|
|
|
|
nomatch ->
|
2015-01-07 13:11:53 +01:00
|
|
|
DisplayedToGroups = displayed_to_groups(Group, Host),
|
|
|
|
DisplayedGroups = get_displayed_groups(Group, LServer),
|
|
|
|
push_user_to_displayed(LUser, LServer, Group, Host, both, DisplayedToGroups),
|
|
|
|
push_displayed_to_user(LUser, LServer, Host, both, DisplayedGroups),
|
|
|
|
broadcast_user_to_displayed(LUser, LServer, Host, both, DisplayedToGroups),
|
|
|
|
broadcast_displayed_to_user(LUser, LServer, Host, both, DisplayedGroups),
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:add_user_to_group(Host, US, Group)
|
2009-04-22 12:40:11 +02:00
|
|
|
end.
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
get_displayed_groups(Group, LServer) ->
|
2008-12-23 20:15:33 +01:00
|
|
|
GroupsOpts = groups_with_opts(LServer),
|
|
|
|
GroupOpts = proplists:get_value(Group, GroupsOpts, []),
|
2015-01-07 13:11:53 +01:00
|
|
|
proplists:get_value(displayed_groups, GroupOpts, []).
|
|
|
|
|
|
|
|
broadcast_displayed_to_user(LUser, LServer, Host, Subscription, DisplayedGroups) ->
|
|
|
|
[broadcast_members_to_user(LUser, LServer, DGroup, Host,
|
|
|
|
Subscription)
|
|
|
|
|| DGroup <- DisplayedGroups].
|
|
|
|
|
|
|
|
push_displayed_to_user(LUser, LServer, Host, Subscription, DisplayedGroups) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
[push_members_to_user(LUser, LServer, DGroup, Host,
|
|
|
|
Subscription)
|
|
|
|
|| DGroup <- DisplayedGroups].
|
2008-12-23 20:15:33 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
remove_user_from_group(Host, US, Group) ->
|
2008-12-23 20:15:33 +01:00
|
|
|
{LUser, LServer} = US,
|
2015-10-07 00:06:58 +02:00
|
|
|
case ejabberd_regexp:run(LUser, <<"^@.+@\$">>) of
|
2013-03-14 10:33:02 +01:00
|
|
|
match ->
|
2016-07-30 07:37:34 +02:00
|
|
|
GroupOpts = mod_shared_roster:get_group_opts(Host, Group),
|
2013-03-14 10:33:02 +01:00
|
|
|
NewGroupOpts = case LUser of
|
|
|
|
<<"@all@">> ->
|
|
|
|
lists:filter(fun (X) -> X /= {all_users, true}
|
|
|
|
end,
|
|
|
|
GroupOpts);
|
|
|
|
<<"@online@">> ->
|
|
|
|
lists:filter(fun (X) -> X /= {online_users, true}
|
|
|
|
end,
|
|
|
|
GroupOpts)
|
|
|
|
end,
|
2016-07-30 07:37:34 +02:00
|
|
|
mod_shared_roster:set_group_opts(Host, Group, NewGroupOpts);
|
2013-03-14 10:33:02 +01:00
|
|
|
nomatch ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Result = Mod:remove_user_from_group(Host, US, Group),
|
2015-01-07 13:11:53 +01:00
|
|
|
DisplayedToGroups = displayed_to_groups(Group, Host),
|
|
|
|
DisplayedGroups = get_displayed_groups(Group, LServer),
|
|
|
|
push_user_to_displayed(LUser, LServer, Group, Host, remove, DisplayedToGroups),
|
|
|
|
push_displayed_to_user(LUser, LServer, Host, remove, DisplayedGroups),
|
2013-03-14 10:33:02 +01:00
|
|
|
Result
|
2009-04-22 12:40:11 +02:00
|
|
|
end.
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
push_members_to_user(LUser, LServer, Group, Host,
|
|
|
|
Subscription) ->
|
2008-12-23 20:15:33 +01:00
|
|
|
GroupsOpts = groups_with_opts(LServer),
|
|
|
|
GroupOpts = proplists:get_value(Group, GroupsOpts, []),
|
|
|
|
GroupName = proplists:get_value(name, GroupOpts, Group),
|
|
|
|
Members = get_group_users(Host, Group),
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:foreach(fun ({U, S}) ->
|
|
|
|
push_roster_item(LUser, LServer, U, S, GroupName,
|
|
|
|
Subscription)
|
|
|
|
end,
|
|
|
|
Members).
|
2008-12-23 20:15:33 +01:00
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
broadcast_members_to_user(LUser, LServer, Group, Host, Subscription) ->
|
|
|
|
Members = get_group_users(Host, Group),
|
|
|
|
lists:foreach(
|
|
|
|
fun({U, S}) ->
|
|
|
|
broadcast_subscription(U, S, {LUser, LServer, <<"">>}, Subscription)
|
|
|
|
end, Members).
|
|
|
|
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec register_user(binary(), binary()) -> ok.
|
2008-12-23 20:15:33 +01:00
|
|
|
register_user(User, Server) ->
|
|
|
|
Groups = get_user_groups({User, Server}),
|
2013-03-14 10:33:02 +01:00
|
|
|
[push_user_to_displayed(User, Server, Group, Server,
|
2015-01-07 13:11:53 +01:00
|
|
|
both, displayed_to_groups(Group, Server))
|
2016-08-09 09:56:32 +02:00
|
|
|
|| Group <- Groups],
|
|
|
|
ok.
|
2008-12-23 20:15:33 +01:00
|
|
|
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec remove_user(binary(), binary()) -> ok.
|
2008-12-23 20:15:33 +01:00
|
|
|
remove_user(User, Server) ->
|
|
|
|
push_user_to_members(User, Server, remove).
|
2007-08-23 02:51:54 +02:00
|
|
|
|
2008-12-23 20:15:33 +01:00
|
|
|
push_user_to_members(User, Server, Subscription) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2008-04-26 19:37:43 +02:00
|
|
|
GroupsOpts = groups_with_opts(LServer),
|
2013-03-14 10:33:02 +01:00
|
|
|
SpecialGroups =
|
|
|
|
get_special_displayed_groups(GroupsOpts),
|
|
|
|
UserGroups = get_user_displayed_groups(LUser, LServer,
|
|
|
|
GroupsOpts),
|
|
|
|
lists:foreach(fun (Group) ->
|
|
|
|
remove_user_from_group(LServer, {LUser, LServer},
|
|
|
|
Group),
|
|
|
|
GroupOpts = proplists:get_value(Group, GroupsOpts,
|
|
|
|
[]),
|
|
|
|
GroupName = proplists:get_value(name, GroupOpts,
|
|
|
|
Group),
|
|
|
|
lists:foreach(fun ({U, S}) ->
|
|
|
|
push_roster_item(U, S, LUser,
|
|
|
|
LServer,
|
|
|
|
GroupName,
|
|
|
|
Subscription)
|
|
|
|
end,
|
|
|
|
get_group_users(LServer, Group,
|
|
|
|
GroupOpts))
|
|
|
|
end,
|
|
|
|
lists:usort(SpecialGroups ++ UserGroups)).
|
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
push_user_to_displayed(LUser, LServer, Group, Host, Subscription, DisplayedToGroupsOpts) ->
|
2012-01-04 19:21:31 +01:00
|
|
|
GroupsOpts = groups_with_opts(Host),
|
2008-12-23 20:15:33 +01:00
|
|
|
GroupOpts = proplists:get_value(Group, GroupsOpts, []),
|
|
|
|
GroupName = proplists:get_value(name, GroupOpts, Group),
|
2013-03-14 10:33:02 +01:00
|
|
|
[push_user_to_group(LUser, LServer, GroupD, Host,
|
|
|
|
GroupName, Subscription)
|
2015-06-04 15:47:02 +02:00
|
|
|
|| GroupD <- DisplayedToGroupsOpts].
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
broadcast_user_to_displayed(LUser, LServer, Host, Subscription, DisplayedToGroupsOpts) ->
|
|
|
|
[broadcast_user_to_group(LUser, LServer, GroupD, Host, Subscription)
|
2015-06-04 15:47:02 +02:00
|
|
|
|| GroupD <- DisplayedToGroupsOpts].
|
2015-01-07 13:11:53 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
push_user_to_group(LUser, LServer, Group, Host,
|
|
|
|
GroupName, Subscription) ->
|
|
|
|
lists:foreach(fun ({U, S})
|
|
|
|
when (U == LUser) and (S == LServer) ->
|
|
|
|
ok;
|
|
|
|
({U, S}) ->
|
|
|
|
push_roster_item(U, S, LUser, LServer, GroupName,
|
|
|
|
Subscription)
|
|
|
|
end,
|
|
|
|
get_group_users(Host, Group)).
|
2008-12-23 20:15:33 +01:00
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
broadcast_user_to_group(LUser, LServer, Group, Host, Subscription) ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({U, S}) when (U == LUser) and (S == LServer) -> ok;
|
|
|
|
({U, S}) ->
|
|
|
|
broadcast_subscription(LUser, LServer, {U, S, <<"">>}, Subscription)
|
|
|
|
end, get_group_users(Host, Group)).
|
|
|
|
|
2008-12-23 20:15:33 +01:00
|
|
|
%% Get list of groups to which this group is displayed
|
|
|
|
displayed_to_groups(GroupName, LServer) ->
|
|
|
|
GroupsOpts = groups_with_opts(LServer),
|
2015-06-04 15:47:02 +02:00
|
|
|
Gs = lists:filter(fun ({_Group, Opts}) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:member(GroupName,
|
|
|
|
proplists:get_value(displayed_groups,
|
|
|
|
Opts, []))
|
|
|
|
end,
|
2015-06-04 15:47:02 +02:00
|
|
|
GroupsOpts),
|
|
|
|
[Name || {Name, _} <- Gs].
|
2008-12-23 20:15:33 +01:00
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
push_item(User, Server, Item) ->
|
2016-07-30 07:37:34 +02:00
|
|
|
Stanza = #iq{type = set, id = <<"push", (randoms:get_string())/binary>>,
|
|
|
|
sub_els = [#roster_query{
|
|
|
|
items = [mod_roster:encode_item(Item)]}]},
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:foreach(fun (Resource) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
JID = jid:make(User, Server, Resource),
|
2017-02-16 09:00:26 +01:00
|
|
|
ejabberd_router:route(
|
|
|
|
xmpp:set_from_to(Stanza, jid:remove_resource(JID), JID))
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
|
|
|
ejabberd_sm:get_user_resources(User, Server)).
|
|
|
|
|
|
|
|
push_roster_item(User, Server, ContactU, ContactS,
|
|
|
|
GroupName, Subscription) ->
|
|
|
|
Item = #roster{usj =
|
|
|
|
{User, Server, {ContactU, ContactS, <<"">>}},
|
|
|
|
us = {User, Server}, jid = {ContactU, ContactS, <<"">>},
|
|
|
|
name = <<"">>, subscription = Subscription, ask = none,
|
2008-12-23 20:15:33 +01:00
|
|
|
groups = [GroupName]},
|
2015-01-07 13:11:53 +01:00
|
|
|
push_item(User, Server, Item).
|
2008-12-23 20:15:33 +01:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec c2s_self_presence({presence(), ejabberd_c2s:state()})
|
|
|
|
-> {presence(), ejabberd_c2s:state()}.
|
|
|
|
c2s_self_presence({_, #{pres_last := _}} = Acc) ->
|
|
|
|
%% This is just a presence update, nothing to do
|
|
|
|
Acc;
|
|
|
|
c2s_self_presence({#presence{type = available}, #{jid := New}} = Acc) ->
|
2011-02-21 22:33:23 +01:00
|
|
|
LUser = New#jid.luser,
|
|
|
|
LServer = New#jid.lserver,
|
2017-01-09 15:02:17 +01:00
|
|
|
Resources = ejabberd_sm:get_user_resources(LUser, LServer),
|
2011-02-21 22:33:23 +01:00
|
|
|
?DEBUG("user_available for ~p @ ~p (~p resources)",
|
|
|
|
[LUser, LServer, length(Resources)]),
|
|
|
|
case length(Resources) of
|
2013-03-14 10:33:02 +01:00
|
|
|
%% first session for this user
|
|
|
|
1 ->
|
2015-01-07 13:11:53 +01:00
|
|
|
UserGroups = get_user_groups({LUser, LServer}),
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:foreach(fun (OG) ->
|
|
|
|
?DEBUG("user_available: pushing ~p @ ~p grp ~p",
|
|
|
|
[LUser, LServer, OG]),
|
2015-01-07 13:11:53 +01:00
|
|
|
DisplayedToGroups = displayed_to_groups(OG, LServer),
|
|
|
|
DisplayedGroups = get_displayed_groups(OG, LServer),
|
|
|
|
broadcast_displayed_to_user(LUser, LServer, LServer, both, DisplayedGroups),
|
|
|
|
broadcast_user_to_displayed(LUser, LServer, LServer, both, DisplayedToGroups)
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
2015-01-07 13:11:53 +01:00
|
|
|
UserGroups);
|
2013-03-14 10:33:02 +01:00
|
|
|
_ -> ok
|
2017-01-09 15:02:17 +01:00
|
|
|
end,
|
|
|
|
Acc;
|
|
|
|
c2s_self_presence(Acc) ->
|
|
|
|
Acc.
|
2011-02-21 22:33:23 +01:00
|
|
|
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec unset_presence(binary(), binary(), binary(), binary()) -> ok.
|
2011-02-21 22:33:23 +01:00
|
|
|
unset_presence(LUser, LServer, Resource, Status) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
Resources = ejabberd_sm:get_user_resources(LUser,
|
|
|
|
LServer),
|
|
|
|
?DEBUG("unset_presence for ~p @ ~p / ~p -> ~p "
|
|
|
|
"(~p resources)",
|
2011-02-21 22:33:23 +01:00
|
|
|
[LUser, LServer, Resource, Status, length(Resources)]),
|
|
|
|
case length(Resources) of
|
2013-03-14 10:33:02 +01:00
|
|
|
0 ->
|
|
|
|
OnlineGroups = get_special_users_groups_online(LServer),
|
|
|
|
lists:foreach(fun (OG) ->
|
|
|
|
push_user_to_displayed(LUser, LServer, OG,
|
2015-01-07 13:11:53 +01:00
|
|
|
LServer, remove, displayed_to_groups(OG, LServer)),
|
|
|
|
push_displayed_to_user(LUser, LServer,
|
|
|
|
LServer, remove, displayed_to_groups(OG, LServer))
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
|
|
|
OnlineGroups);
|
|
|
|
_ -> ok
|
2011-02-21 22:33:23 +01:00
|
|
|
end.
|
2007-08-23 02:51:54 +02:00
|
|
|
|
|
|
|
%%---------------------
|
|
|
|
%% Web Admin
|
|
|
|
%%---------------------
|
|
|
|
|
2007-12-26 15:53:37 +01:00
|
|
|
webadmin_menu(Acc, _Host, Lang) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
[{<<"shared-roster">>, ?T(<<"Shared Roster Groups">>)}
|
|
|
|
| Acc].
|
2007-08-23 02:51:54 +02:00
|
|
|
|
|
|
|
webadmin_page(_, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
#request{us = _US, path = [<<"shared-roster">>],
|
|
|
|
q = Query, lang = Lang} =
|
|
|
|
_Request) ->
|
2007-08-23 02:51:54 +02:00
|
|
|
Res = list_shared_roster_groups(Host, Query, Lang),
|
|
|
|
{stop, Res};
|
|
|
|
webadmin_page(_, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
#request{us = _US, path = [<<"shared-roster">>, Group],
|
|
|
|
q = Query, lang = Lang} =
|
|
|
|
_Request) ->
|
2007-08-23 02:51:54 +02:00
|
|
|
Res = shared_roster_group(Host, Group, Query, Lang),
|
|
|
|
{stop, Res};
|
|
|
|
webadmin_page(Acc, _, _) -> Acc.
|
|
|
|
|
|
|
|
list_shared_roster_groups(Host, Query, Lang) ->
|
|
|
|
Res = list_sr_groups_parse_query(Host, Query),
|
2016-07-30 07:37:34 +02:00
|
|
|
SRGroups = mod_shared_roster:list_groups(Host),
|
2013-03-14 10:33:02 +01:00
|
|
|
FGroups = (?XAE(<<"table">>, [],
|
|
|
|
[?XE(<<"tbody">>,
|
|
|
|
(lists:map(fun (Group) ->
|
|
|
|
?XE(<<"tr">>,
|
|
|
|
[?XE(<<"td">>,
|
|
|
|
[?INPUT(<<"checkbox">>,
|
|
|
|
<<"selected">>,
|
|
|
|
Group)]),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?AC(<<Group/binary, "/">>,
|
|
|
|
Group)])])
|
|
|
|
end,
|
|
|
|
lists:sort(SRGroups))
|
|
|
|
++
|
|
|
|
[?XE(<<"tr">>,
|
|
|
|
[?X(<<"td">>),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?INPUT(<<"text">>, <<"namenew">>,
|
|
|
|
<<"">>)]),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?INPUTT(<<"submit">>, <<"addnew">>,
|
|
|
|
<<"Add New">>)])])]))])),
|
|
|
|
(?H1GL((?T(<<"Shared Roster Groups">>)),
|
2016-02-08 16:16:53 +01:00
|
|
|
<<"mod_shared_roster">>, <<"mod_shared_roster">>))
|
2013-03-14 10:33:02 +01:00
|
|
|
++
|
|
|
|
case Res of
|
|
|
|
ok -> [?XREST(<<"Submitted">>)];
|
|
|
|
error -> [?XREST(<<"Bad format">>)];
|
|
|
|
nothing -> []
|
|
|
|
end
|
|
|
|
++
|
|
|
|
[?XAE(<<"form">>,
|
|
|
|
[{<<"action">>, <<"">>}, {<<"method">>, <<"post">>}],
|
|
|
|
[FGroups, ?BR,
|
|
|
|
?INPUTT(<<"submit">>, <<"delete">>,
|
|
|
|
<<"Delete Selected">>)])].
|
2007-08-23 02:51:54 +02:00
|
|
|
|
|
|
|
list_sr_groups_parse_query(Host, Query) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case lists:keysearch(<<"addnew">>, 1, Query) of
|
|
|
|
{value, _} -> list_sr_groups_parse_addnew(Host, Query);
|
|
|
|
_ ->
|
|
|
|
case lists:keysearch(<<"delete">>, 1, Query) of
|
|
|
|
{value, _} -> list_sr_groups_parse_delete(Host, Query);
|
|
|
|
_ -> nothing
|
|
|
|
end
|
2007-08-23 02:51:54 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
list_sr_groups_parse_addnew(Host, Query) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case lists:keysearch(<<"namenew">>, 1, Query) of
|
|
|
|
{value, {_, Group}} when Group /= <<"">> ->
|
2016-07-30 07:37:34 +02:00
|
|
|
mod_shared_roster:create_group(Host, Group), ok;
|
2013-03-14 10:33:02 +01:00
|
|
|
_ -> error
|
2007-08-23 02:51:54 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
list_sr_groups_parse_delete(Host, Query) ->
|
2016-07-30 07:37:34 +02:00
|
|
|
SRGroups = mod_shared_roster:list_groups(Host),
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:foreach(fun (Group) ->
|
|
|
|
case lists:member({<<"selected">>, Group}, Query) of
|
2016-07-30 07:37:34 +02:00
|
|
|
true -> mod_shared_roster:delete_group(Host, Group);
|
2013-03-14 10:33:02 +01:00
|
|
|
_ -> ok
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
SRGroups),
|
2007-08-23 02:51:54 +02:00
|
|
|
ok.
|
|
|
|
|
|
|
|
shared_roster_group(Host, Group, Query, Lang) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
Res = shared_roster_group_parse_query(Host, Group,
|
|
|
|
Query),
|
2016-07-30 07:37:34 +02:00
|
|
|
GroupOpts = mod_shared_roster:get_group_opts(Host, Group),
|
2013-03-14 10:33:02 +01:00
|
|
|
Name = get_opt(GroupOpts, name, <<"">>),
|
|
|
|
Description = get_opt(GroupOpts, description, <<"">>),
|
2007-08-23 02:51:54 +02:00
|
|
|
AllUsers = get_opt(GroupOpts, all_users, false),
|
2011-02-21 22:33:23 +01:00
|
|
|
OnlineUsers = get_opt(GroupOpts, online_users, false),
|
2013-03-14 10:33:02 +01:00
|
|
|
DisplayedGroups = get_opt(GroupOpts, displayed_groups,
|
|
|
|
[]),
|
2016-07-30 07:37:34 +02:00
|
|
|
Members = mod_shared_roster:get_group_explicit_users(Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
Group),
|
|
|
|
FMembers = iolist_to_binary(
|
|
|
|
[if AllUsers -> <<"@all@\n">>;
|
|
|
|
true -> <<"">>
|
|
|
|
end,
|
|
|
|
if OnlineUsers -> <<"@online@\n">>;
|
|
|
|
true -> <<"">>
|
|
|
|
end,
|
|
|
|
[[us_to_list(Member), $\n] || Member <- Members]]),
|
|
|
|
FDisplayedGroups = [<<DG/binary, $\n>> || DG <- DisplayedGroups],
|
|
|
|
DescNL = length(ejabberd_regexp:split(Description,
|
|
|
|
<<"\n">>)),
|
|
|
|
FGroup = (?XAE(<<"table">>,
|
|
|
|
[{<<"class">>, <<"withtextareas">>}],
|
|
|
|
[?XE(<<"tbody">>,
|
|
|
|
[?XE(<<"tr">>,
|
|
|
|
[?XCT(<<"td">>, <<"Name:">>),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?INPUT(<<"text">>, <<"name">>, Name)])]),
|
|
|
|
?XE(<<"tr">>,
|
|
|
|
[?XCT(<<"td">>, <<"Description:">>),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?TEXTAREA(<<"description">>,
|
2016-09-24 22:34:28 +02:00
|
|
|
integer_to_binary(lists:max([3,
|
2013-03-14 10:33:02 +01:00
|
|
|
DescNL])),
|
|
|
|
<<"20">>, Description)])]),
|
|
|
|
?XE(<<"tr">>,
|
|
|
|
[?XCT(<<"td">>, <<"Members:">>),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?TEXTAREA(<<"members">>,
|
2016-09-24 22:34:28 +02:00
|
|
|
integer_to_binary(lists:max([3,
|
2017-01-13 12:16:23 +01:00
|
|
|
length(Members)+3])),
|
2013-03-14 10:33:02 +01:00
|
|
|
<<"20">>, FMembers)])]),
|
|
|
|
?XE(<<"tr">>,
|
|
|
|
[?XCT(<<"td">>, <<"Displayed Groups:">>),
|
|
|
|
?XE(<<"td">>,
|
|
|
|
[?TEXTAREA(<<"dispgroups">>,
|
2016-09-24 22:34:28 +02:00
|
|
|
integer_to_binary(lists:max([3, length(FDisplayedGroups)])),
|
2013-03-14 10:33:02 +01:00
|
|
|
<<"20">>,
|
|
|
|
list_to_binary(FDisplayedGroups))])])])])),
|
|
|
|
(?H1GL((?T(<<"Shared Roster Groups">>)),
|
2016-02-08 16:16:53 +01:00
|
|
|
<<"mod_shared_roster">>, <<"mod_shared_roster">>))
|
2013-03-14 10:33:02 +01:00
|
|
|
++
|
|
|
|
[?XC(<<"h2">>, <<(?T(<<"Group ">>))/binary, Group/binary>>)] ++
|
2007-08-23 02:51:54 +02:00
|
|
|
case Res of
|
2013-03-14 10:33:02 +01:00
|
|
|
ok -> [?XREST(<<"Submitted">>)];
|
|
|
|
error -> [?XREST(<<"Bad format">>)];
|
|
|
|
nothing -> []
|
|
|
|
end
|
|
|
|
++
|
|
|
|
[?XAE(<<"form">>,
|
|
|
|
[{<<"action">>, <<"">>}, {<<"method">>, <<"post">>}],
|
|
|
|
[FGroup, ?BR,
|
|
|
|
?INPUTT(<<"submit">>, <<"submit">>, <<"Submit">>)])].
|
2007-08-23 02:51:54 +02:00
|
|
|
|
|
|
|
shared_roster_group_parse_query(Host, Group, Query) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case lists:keysearch(<<"submit">>, 1, Query) of
|
|
|
|
{value, _} ->
|
|
|
|
{value, {_, Name}} = lists:keysearch(<<"name">>, 1,
|
|
|
|
Query),
|
|
|
|
{value, {_, Description}} =
|
|
|
|
lists:keysearch(<<"description">>, 1, Query),
|
|
|
|
{value, {_, SMembers}} = lists:keysearch(<<"members">>,
|
|
|
|
1, Query),
|
|
|
|
{value, {_, SDispGroups}} =
|
|
|
|
lists:keysearch(<<"dispgroups">>, 1, Query),
|
|
|
|
NameOpt = if Name == <<"">> -> [];
|
|
|
|
true -> [{name, Name}]
|
|
|
|
end,
|
|
|
|
DescriptionOpt = if Description == <<"">> -> [];
|
|
|
|
true -> [{description, Description}]
|
|
|
|
end,
|
|
|
|
DispGroups = str:tokens(SDispGroups, <<"\r\n">>),
|
|
|
|
DispGroupsOpt = if DispGroups == [] -> [];
|
|
|
|
true -> [{displayed_groups, DispGroups}]
|
|
|
|
end,
|
2016-07-30 07:37:34 +02:00
|
|
|
OldMembers = mod_shared_roster:get_group_explicit_users(Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
Group),
|
|
|
|
SJIDs = str:tokens(SMembers, <<", \r\n">>),
|
|
|
|
NewMembers = lists:foldl(fun (_SJID, error) -> error;
|
|
|
|
(SJID, USs) ->
|
|
|
|
case SJID of
|
|
|
|
<<"@all@">> -> USs;
|
|
|
|
<<"@online@">> -> USs;
|
|
|
|
_ ->
|
2017-02-26 08:07:12 +01:00
|
|
|
try jid:decode(SJID) of
|
|
|
|
JID ->
|
2013-03-14 10:33:02 +01:00
|
|
|
[{JID#jid.luser,
|
|
|
|
JID#jid.lserver}
|
2017-02-26 08:07:12 +01:00
|
|
|
| USs]
|
|
|
|
catch _:{bad_jid, _} ->
|
|
|
|
error
|
2013-03-14 10:33:02 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
[], SJIDs),
|
|
|
|
AllUsersOpt = case lists:member(<<"@all@">>, SJIDs) of
|
|
|
|
true -> [{all_users, true}];
|
|
|
|
false -> []
|
|
|
|
end,
|
|
|
|
OnlineUsersOpt = case lists:member(<<"@online@">>,
|
|
|
|
SJIDs)
|
|
|
|
of
|
|
|
|
true -> [{online_users, true}];
|
|
|
|
false -> []
|
|
|
|
end,
|
2015-01-07 13:11:53 +01:00
|
|
|
CurrentDisplayedGroups = get_displayed_groups(Group, Host),
|
|
|
|
AddedDisplayedGroups = DispGroups -- CurrentDisplayedGroups,
|
|
|
|
RemovedDisplayedGroups = CurrentDisplayedGroups -- DispGroups,
|
|
|
|
displayed_groups_update(OldMembers, RemovedDisplayedGroups, remove),
|
|
|
|
displayed_groups_update(OldMembers, AddedDisplayedGroups, both),
|
2016-07-30 07:37:34 +02:00
|
|
|
mod_shared_roster:set_group_opts(Host, Group,
|
2013-03-14 10:33:02 +01:00
|
|
|
NameOpt ++
|
|
|
|
DispGroupsOpt ++
|
|
|
|
DescriptionOpt ++
|
|
|
|
AllUsersOpt ++ OnlineUsersOpt),
|
|
|
|
if NewMembers == error -> error;
|
|
|
|
true ->
|
|
|
|
AddedMembers = NewMembers -- OldMembers,
|
|
|
|
RemovedMembers = OldMembers -- NewMembers,
|
|
|
|
lists:foreach(fun (US) ->
|
2016-07-30 07:37:34 +02:00
|
|
|
mod_shared_roster:remove_user_from_group(Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
US,
|
|
|
|
Group)
|
|
|
|
end,
|
|
|
|
RemovedMembers),
|
|
|
|
lists:foreach(fun (US) ->
|
2016-07-30 07:37:34 +02:00
|
|
|
mod_shared_roster:add_user_to_group(Host, US,
|
2013-03-14 10:33:02 +01:00
|
|
|
Group)
|
|
|
|
end,
|
|
|
|
AddedMembers),
|
|
|
|
ok
|
|
|
|
end;
|
|
|
|
_ -> nothing
|
2007-08-23 02:51:54 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
get_opt(Opts, Opt, Default) ->
|
|
|
|
case lists:keysearch(Opt, 1, Opts) of
|
2013-03-14 10:33:02 +01:00
|
|
|
{value, {_, Val}} -> Val;
|
|
|
|
false -> Default
|
2007-08-23 02:51:54 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
us_to_list({User, Server}) ->
|
2017-02-26 08:07:12 +01:00
|
|
|
jid:encode({User, Server, <<"">>}).
|
2011-07-27 10:20:22 +02:00
|
|
|
|
|
|
|
split_grouphost(Host, Group) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case str:tokens(Group, <<"@">>) of
|
|
|
|
[GroupName, HostName] -> {HostName, GroupName};
|
|
|
|
[_] -> {Host, Group}
|
2011-07-27 10:20:22 +02:00
|
|
|
end.
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2015-01-07 13:11:53 +01:00
|
|
|
broadcast_subscription(User, Server, ContactJid, Subscription) ->
|
2017-02-25 08:01:01 +01:00
|
|
|
ejabberd_sm:route(jid:make(User, Server),
|
2016-12-11 13:03:37 +01:00
|
|
|
{item, ContactJid, Subscription}).
|
2015-01-07 13:11:53 +01:00
|
|
|
|
|
|
|
displayed_groups_update(Members, DisplayedGroups, Subscription) ->
|
|
|
|
lists:foreach(fun({U, S}) ->
|
|
|
|
push_displayed_to_user(U, S, S, Subscription, DisplayedGroups),
|
|
|
|
case Subscription of
|
|
|
|
both ->
|
|
|
|
broadcast_displayed_to_user(U, S, S, to, DisplayedGroups),
|
|
|
|
broadcast_displayed_to_user(U, S, S, from, DisplayedGroups);
|
|
|
|
Subscr ->
|
|
|
|
broadcast_displayed_to_user(U, S, S, Subscr, DisplayedGroups)
|
|
|
|
end
|
|
|
|
end, Members).
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
opts_to_binary(Opts) ->
|
|
|
|
lists:map(
|
|
|
|
fun({name, Name}) ->
|
|
|
|
{name, iolist_to_binary(Name)};
|
|
|
|
({description, Desc}) ->
|
|
|
|
{description, iolist_to_binary(Desc)};
|
|
|
|
({displayed_groups, Gs}) ->
|
|
|
|
{displayed_groups, [iolist_to_binary(G) || G <- Gs]};
|
|
|
|
(Opt) ->
|
|
|
|
Opt
|
|
|
|
end, Opts).
|
|
|
|
|
2016-04-14 10:45:43 +02:00
|
|
|
export(LServer) ->
|
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:export(LServer).
|
2013-07-21 12:24:36 +02:00
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import_info() ->
|
|
|
|
[{<<"sr_group">>, 3}, {<<"sr_user">>, 3}].
|
|
|
|
|
|
|
|
import_start(LServer, DBType) ->
|
|
|
|
Mod = gen_mod:db_mod(DBType, ?MODULE),
|
|
|
|
Mod:init(LServer, []).
|
2016-04-14 10:45:43 +02:00
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import(LServer, {sql, _}, DBType, Tab, L) ->
|
2016-04-14 10:45:43 +02:00
|
|
|
Mod = gen_mod:db_mod(DBType, ?MODULE),
|
2016-11-22 14:48:01 +01:00
|
|
|
Mod:import(LServer, Tab, L).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2016-04-27 16:10:50 +02:00
|
|
|
mod_opt_type(db_type) -> fun(T) -> ejabberd_config:v_db(?MODULE, T) end;
|
2015-06-01 14:38:27 +02:00
|
|
|
mod_opt_type(_) -> [db_type].
|