2002-12-11 21:57:45 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_roster.erl
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2004-09-10 22:57:00 +02:00
|
|
|
%%% Purpose : Roster management
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% Created : 11 Dec 2002 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
|
|
|
%%%
|
2002-12-11 21:57:45 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
2009-08-06 23:06:16 +02:00
|
|
|
%%% @doc Roster management (Mnesia storage).
|
|
|
|
%%%
|
|
|
|
%%% Includes support for XEP-0237: Roster Versioning.
|
|
|
|
%%% The roster versioning follows an all-or-nothing strategy:
|
|
|
|
%%% - If the version supplied by the client is the latest, return an empty response.
|
|
|
|
%%% - If not, return the entire new roster (with updated version string).
|
|
|
|
%%% Roster version is a hash digest of the entire roster.
|
|
|
|
%%% No additional data is stored in DB.
|
|
|
|
|
2002-12-11 21:57:45 +01:00
|
|
|
-module(mod_roster).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2015-05-21 17:02:36 +02:00
|
|
|
-protocol({xep, 237, '1.3'}).
|
|
|
|
-protocol({xep, 321, '0.1'}).
|
|
|
|
|
2007-12-24 13:58:05 +01:00
|
|
|
-author('alexey@process-one.net').
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2003-01-24 21:18:33 +01:00
|
|
|
-behaviour(gen_mod).
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-export([start/2, stop/1, process_iq/1, export/1,
|
2016-11-22 14:48:01 +01:00
|
|
|
import_info/0, process_local_iq/1, get_user_roster/2,
|
2017-01-09 15:02:17 +01:00
|
|
|
import/5, c2s_session_opened/1, get_roster/2,
|
|
|
|
import_start/2, import_stop/2, user_receive_packet/1,
|
|
|
|
c2s_self_presence/1, in_subscription/6,
|
2013-03-14 10:33:02 +01:00
|
|
|
out_subscription/4, set_items/3, remove_user/2,
|
2016-07-18 14:01:32 +02:00
|
|
|
get_jid_info/4, encode_item/1, webadmin_page/3,
|
2013-03-14 10:33:02 +01:00
|
|
|
webadmin_user/4, get_versioning_feature/2,
|
|
|
|
roster_versioning_enabled/1, roster_version/2,
|
2016-10-22 12:01:45 +02:00
|
|
|
mod_opt_type/1, set_roster/1, del_roster/3, depends/2]).
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2002-12-13 21:58:27 +01: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-18 14:01:32 +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").
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2016-12-11 13:03:37 +01:00
|
|
|
-define(SETS, gb_sets).
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
-export_type([subscription/0]).
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2016-04-14 09:58:32 +02:00
|
|
|
-callback init(binary(), gen_mod:opts()) -> any().
|
2016-11-22 14:48:01 +01:00
|
|
|
-callback import(binary(), binary(), #roster{} | [binary()]) -> ok.
|
2016-04-14 09:58:32 +02:00
|
|
|
-callback read_roster_version(binary(), binary()) -> binary() | error.
|
|
|
|
-callback write_roster_version(binary(), binary(), boolean(), binary()) -> any().
|
|
|
|
-callback get_roster(binary(), binary()) -> [#roster{}].
|
|
|
|
-callback get_roster_by_jid(binary(), binary(), ljid()) -> #roster{}.
|
|
|
|
-callback get_only_items(binary(), binary()) -> [#roster{}].
|
|
|
|
-callback roster_subscribe(binary(), binary(), ljid(), #roster{}) -> any().
|
|
|
|
-callback transaction(binary(), function()) -> {atomic, any()} | {aborted, any()}.
|
|
|
|
-callback get_roster_by_jid_with_groups(binary(), binary(), ljid()) -> #roster{}.
|
|
|
|
-callback remove_user(binary(), binary()) -> {atomic, any()}.
|
|
|
|
-callback update_roster(binary(), binary(), ljid(), #roster{}) -> any().
|
|
|
|
-callback del_roster(binary(), binary(), ljid()) -> any().
|
|
|
|
-callback read_subscription_and_groups(binary(), binary(), ljid()) ->
|
|
|
|
{subscription(), [binary()]}.
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
start(Host, Opts) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, fun gen_iq_handler:check_type/1,
|
|
|
|
one_queue),
|
2016-04-14 09:58:32 +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(roster_get, Host, ?MODULE,
|
|
|
|
get_user_roster, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(roster_in_subscription, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, in_subscription, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(roster_out_subscription, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, out_subscription, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:add(c2s_session_opened, Host, ?MODULE,
|
|
|
|
c2s_session_opened, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:add(roster_get_jid_info, Host, ?MODULE,
|
|
|
|
get_jid_info, 50),
|
|
|
|
ejabberd_hooks:add(remove_user, Host, ?MODULE,
|
|
|
|
remove_user, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:add(c2s_self_presence, Host, ?MODULE,
|
|
|
|
c2s_self_presence, 50),
|
2016-12-11 13:03:37 +01:00
|
|
|
ejabberd_hooks:add(c2s_post_auth_features, Host,
|
2009-08-06 23:06:16 +02:00
|
|
|
?MODULE, get_versioning_feature, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:add(webadmin_page_host, Host, ?MODULE,
|
|
|
|
webadmin_page, 50),
|
|
|
|
ejabberd_hooks:add(webadmin_user, Host, ?MODULE,
|
|
|
|
webadmin_user, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:add(user_receive_packet, Host, ?MODULE,
|
|
|
|
user_receive_packet, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_sm, Host,
|
|
|
|
?NS_ROSTER, ?MODULE, process_iq, IQDisc).
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
stop(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:delete(roster_get, Host, ?MODULE,
|
|
|
|
get_user_roster, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(roster_in_subscription, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, in_subscription, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(roster_out_subscription, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, out_subscription, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:delete(c2s_session_opened, Host, ?MODULE,
|
|
|
|
c2s_session_opened, 50),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:delete(roster_get_jid_info, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, get_jid_info, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_hooks:delete(remove_user, Host, ?MODULE,
|
|
|
|
remove_user, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:delete(c2s_self_presence, Host, ?MODULE,
|
|
|
|
c2s_self_presence, 50),
|
2016-12-11 13:03:37 +01:00
|
|
|
ejabberd_hooks:delete(c2s_post_auth_features,
|
2013-03-14 10:33:02 +01:00
|
|
|
Host, ?MODULE, get_versioning_feature, 50),
|
|
|
|
ejabberd_hooks:delete(webadmin_page_host, Host, ?MODULE,
|
|
|
|
webadmin_page, 50),
|
|
|
|
ejabberd_hooks:delete(webadmin_user, Host, ?MODULE,
|
|
|
|
webadmin_user, 50),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:delete(user_receive_packet, Host, ?MODULE,
|
|
|
|
user_receive_packet, 50),
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, Host,
|
|
|
|
?NS_ROSTER).
|
2004-07-10 00:34:26 +02:00
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[].
|
|
|
|
|
2016-11-07 08:10:57 +01:00
|
|
|
process_iq(#iq{from = #jid{luser = U, lserver = S},
|
|
|
|
to = #jid{luser = U, lserver = S}} = IQ) ->
|
|
|
|
process_local_iq(IQ);
|
2016-11-12 11:27:15 +01:00
|
|
|
process_iq(#iq{lang = Lang, to = To} = IQ) ->
|
|
|
|
case ejabberd_hooks:run_fold(roster_remote_access,
|
|
|
|
To#jid.lserver, false, [IQ]) of
|
|
|
|
false ->
|
|
|
|
Txt = <<"Query to another users is forbidden">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_forbidden(Txt, Lang));
|
|
|
|
true ->
|
|
|
|
process_local_iq(IQ)
|
2002-12-11 21:57:45 +01:00
|
|
|
end.
|
2016-11-07 08:10:57 +01:00
|
|
|
|
|
|
|
process_local_iq(#iq{type = set,lang = Lang,
|
|
|
|
sub_els = [#roster_query{
|
|
|
|
items = [#roster_item{ask = Ask}]}]} = IQ)
|
|
|
|
when Ask /= undefined ->
|
|
|
|
Txt = <<"Possessing 'ask' attribute is not allowed by RFC6121">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang));
|
|
|
|
process_local_iq(#iq{type = set, from = From, lang = Lang,
|
|
|
|
sub_els = [#roster_query{
|
|
|
|
items = [#roster_item{} = Item]}]} = IQ) ->
|
|
|
|
case has_duplicated_groups(Item#roster_item.groups) of
|
|
|
|
true ->
|
|
|
|
Txt = <<"Duplicated groups are not allowed by RFC6121">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang));
|
|
|
|
false ->
|
|
|
|
#jid{server = Server} = From,
|
|
|
|
Access = gen_mod:get_module_opt(Server, ?MODULE,
|
|
|
|
access, fun(A) -> A end, all),
|
|
|
|
case acl:match_rule(Server, Access, From) of
|
|
|
|
deny ->
|
|
|
|
Txt = <<"Denied by ACL">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_not_allowed(Txt, Lang));
|
|
|
|
allow ->
|
|
|
|
process_iq_set(IQ)
|
|
|
|
end
|
|
|
|
end;
|
|
|
|
process_local_iq(#iq{type = set, lang = Lang,
|
|
|
|
sub_els = [#roster_query{items = [_|_]}]} = IQ) ->
|
|
|
|
Txt = <<"Multiple <item/> elements are not allowed by RFC6121">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang));
|
|
|
|
process_local_iq(#iq{type = get, lang = Lang,
|
|
|
|
sub_els = [#roster_query{items = Items}]} = IQ) ->
|
|
|
|
case Items of
|
|
|
|
[] ->
|
|
|
|
process_iq_get(IQ);
|
|
|
|
[_|_] ->
|
|
|
|
Txt = <<"The query must not contain <item/> elements">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang))
|
|
|
|
end;
|
|
|
|
process_local_iq(#iq{lang = Lang} = IQ) ->
|
|
|
|
Txt = <<"No module is handling this query">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_service_unavailable(Txt, Lang)).
|
2003-07-21 22:01:22 +02:00
|
|
|
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
roster_hash(Items) ->
|
2013-06-20 10:40:44 +02:00
|
|
|
p1_sha:sha(term_to_binary(lists:sort([R#roster{groups =
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:sort(Grs)}
|
|
|
|
|| R = #roster{groups = Grs}
|
|
|
|
<- Items]))).
|
|
|
|
|
2009-08-06 23:06:16 +02:00
|
|
|
roster_versioning_enabled(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_mod:get_module_opt(Host, ?MODULE, versioning,
|
|
|
|
fun(B) when is_boolean(B) -> B end,
|
|
|
|
false).
|
2009-08-06 23:06:16 +02:00
|
|
|
|
|
|
|
roster_version_on_db(Host) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
gen_mod:get_module_opt(Host, ?MODULE, store_current_id,
|
|
|
|
fun(B) when is_boolean(B) -> B end,
|
|
|
|
false).
|
2009-08-06 23:06:16 +02:00
|
|
|
|
|
|
|
%% Returns a list that may contain an xmlelement with the XEP-237 feature if it's enabled.
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec get_versioning_feature([xmpp_element()], binary()) -> [xmpp_element()].
|
2009-08-06 23:06:16 +02:00
|
|
|
get_versioning_feature(Acc, Host) ->
|
2017-01-09 15:02:17 +01:00
|
|
|
case gen_mod:is_loaded(Host, ?MODULE) of
|
|
|
|
true ->
|
2009-08-06 23:06:16 +02:00
|
|
|
case roster_versioning_enabled(Host) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true ->
|
2016-07-18 14:01:32 +02:00
|
|
|
[#rosterver_feature{}|Acc];
|
2017-01-09 15:02:17 +01:00
|
|
|
false ->
|
|
|
|
Acc
|
|
|
|
end;
|
|
|
|
false ->
|
|
|
|
Acc
|
2009-08-06 23:06:16 +02:00
|
|
|
end.
|
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
roster_version(LServer, LUser) ->
|
|
|
|
US = {LUser, LServer},
|
|
|
|
case roster_version_on_db(LServer) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true ->
|
|
|
|
case read_roster_version(LUser, LServer) of
|
|
|
|
error -> not_found;
|
|
|
|
V -> V
|
|
|
|
end;
|
|
|
|
false ->
|
|
|
|
roster_hash(ejabberd_hooks:run_fold(roster_get, LServer,
|
|
|
|
[], [US]))
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
read_roster_version(LUser, LServer) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:read_roster_version(LUser, LServer).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
write_roster_version(LUser, LServer) ->
|
|
|
|
write_roster_version(LUser, LServer, false).
|
|
|
|
|
|
|
|
write_roster_version_t(LUser, LServer) ->
|
|
|
|
write_roster_version(LUser, LServer, true).
|
|
|
|
|
|
|
|
write_roster_version(LUser, LServer, InTransaction) ->
|
2015-12-04 15:08:43 +01:00
|
|
|
Ver = p1_sha:sha(term_to_binary(p1_time_compat:unique_integer())),
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:write_roster_version(LUser, LServer, InTransaction, Ver),
|
2012-04-27 11:52:05 +02:00
|
|
|
Ver.
|
|
|
|
|
2015-12-04 15:08:43 +01:00
|
|
|
%% Load roster from DB only if neccesary.
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
%% It is neccesary if
|
|
|
|
%% - roster versioning is disabled in server OR
|
|
|
|
%% - roster versioning is not used by the client OR
|
|
|
|
%% - roster versioning is used by server and client, BUT the server isn't storing versions on db OR
|
|
|
|
%% - the roster version from client don't match current version.
|
2016-11-12 11:27:15 +01:00
|
|
|
process_iq_get(#iq{to = To, lang = Lang,
|
2016-07-18 14:01:32 +02:00
|
|
|
sub_els = [#roster_query{ver = RequestedVersion}]} = IQ) ->
|
2016-11-12 11:27:15 +01:00
|
|
|
LUser = To#jid.luser,
|
|
|
|
LServer = To#jid.lserver,
|
2005-04-17 20:08:34 +02:00
|
|
|
US = {LUser, LServer},
|
2016-07-18 14:01:32 +02:00
|
|
|
try {ItemsToSend, VersionToSend} =
|
|
|
|
case {roster_versioning_enabled(LServer),
|
|
|
|
roster_version_on_db(LServer)} of
|
|
|
|
{true, true} when RequestedVersion /= undefined ->
|
|
|
|
case read_roster_version(LUser, LServer) of
|
|
|
|
error ->
|
|
|
|
RosterVersion = write_roster_version(LUser, LServer),
|
|
|
|
{lists:map(fun encode_item/1,
|
|
|
|
ejabberd_hooks:run_fold(
|
|
|
|
roster_get, To#jid.lserver, [], [US])),
|
|
|
|
RosterVersion};
|
|
|
|
RequestedVersion ->
|
|
|
|
{false, false};
|
|
|
|
NewVersion ->
|
|
|
|
{lists:map(fun encode_item/1,
|
|
|
|
ejabberd_hooks:run_fold(
|
|
|
|
roster_get, To#jid.lserver, [], [US])),
|
|
|
|
NewVersion}
|
|
|
|
end;
|
|
|
|
{true, false} when RequestedVersion /= undefined ->
|
|
|
|
RosterItems = ejabberd_hooks:run_fold(
|
|
|
|
roster_get, To#jid.lserver, [], [US]),
|
|
|
|
case roster_hash(RosterItems) of
|
|
|
|
RequestedVersion ->
|
|
|
|
{false, false};
|
|
|
|
New ->
|
|
|
|
{lists:map(fun encode_item/1, RosterItems), New}
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
{lists:map(fun encode_item/1,
|
|
|
|
ejabberd_hooks:run_fold(
|
|
|
|
roster_get, To#jid.lserver, [], [US])),
|
|
|
|
false}
|
|
|
|
end,
|
|
|
|
xmpp:make_iq_result(
|
|
|
|
IQ,
|
|
|
|
case {ItemsToSend, VersionToSend} of
|
|
|
|
{false, false} ->
|
|
|
|
undefined;
|
|
|
|
{Items, false} ->
|
|
|
|
#roster_query{items = Items};
|
|
|
|
{Items, Version} ->
|
|
|
|
#roster_query{items = Items,
|
|
|
|
ver = Version}
|
|
|
|
end)
|
|
|
|
catch E:R ->
|
|
|
|
?ERROR_MSG("failed to process roster get for ~s: ~p",
|
2016-11-12 11:27:15 +01:00
|
|
|
[jid:to_string(To), {E, {R, erlang:get_stacktrace()}}]),
|
2016-07-18 14:01:32 +02:00
|
|
|
Txt = <<"Roster module has failed">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_internal_server_error(Txt, Lang))
|
2002-12-13 21:58:27 +01:00
|
|
|
end.
|
|
|
|
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec get_user_roster([#roster{}], {binary(), binary()}) -> [#roster{}].
|
2012-04-27 11:52:05 +02:00
|
|
|
get_user_roster(Acc, {LUser, LServer}) ->
|
|
|
|
Items = get_roster(LUser, LServer),
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:filter(fun (#roster{subscription = none,
|
|
|
|
ask = in}) ->
|
|
|
|
false;
|
|
|
|
(_) -> true
|
|
|
|
end,
|
|
|
|
Items)
|
|
|
|
++ Acc.
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
get_roster(LUser, LServer) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:get_roster(LUser, LServer).
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2016-01-28 12:23:51 +01:00
|
|
|
set_roster(#roster{us = {LUser, LServer}, jid = LJID} = Item) ->
|
|
|
|
transaction(
|
|
|
|
LServer,
|
|
|
|
fun() ->
|
2016-11-18 11:38:08 +01:00
|
|
|
update_roster_t(LUser, LServer, LJID, Item)
|
2016-01-28 12:23:51 +01:00
|
|
|
end).
|
|
|
|
|
2016-10-22 12:01:45 +02:00
|
|
|
del_roster(LUser, LServer, LJID) ->
|
|
|
|
transaction(
|
|
|
|
LServer,
|
|
|
|
fun() ->
|
|
|
|
del_roster_t(LUser, LServer, LJID)
|
|
|
|
end).
|
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
encode_item(Item) ->
|
|
|
|
#roster_item{jid = jid:make(Item#roster.jid),
|
|
|
|
name = Item#roster.name,
|
|
|
|
subscription = Item#roster.subscription,
|
|
|
|
ask = case ask_to_pending(Item#roster.ask) of
|
|
|
|
out -> subscribe;
|
|
|
|
both -> subscribe;
|
|
|
|
_ -> undefined
|
|
|
|
end,
|
|
|
|
groups = Item#roster.groups}.
|
|
|
|
|
2016-11-07 08:10:57 +01:00
|
|
|
decode_item(#roster_item{subscription = remove} = Item, R, _) ->
|
|
|
|
R#roster{jid = jid:tolower(Item#roster_item.jid),
|
|
|
|
name = <<"">>,
|
|
|
|
subscription = remove,
|
|
|
|
ask = none,
|
|
|
|
groups = [],
|
|
|
|
askmessage = <<"">>,
|
|
|
|
xs = []};
|
2016-09-13 11:30:05 +02:00
|
|
|
decode_item(Item, R, Managed) ->
|
2016-07-18 14:01:32 +02:00
|
|
|
R#roster{jid = jid:tolower(Item#roster_item.jid),
|
|
|
|
name = Item#roster_item.name,
|
|
|
|
subscription = case Item#roster_item.subscription of
|
|
|
|
Sub when Managed -> Sub;
|
2016-09-13 11:30:05 +02:00
|
|
|
_ -> R#roster.subscription
|
2016-07-18 14:01:32 +02:00
|
|
|
end,
|
|
|
|
groups = Item#roster_item.groups}.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
get_roster_by_jid_t(LUser, LServer, LJID) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:get_roster_by_jid(LUser, LServer, LJID).
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2016-11-12 11:27:15 +01:00
|
|
|
process_iq_set(#iq{from = From, to = To,
|
2016-09-13 11:30:05 +02:00
|
|
|
sub_els = [#roster_query{items = QueryItems}]} = IQ) ->
|
2016-11-12 11:27:15 +01:00
|
|
|
#jid{user = User, luser = LUser, lserver = LServer} = To,
|
|
|
|
Managed = {From#jid.luser, From#jid.lserver} /= {LUser, LServer},
|
2016-07-18 14:01:32 +02:00
|
|
|
F = fun () ->
|
2016-09-13 11:30:05 +02:00
|
|
|
lists:map(
|
|
|
|
fun(#roster_item{jid = JID1} = QueryItem) ->
|
|
|
|
LJID = jid:tolower(JID1),
|
|
|
|
Item = get_roster_by_jid_t(LUser, LServer, LJID),
|
|
|
|
Item2 = decode_item(QueryItem, Item, Managed),
|
|
|
|
Item3 = ejabberd_hooks:run_fold(roster_process_item,
|
|
|
|
LServer, Item2,
|
|
|
|
[LServer]),
|
|
|
|
case Item3#roster.subscription of
|
|
|
|
remove -> del_roster_t(LUser, LServer, LJID);
|
|
|
|
_ -> update_roster_t(LUser, LServer, LJID, Item3)
|
|
|
|
end,
|
|
|
|
case roster_version_on_db(LServer) of
|
|
|
|
true -> write_roster_version_t(LUser, LServer);
|
|
|
|
false -> ok
|
|
|
|
end,
|
|
|
|
{Item, Item3}
|
|
|
|
end, QueryItems)
|
2016-07-18 14:01:32 +02:00
|
|
|
end,
|
|
|
|
case transaction(LServer, F) of
|
2016-09-13 11:30:05 +02:00
|
|
|
{atomic, ItemPairs} ->
|
|
|
|
lists:foreach(
|
|
|
|
fun({OldItem, Item}) ->
|
|
|
|
push_item(User, LServer, To, Item),
|
|
|
|
case Item#roster.subscription of
|
|
|
|
remove ->
|
2016-11-12 11:27:15 +01:00
|
|
|
send_unsubscribing_presence(To, OldItem);
|
2016-09-13 11:30:05 +02:00
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
end, ItemPairs),
|
|
|
|
xmpp:make_iq_result(IQ);
|
2016-07-18 14:01:32 +02:00
|
|
|
E ->
|
2016-09-13 11:30:05 +02:00
|
|
|
?ERROR_MSG("roster set failed:~nIQ = ~s~nError = ~p",
|
|
|
|
[xmpp:pp(IQ), E]),
|
|
|
|
xmpp:make_error(IQ, xmpp:err_internal_server_error())
|
|
|
|
end.
|
2002-12-14 21:07:26 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
push_item(User, Server, From, Item) ->
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
case roster_versioning_enabled(Server) of
|
2013-03-14 10:33:02 +01:00
|
|
|
true ->
|
|
|
|
push_item_version(Server, User, From, Item,
|
|
|
|
roster_version(Server, User));
|
|
|
|
false ->
|
|
|
|
lists:foreach(fun (Resource) ->
|
|
|
|
push_item(User, Server, Resource, From, Item)
|
|
|
|
end,
|
|
|
|
ejabberd_sm:get_user_resources(User, Server))
|
Support for roster versioning (EJAB-964)
Introduces two options for mod_roster and mod_roster_odbc:
- {versioning, true | false} Enable or disable roster versioning on ejabberd.
- {store_current_id, true | false} If true, the current roster version is stored on DB (internal or odbc). Otherwise it is calculated on the fly each time.
Performance:
Setting store_current_id to true should help in reducing the load for both ejabberd and the DB.
Details:
If store_current_id is false, the roster version is a hash of the entire roster. If store_current_id is true, the roster version is a hash, but of the current time
(this has to do with transactional semantics; we need to perform both the roster update and the version update on the same transaction, but we don't
have the entire roster when we are changing a single item on DB. Loading it there requires significant changes to be introduced, so I opted for this simpler approach).
In either case, there is no difference for the clients, the roster version ID is opaque.
IMPORTANT:
mod_shared_roster is not compatible with the option 'store_current_id'. Shared roster and roster versioning can be both enabled, but store_current_id MUST be set to false.
SVN Revision: 2428
2009-08-06 17:45:13 +02:00
|
|
|
end.
|
2002-12-14 21:07:26 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
push_item(User, Server, Resource, From, Item) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
push_item(User, Server, Resource, From, Item,
|
|
|
|
not_found).
|
2011-04-29 20:30:17 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
push_item(User, Server, Resource, From, Item,
|
|
|
|
RosterVersion) ->
|
2016-07-18 14:01:32 +02:00
|
|
|
Ver = case RosterVersion of
|
|
|
|
not_found -> undefined;
|
|
|
|
_ -> RosterVersion
|
|
|
|
end,
|
2017-01-09 15:02:17 +01:00
|
|
|
To = jid:make(User, Server, Resource),
|
|
|
|
ResIQ = #iq{type = set, from = From, to = To,
|
2013-03-14 10:33:02 +01:00
|
|
|
id = <<"push", (randoms:get_string())/binary>>,
|
2016-07-18 14:01:32 +02:00
|
|
|
sub_els = [#roster_query{ver = Ver,
|
|
|
|
items = [encode_item(Item)]}]},
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_router:route(From, To, xmpp:put_meta(ResIQ, roster_item, Item)).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
|
|
|
push_item_version(Server, User, From, Item,
|
|
|
|
RosterVersion) ->
|
|
|
|
lists:foreach(fun (Resource) ->
|
|
|
|
push_item(User, Server, Resource, From, Item,
|
|
|
|
RosterVersion)
|
|
|
|
end,
|
|
|
|
ejabberd_sm:get_user_resources(User, Server)).
|
2009-08-06 23:06:16 +02:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec user_receive_packet({stanza(), ejabberd_c2s:state()}) -> {stanza(), ejabberd_c2s:state()}.
|
|
|
|
user_receive_packet({#iq{type = set, meta = #{roster_item := Item}} = IQ, State}) ->
|
|
|
|
{IQ, roster_change(State, Item)};
|
|
|
|
user_receive_packet(Acc) ->
|
|
|
|
Acc.
|
2016-12-11 13:03:37 +01:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec roster_change(ejabberd_c2s:state(), #roster{}) -> ejabberd_c2s:state().
|
|
|
|
roster_change(#{user := U, server := S, resource := R,
|
|
|
|
pres_a := PresA, pres_f := PresF, pres_t := PresT} = State,
|
|
|
|
#roster{jid = IJID, subscription = ISubscription}) ->
|
2016-12-11 13:03:37 +01:00
|
|
|
LIJID = jid:tolower(IJID),
|
|
|
|
IsFrom = (ISubscription == both) or (ISubscription == from),
|
|
|
|
IsTo = (ISubscription == both) or (ISubscription == to),
|
|
|
|
OldIsFrom = ?SETS:is_element(LIJID, PresF),
|
|
|
|
FSet = if IsFrom -> ?SETS:add_element(LIJID, PresF);
|
|
|
|
true -> ?SETS:del_element(LIJID, PresF)
|
|
|
|
end,
|
|
|
|
TSet = if IsTo -> ?SETS:add_element(LIJID, PresT);
|
|
|
|
true -> ?SETS:del_element(LIJID, PresT)
|
|
|
|
end,
|
|
|
|
State1 = State#{pres_f => FSet, pres_t => TSet},
|
|
|
|
case maps:get(pres_last, State, undefined) of
|
|
|
|
undefined ->
|
|
|
|
State1;
|
|
|
|
LastPres ->
|
|
|
|
From = jid:make(U, S, R),
|
|
|
|
To = jid:make(IJID),
|
|
|
|
Cond1 = IsFrom andalso not OldIsFrom,
|
|
|
|
Cond2 = not IsFrom andalso OldIsFrom andalso
|
|
|
|
?SETS:is_element(LIJID, PresA),
|
|
|
|
if Cond1 ->
|
|
|
|
case ejabberd_hooks:run_fold(
|
|
|
|
privacy_check_packet, allow,
|
|
|
|
[State1, LastPres, out]) of
|
|
|
|
deny ->
|
|
|
|
ok;
|
|
|
|
allow ->
|
|
|
|
Pres = xmpp:set_from_to(LastPres, From, To),
|
|
|
|
ejabberd_router:route(From, To, Pres)
|
|
|
|
end,
|
|
|
|
A = ?SETS:add_element(LIJID, PresA),
|
|
|
|
State1#{pres_a => A};
|
2017-01-09 15:02:17 +01:00
|
|
|
Cond2 ->
|
2016-12-11 13:03:37 +01:00
|
|
|
PU = #presence{from = From, to = To, type = unavailable},
|
|
|
|
case ejabberd_hooks:run_fold(
|
|
|
|
privacy_check_packet, allow,
|
|
|
|
[State1, PU, out]) of
|
|
|
|
deny ->
|
|
|
|
ok;
|
|
|
|
allow ->
|
|
|
|
ejabberd_router:route(From, To, PU)
|
|
|
|
end,
|
|
|
|
A = ?SETS:del_element(LIJID, PresA),
|
|
|
|
State1#{pres_a => A};
|
|
|
|
true ->
|
|
|
|
State1
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec c2s_session_opened(ejabberd_c2s:state()) -> ejabberd_c2s:state().
|
2017-01-23 11:51:05 +01:00
|
|
|
c2s_session_opened(#{jid := #jid{luser = LUser, lserver = LServer},
|
2017-01-09 15:02:17 +01:00
|
|
|
pres_f := PresF, pres_t := PresT} = State) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Items = Mod:get_only_items(LUser, LServer),
|
2017-01-09 15:02:17 +01:00
|
|
|
{F, T} = fill_subscription_lists(Items, PresF, PresT),
|
2017-01-23 11:51:05 +01:00
|
|
|
State#{pres_f => F, pres_t => T}.
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
fill_subscription_lists([I | Is], F, T) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
J = element(3, I#roster.usj),
|
2017-01-09 15:02:17 +01:00
|
|
|
{F1, T1} = case I#roster.subscription of
|
2016-04-14 09:58:32 +02:00
|
|
|
both ->
|
2017-01-09 15:02:17 +01:00
|
|
|
{?SETS:add_element(J, F), ?SETS:add_element(J, T)};
|
2016-04-14 09:58:32 +02:00
|
|
|
from ->
|
2017-01-09 15:02:17 +01:00
|
|
|
{?SETS:add_element(J, F), T};
|
|
|
|
to ->
|
|
|
|
{F, ?SETS:add_element(J, T)};
|
|
|
|
_ ->
|
|
|
|
{F, T}
|
|
|
|
end,
|
|
|
|
fill_subscription_lists(Is, F1, T1);
|
|
|
|
fill_subscription_lists([], F, T) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
{F, T}.
|
2002-12-17 21:49:45 +01:00
|
|
|
|
2003-12-11 21:31:40 +01:00
|
|
|
ask_to_pending(subscribe) -> out;
|
|
|
|
ask_to_pending(unsubscribe) -> none;
|
|
|
|
ask_to_pending(Ask) -> Ask.
|
2002-12-17 21:49:45 +01:00
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
roster_subscribe_t(LUser, LServer, LJID, Item) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:roster_subscribe(LUser, LServer, LJID, Item).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
transaction(LServer, F) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:transaction(LServer, F).
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec in_subscription(boolean(), binary(), binary(), jid(),
|
|
|
|
subscribe | subscribed | unsubscribe | unsubscribed,
|
|
|
|
binary()) -> boolean().
|
2006-05-23 22:19:37 +02:00
|
|
|
in_subscription(_, User, Server, JID, Type, Reason) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
process_subscription(in, User, Server, JID, Type,
|
|
|
|
Reason).
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec out_subscription(
|
|
|
|
binary(), binary(), jid(),
|
|
|
|
subscribed | unsubscribed | subscribe | unsubscribe) -> boolean().
|
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, <<"">>).
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
get_roster_by_jid_with_groups_t(LUser, LServer, LJID) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:get_roster_by_jid_with_groups(LUser, LServer, LJID).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
process_subscription(Direction, User, Server, JID1,
|
|
|
|
Type, Reason) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
|
|
|
LJID = jid:tolower(JID1),
|
2013-03-14 10:33:02 +01:00
|
|
|
F = fun () ->
|
|
|
|
Item = get_roster_by_jid_with_groups_t(LUser, LServer,
|
|
|
|
LJID),
|
2003-12-11 21:31:40 +01:00
|
|
|
NewState = case Direction of
|
2013-03-14 10:33:02 +01:00
|
|
|
out ->
|
|
|
|
out_state_change(Item#roster.subscription,
|
|
|
|
Item#roster.ask, Type);
|
|
|
|
in ->
|
|
|
|
in_state_change(Item#roster.subscription,
|
|
|
|
Item#roster.ask, Type)
|
2003-12-11 21:31:40 +01:00
|
|
|
end,
|
2004-01-18 21:42:09 +01:00
|
|
|
AutoReply = case Direction of
|
2013-03-14 10:33:02 +01:00
|
|
|
out -> none;
|
|
|
|
in ->
|
|
|
|
in_auto_reply(Item#roster.subscription,
|
|
|
|
Item#roster.ask, Type)
|
2004-01-18 21:42:09 +01:00
|
|
|
end,
|
2006-05-23 22:19:37 +02:00
|
|
|
AskMessage = case NewState of
|
2013-03-14 10:33:02 +01:00
|
|
|
{_, both} -> Reason;
|
|
|
|
{_, in} -> Reason;
|
|
|
|
_ -> <<"">>
|
2006-05-23 22:19:37 +02:00
|
|
|
end,
|
2003-12-11 21:31:40 +01:00
|
|
|
case NewState of
|
2013-03-14 10:33:02 +01:00
|
|
|
none -> {none, AutoReply};
|
|
|
|
{none, none}
|
|
|
|
when Item#roster.subscription == none,
|
|
|
|
Item#roster.ask == in ->
|
|
|
|
del_roster_t(LUser, LServer, LJID), {none, AutoReply};
|
|
|
|
{Subscription, Pending} ->
|
|
|
|
NewItem = Item#roster{subscription = Subscription,
|
|
|
|
ask = Pending,
|
2016-11-07 08:10:57 +01:00
|
|
|
askmessage = AskMessage},
|
2013-03-14 10:33:02 +01:00
|
|
|
roster_subscribe_t(LUser, LServer, LJID, NewItem),
|
|
|
|
case roster_version_on_db(LServer) of
|
|
|
|
true -> write_roster_version_t(LUser, LServer);
|
|
|
|
false -> ok
|
|
|
|
end,
|
|
|
|
{{push, NewItem}, AutoReply}
|
2002-12-20 21:42:08 +01:00
|
|
|
end
|
|
|
|
end,
|
2012-04-27 11:52:05 +02:00
|
|
|
case transaction(LServer, F) of
|
2013-03-14 10:33:02 +01:00
|
|
|
{atomic, {Push, AutoReply}} ->
|
|
|
|
case AutoReply of
|
|
|
|
none -> ok;
|
|
|
|
_ ->
|
2016-07-18 14:01:32 +02:00
|
|
|
ejabberd_router:route(jid:make(User, Server, <<"">>),
|
|
|
|
JID1, #presence{type = AutoReply})
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
|
|
|
case Push of
|
|
|
|
{push, Item} ->
|
|
|
|
if Item#roster.subscription == none,
|
|
|
|
Item#roster.ask == in ->
|
|
|
|
ok;
|
|
|
|
true ->
|
|
|
|
push_item(User, Server,
|
2015-11-24 16:44:13 +01:00
|
|
|
jid:make(User, Server, <<"">>), Item)
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
|
|
|
true;
|
|
|
|
none -> false
|
|
|
|
end;
|
|
|
|
_ -> false
|
2002-12-18 21:26:08 +01:00
|
|
|
end.
|
|
|
|
|
2003-12-11 21:31:40 +01:00
|
|
|
%% in_state_change(Subscription, Pending, Type) -> NewState
|
|
|
|
%% NewState = none | {NewSubscription, NewPending}
|
2005-12-11 20:48:31 +01:00
|
|
|
-ifdef(ROSTER_GATEWAY_WORKAROUND).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NNSD, {to, none}).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NISD, {to, in}).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-else.
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NNSD, none).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NISD, none).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-endif.
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
in_state_change(none, none, subscribe) -> {none, in};
|
|
|
|
in_state_change(none, none, subscribed) -> ?NNSD;
|
|
|
|
in_state_change(none, none, unsubscribe) -> none;
|
2003-12-11 21:31:40 +01:00
|
|
|
in_state_change(none, none, unsubscribed) -> none;
|
2013-03-14 10:33:02 +01:00
|
|
|
in_state_change(none, out, subscribe) -> {none, both};
|
|
|
|
in_state_change(none, out, subscribed) -> {to, none};
|
|
|
|
in_state_change(none, out, unsubscribe) -> none;
|
|
|
|
in_state_change(none, out, unsubscribed) ->
|
|
|
|
{none, none};
|
|
|
|
in_state_change(none, in, subscribe) -> none;
|
|
|
|
in_state_change(none, in, subscribed) -> ?NISD;
|
|
|
|
in_state_change(none, in, unsubscribe) -> {none, none};
|
|
|
|
in_state_change(none, in, unsubscribed) -> none;
|
|
|
|
in_state_change(none, both, subscribe) -> none;
|
|
|
|
in_state_change(none, both, subscribed) -> {to, in};
|
|
|
|
in_state_change(none, both, unsubscribe) -> {none, out};
|
2003-12-11 21:31:40 +01:00
|
|
|
in_state_change(none, both, unsubscribed) -> {none, in};
|
2013-03-14 10:33:02 +01:00
|
|
|
in_state_change(to, none, subscribe) -> {to, in};
|
|
|
|
in_state_change(to, none, subscribed) -> none;
|
|
|
|
in_state_change(to, none, unsubscribe) -> none;
|
|
|
|
in_state_change(to, none, unsubscribed) -> {none, none};
|
|
|
|
in_state_change(to, in, subscribe) -> none;
|
|
|
|
in_state_change(to, in, subscribed) -> none;
|
|
|
|
in_state_change(to, in, unsubscribe) -> {to, none};
|
|
|
|
in_state_change(to, in, unsubscribed) -> {none, in};
|
|
|
|
in_state_change(from, none, subscribe) -> none;
|
|
|
|
in_state_change(from, none, subscribed) -> {both, none};
|
|
|
|
in_state_change(from, none, unsubscribe) ->
|
|
|
|
{none, none};
|
2003-12-11 21:31:40 +01:00
|
|
|
in_state_change(from, none, unsubscribed) -> none;
|
2013-03-14 10:33:02 +01:00
|
|
|
in_state_change(from, out, subscribe) -> none;
|
|
|
|
in_state_change(from, out, subscribed) -> {both, none};
|
|
|
|
in_state_change(from, out, unsubscribe) -> {none, out};
|
|
|
|
in_state_change(from, out, unsubscribed) ->
|
|
|
|
{from, none};
|
|
|
|
in_state_change(both, none, subscribe) -> none;
|
|
|
|
in_state_change(both, none, subscribed) -> none;
|
|
|
|
in_state_change(both, none, unsubscribe) -> {to, none};
|
|
|
|
in_state_change(both, none, unsubscribed) ->
|
|
|
|
{from, none}.
|
|
|
|
|
|
|
|
out_state_change(none, none, subscribe) -> {none, out};
|
|
|
|
out_state_change(none, none, subscribed) -> none;
|
|
|
|
out_state_change(none, none, unsubscribe) -> none;
|
2003-12-11 21:31:40 +01:00
|
|
|
out_state_change(none, none, unsubscribed) -> none;
|
2013-03-14 10:33:02 +01:00
|
|
|
out_state_change(none, out, subscribe) ->
|
|
|
|
{none,
|
|
|
|
out}; %% We need to resend query (RFC3921, section 9.2)
|
|
|
|
out_state_change(none, out, subscribed) -> none;
|
|
|
|
out_state_change(none, out, unsubscribe) ->
|
|
|
|
{none, none};
|
|
|
|
out_state_change(none, out, unsubscribed) -> none;
|
|
|
|
out_state_change(none, in, subscribe) -> {none, both};
|
|
|
|
out_state_change(none, in, subscribed) -> {from, none};
|
|
|
|
out_state_change(none, in, unsubscribe) -> none;
|
|
|
|
out_state_change(none, in, unsubscribed) ->
|
|
|
|
{none, none};
|
|
|
|
out_state_change(none, both, subscribe) -> none;
|
|
|
|
out_state_change(none, both, subscribed) -> {from, out};
|
|
|
|
out_state_change(none, both, unsubscribe) -> {none, in};
|
|
|
|
out_state_change(none, both, unsubscribed) ->
|
|
|
|
{none, out};
|
|
|
|
out_state_change(to, none, subscribe) -> none;
|
|
|
|
out_state_change(to, none, subscribed) -> {both, none};
|
|
|
|
out_state_change(to, none, unsubscribe) -> {none, none};
|
|
|
|
out_state_change(to, none, unsubscribed) -> none;
|
|
|
|
out_state_change(to, in, subscribe) -> none;
|
|
|
|
out_state_change(to, in, subscribed) -> {both, none};
|
|
|
|
out_state_change(to, in, unsubscribe) -> {none, in};
|
|
|
|
out_state_change(to, in, unsubscribed) -> {to, none};
|
|
|
|
out_state_change(from, none, subscribe) -> {from, out};
|
|
|
|
out_state_change(from, none, subscribed) -> none;
|
|
|
|
out_state_change(from, none, unsubscribe) -> none;
|
|
|
|
out_state_change(from, none, unsubscribed) ->
|
|
|
|
{none, none};
|
|
|
|
out_state_change(from, out, subscribe) -> none;
|
|
|
|
out_state_change(from, out, subscribed) -> none;
|
|
|
|
out_state_change(from, out, unsubscribe) ->
|
|
|
|
{from, none};
|
|
|
|
out_state_change(from, out, unsubscribed) ->
|
|
|
|
{none, out};
|
|
|
|
out_state_change(both, none, subscribe) -> none;
|
|
|
|
out_state_change(both, none, subscribed) -> none;
|
|
|
|
out_state_change(both, none, unsubscribe) ->
|
|
|
|
{from, none};
|
|
|
|
out_state_change(both, none, unsubscribed) ->
|
|
|
|
{to, none}.
|
|
|
|
|
|
|
|
in_auto_reply(from, none, subscribe) -> subscribed;
|
|
|
|
in_auto_reply(from, out, subscribe) -> subscribed;
|
|
|
|
in_auto_reply(both, none, subscribe) -> subscribed;
|
|
|
|
in_auto_reply(none, in, unsubscribe) -> unsubscribed;
|
|
|
|
in_auto_reply(none, both, unsubscribe) -> unsubscribed;
|
|
|
|
in_auto_reply(to, in, unsubscribe) -> unsubscribed;
|
|
|
|
in_auto_reply(from, none, unsubscribe) -> unsubscribed;
|
|
|
|
in_auto_reply(from, out, unsubscribe) -> unsubscribed;
|
|
|
|
in_auto_reply(both, none, unsubscribe) -> unsubscribed;
|
|
|
|
in_auto_reply(_, _, _) -> none.
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2016-08-09 09:56:32 +02:00
|
|
|
-spec remove_user(binary(), binary()) -> ok.
|
2005-04-17 20:08:34 +02:00
|
|
|
remove_user(User, Server) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2012-11-06 16:58:08 +01:00
|
|
|
send_unsubscription_to_rosteritems(LUser, LServer),
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
2016-08-09 09:56:32 +02:00
|
|
|
Mod:remove_user(LUser, LServer),
|
|
|
|
ok.
|
2003-01-26 21:16:53 +01:00
|
|
|
|
2009-02-16 15:49:20 +01:00
|
|
|
%% For each contact with Subscription:
|
|
|
|
%% Both or From, send a "unsubscribed" presence stanza;
|
|
|
|
%% Both or To, send a "unsubscribe" presence stanza.
|
|
|
|
send_unsubscription_to_rosteritems(LUser, LServer) ->
|
|
|
|
RosterItems = get_user_roster([], {LUser, LServer}),
|
2015-11-24 16:44:13 +01:00
|
|
|
From = jid:make({LUser, LServer, <<"">>}),
|
2013-03-14 10:33:02 +01:00
|
|
|
lists:foreach(fun (RosterItem) ->
|
2009-02-16 15:49:20 +01:00
|
|
|
send_unsubscribing_presence(From, RosterItem)
|
|
|
|
end,
|
|
|
|
RosterItems).
|
|
|
|
|
|
|
|
send_unsubscribing_presence(From, Item) ->
|
|
|
|
IsTo = case Item#roster.subscription of
|
2013-03-14 10:33:02 +01:00
|
|
|
both -> true;
|
|
|
|
to -> true;
|
|
|
|
_ -> false
|
2009-02-16 15:49:20 +01:00
|
|
|
end,
|
|
|
|
IsFrom = case Item#roster.subscription of
|
2013-03-14 10:33:02 +01:00
|
|
|
both -> true;
|
|
|
|
from -> true;
|
|
|
|
_ -> false
|
2009-02-16 15:49:20 +01:00
|
|
|
end,
|
|
|
|
if IsTo ->
|
2016-07-18 14:01:32 +02:00
|
|
|
ejabberd_router:route(jid:remove_resource(From),
|
|
|
|
jid:make(Item#roster.jid),
|
|
|
|
#presence{type = unsubscribe});
|
2009-02-16 15:49:20 +01:00
|
|
|
true -> ok
|
|
|
|
end,
|
|
|
|
if IsFrom ->
|
2016-07-18 14:01:32 +02:00
|
|
|
ejabberd_router:route(jid:remove_resource(From),
|
|
|
|
jid:make(Item#roster.jid),
|
|
|
|
#presence{type = unsubscribed});
|
2009-02-16 15:49:20 +01:00
|
|
|
true -> ok
|
|
|
|
end,
|
|
|
|
ok.
|
|
|
|
|
2003-02-02 20:49:19 +01:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2016-08-04 12:37:07 +02:00
|
|
|
-spec set_items(binary(), binary(), roster_query()) -> any().
|
|
|
|
set_items(User, Server, #roster_query{items = Items}) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2013-03-14 10:33:02 +01:00
|
|
|
F = fun () ->
|
2016-08-04 12:37:07 +02:00
|
|
|
lists:foreach(fun (Item) ->
|
|
|
|
process_item_set_t(LUser, LServer, Item)
|
|
|
|
end, Items)
|
2013-03-14 10:33:02 +01:00
|
|
|
end,
|
2012-04-27 11:52:05 +02:00
|
|
|
transaction(LServer, F).
|
|
|
|
|
|
|
|
update_roster_t(LUser, LServer, LJID, Item) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:update_roster(LUser, LServer, LJID, Item).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
del_roster_t(LUser, LServer, LJID) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:del_roster(LUser, LServer, LJID).
|
2003-02-02 20:49:19 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
process_item_set_t(LUser, LServer, #roster_item{jid = JID1} = QueryItem) ->
|
2016-11-07 08:10:57 +01:00
|
|
|
JID = {JID1#jid.user, JID1#jid.server, <<>>},
|
|
|
|
LJID = {JID1#jid.luser, JID1#jid.lserver, <<>>},
|
2016-07-18 14:01:32 +02:00
|
|
|
Item = #roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = JID},
|
|
|
|
Item2 = decode_item(QueryItem, Item, _Managed = true),
|
|
|
|
case Item2#roster.subscription of
|
|
|
|
remove -> del_roster_t(LUser, LServer, LJID);
|
|
|
|
_ -> update_roster_t(LUser, LServer, LJID, Item2)
|
2003-02-20 18:12:03 +01:00
|
|
|
end;
|
2013-03-14 10:33:02 +01:00
|
|
|
process_item_set_t(_LUser, _LServer, _) -> ok.
|
2003-02-02 20:49:19 +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) ->
|
|
|
|
Acc;
|
|
|
|
c2s_self_presence({#presence{type = available} = Pkt,
|
|
|
|
#{lserver := LServer} = State}) ->
|
|
|
|
Prio = get_priority_from_presence(Pkt),
|
|
|
|
if Prio >= 0 ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
2017-01-09 15:02:17 +01:00
|
|
|
State1 = resend_pending_subscriptions(State, Mod),
|
|
|
|
{Pkt, State1};
|
|
|
|
true ->
|
|
|
|
{Pkt, State}
|
|
|
|
end;
|
|
|
|
c2s_self_presence(Acc) ->
|
|
|
|
Acc.
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec resend_pending_subscriptions(ejabberd_c2s:state(), module()) -> ejabberd_c2s:state().
|
|
|
|
resend_pending_subscriptions(#{jid := JID} = State, Mod) ->
|
|
|
|
BareJID = jid:remove_resource(JID),
|
2016-04-14 09:58:32 +02:00
|
|
|
Result = Mod:get_only_items(JID#jid.luser, JID#jid.lserver),
|
2017-01-09 15:02:17 +01:00
|
|
|
lists:foldl(
|
|
|
|
fun(#roster{ask = Ask} = R, AccState) when Ask == in; Ask == both ->
|
2016-07-18 14:01:32 +02:00
|
|
|
Message = R#roster.askmessage,
|
|
|
|
Status = if is_binary(Message) -> (Message);
|
|
|
|
true -> <<"">>
|
|
|
|
end,
|
2017-01-09 15:02:17 +01:00
|
|
|
Sub = #presence{from = R#roster.jid, to = BareJID,
|
2016-07-18 14:01:32 +02:00
|
|
|
type = subscribe,
|
2017-01-09 15:02:17 +01:00
|
|
|
status = xmpp:mk_text(Status)},
|
|
|
|
ejabberd_c2s:send(AccState, Sub);
|
|
|
|
(_, AccState) ->
|
|
|
|
AccState
|
|
|
|
end, State, Result).
|
|
|
|
|
|
|
|
-spec get_priority_from_presence(presence()) -> integer().
|
|
|
|
get_priority_from_presence(#presence{priority = Prio}) ->
|
|
|
|
case Prio of
|
|
|
|
undefined -> 0;
|
|
|
|
_ -> Prio
|
|
|
|
end.
|
2006-05-23 22:19:37 +02:00
|
|
|
|
2003-08-03 21:09:40 +02:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
read_subscription_and_groups(User, Server, LJID) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(LServer, ?MODULE),
|
|
|
|
Mod:read_subscription_and_groups(LUser, LServer, LJID).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2016-08-12 12:17:42 +02:00
|
|
|
-spec get_jid_info({subscription(), [binary()]}, binary(), binary(), jid())
|
|
|
|
-> {subscription(), [binary()]}.
|
2012-04-27 11:52:05 +02:00
|
|
|
get_jid_info(_, User, Server, JID) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LJID = jid:tolower(JID),
|
2012-04-27 11:52:05 +02:00
|
|
|
case read_subscription_and_groups(User, Server, LJID) of
|
2013-03-14 10:33:02 +01:00
|
|
|
{Subscription, Groups} -> {Subscription, Groups};
|
|
|
|
error ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LRJID = jid:tolower(jid:remove_resource(JID)),
|
2013-03-14 10:33:02 +01:00
|
|
|
if LRJID == LJID -> {none, []};
|
|
|
|
true ->
|
|
|
|
case read_subscription_and_groups(User, Server, LRJID)
|
|
|
|
of
|
|
|
|
{Subscription, Groups} -> {Subscription, Groups};
|
|
|
|
error -> {none, []}
|
|
|
|
end
|
|
|
|
end
|
2003-08-03 21:09:40 +02:00
|
|
|
end.
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2007-08-24 18:15:05 +02:00
|
|
|
webadmin_page(_, Host,
|
2013-03-14 10:33:02 +01:00
|
|
|
#request{us = _US, path = [<<"user">>, U, <<"roster">>],
|
|
|
|
q = Query, lang = Lang} =
|
|
|
|
_Request) ->
|
|
|
|
Res = user_roster(U, Host, Query, Lang), {stop, Res};
|
2007-08-24 18:15:05 +02:00
|
|
|
webadmin_page(Acc, _, _) -> Acc.
|
|
|
|
|
|
|
|
user_roster(User, Server, Query, Lang) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
LUser = jid:nodeprep(User),
|
|
|
|
LServer = jid:nameprep(Server),
|
2012-04-27 11:52:05 +02:00
|
|
|
US = {LUser, LServer},
|
|
|
|
Items1 = get_roster(LUser, LServer),
|
2013-03-14 10:33:02 +01:00
|
|
|
Res = user_roster_parse_query(User, Server, Items1,
|
|
|
|
Query),
|
2012-04-27 11:52:05 +02:00
|
|
|
Items = get_roster(LUser, LServer),
|
2007-08-24 18:15:05 +02:00
|
|
|
SItems = lists:sort(Items),
|
2013-03-14 10:33:02 +01:00
|
|
|
FItems = case SItems of
|
|
|
|
[] -> [?CT(<<"None">>)];
|
|
|
|
_ ->
|
|
|
|
[?XE(<<"table">>,
|
|
|
|
[?XE(<<"thead">>,
|
|
|
|
[?XE(<<"tr">>,
|
|
|
|
[?XCT(<<"td">>, <<"Jabber ID">>),
|
|
|
|
?XCT(<<"td">>, <<"Nickname">>),
|
|
|
|
?XCT(<<"td">>, <<"Subscription">>),
|
|
|
|
?XCT(<<"td">>, <<"Pending">>),
|
|
|
|
?XCT(<<"td">>, <<"Groups">>)])]),
|
|
|
|
?XE(<<"tbody">>,
|
|
|
|
(lists:map(fun (R) ->
|
|
|
|
Groups = lists:flatmap(fun
|
|
|
|
(Group) ->
|
|
|
|
[?C(Group),
|
|
|
|
?BR]
|
|
|
|
end,
|
|
|
|
R#roster.groups),
|
|
|
|
Pending =
|
|
|
|
ask_to_pending(R#roster.ask),
|
|
|
|
TDJID =
|
|
|
|
build_contact_jid_td(R#roster.jid),
|
|
|
|
?XE(<<"tr">>,
|
|
|
|
[TDJID,
|
|
|
|
?XAC(<<"td">>,
|
|
|
|
[{<<"class">>,
|
|
|
|
<<"valign">>}],
|
|
|
|
(R#roster.name)),
|
|
|
|
?XAC(<<"td">>,
|
|
|
|
[{<<"class">>,
|
|
|
|
<<"valign">>}],
|
|
|
|
(iolist_to_binary(atom_to_list(R#roster.subscription)))),
|
|
|
|
?XAC(<<"td">>,
|
|
|
|
[{<<"class">>,
|
|
|
|
<<"valign">>}],
|
|
|
|
(iolist_to_binary(atom_to_list(Pending)))),
|
|
|
|
?XAE(<<"td">>,
|
|
|
|
[{<<"class">>,
|
|
|
|
<<"valign">>}],
|
|
|
|
Groups),
|
|
|
|
if Pending == in ->
|
|
|
|
?XAE(<<"td">>,
|
|
|
|
[{<<"class">>,
|
|
|
|
<<"valign">>}],
|
|
|
|
[?INPUTT(<<"submit">>,
|
|
|
|
<<"validate",
|
|
|
|
(ejabberd_web_admin:term_to_id(R#roster.jid))/binary>>,
|
|
|
|
<<"Validate">>)]);
|
|
|
|
true -> ?X(<<"td">>)
|
|
|
|
end,
|
|
|
|
?XAE(<<"td">>,
|
|
|
|
[{<<"class">>,
|
|
|
|
<<"valign">>}],
|
|
|
|
[?INPUTT(<<"submit">>,
|
|
|
|
<<"remove",
|
|
|
|
(ejabberd_web_admin:term_to_id(R#roster.jid))/binary>>,
|
|
|
|
<<"Remove">>)])])
|
|
|
|
end,
|
|
|
|
SItems)))])]
|
|
|
|
end,
|
|
|
|
[?XC(<<"h1">>,
|
|
|
|
(<<(?T(<<"Roster of ">>))/binary, (us_to_list(US))/binary>>))]
|
|
|
|
++
|
|
|
|
case Res of
|
|
|
|
ok -> [?XREST(<<"Submitted">>)];
|
|
|
|
error -> [?XREST(<<"Bad format">>)];
|
|
|
|
nothing -> []
|
|
|
|
end
|
|
|
|
++
|
|
|
|
[?XAE(<<"form">>,
|
|
|
|
[{<<"action">>, <<"">>}, {<<"method">>, <<"post">>}],
|
|
|
|
(FItems ++
|
|
|
|
[?P, ?INPUT(<<"text">>, <<"newjid">>, <<"">>),
|
|
|
|
?C(<<" ">>),
|
|
|
|
?INPUTT(<<"submit">>, <<"addjid">>,
|
|
|
|
<<"Add Jabber ID">>)]))].
|
2007-08-24 18:15:05 +02:00
|
|
|
|
2009-01-07 02:38:45 +01:00
|
|
|
build_contact_jid_td(RosterJID) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
ContactJID = jid:make(RosterJID),
|
2013-03-14 10:33:02 +01:00
|
|
|
JIDURI = case {ContactJID#jid.luser,
|
|
|
|
ContactJID#jid.lserver}
|
|
|
|
of
|
|
|
|
{<<"">>, _} -> <<"">>;
|
|
|
|
{CUser, CServer} ->
|
|
|
|
case lists:member(CServer, ?MYHOSTS) of
|
|
|
|
false -> <<"">>;
|
|
|
|
true ->
|
|
|
|
<<"/admin/server/", CServer/binary, "/user/",
|
|
|
|
CUser/binary, "/">>
|
|
|
|
end
|
2009-01-07 02:38:45 +01:00
|
|
|
end,
|
|
|
|
case JIDURI of
|
2013-03-14 10:33:02 +01:00
|
|
|
<<>> ->
|
|
|
|
?XAC(<<"td">>, [{<<"class">>, <<"valign">>}],
|
2015-11-24 16:44:13 +01:00
|
|
|
(jid:to_string(RosterJID)));
|
2013-03-14 10:33:02 +01:00
|
|
|
URI when is_binary(URI) ->
|
|
|
|
?XAE(<<"td">>, [{<<"class">>, <<"valign">>}],
|
2015-11-24 16:44:13 +01:00
|
|
|
[?AC(JIDURI, (jid:to_string(RosterJID)))])
|
2009-01-07 02:38:45 +01:00
|
|
|
end.
|
|
|
|
|
2007-08-24 18:15:05 +02:00
|
|
|
user_roster_parse_query(User, Server, Items, Query) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case lists:keysearch(<<"addjid">>, 1, Query) of
|
|
|
|
{value, _} ->
|
|
|
|
case lists:keysearch(<<"newjid">>, 1, Query) of
|
|
|
|
{value, {_, SJID}} ->
|
2015-11-24 16:44:13 +01:00
|
|
|
case jid:from_string(SJID) of
|
2013-03-14 10:33:02 +01:00
|
|
|
JID when is_record(JID, jid) ->
|
|
|
|
user_roster_subscribe_jid(User, Server, JID), ok;
|
|
|
|
error -> error
|
|
|
|
end;
|
|
|
|
false -> error
|
|
|
|
end;
|
|
|
|
false ->
|
|
|
|
case catch user_roster_item_parse_query(User, Server,
|
|
|
|
Items, Query)
|
|
|
|
of
|
|
|
|
submitted -> ok;
|
|
|
|
{'EXIT', _Reason} -> error;
|
|
|
|
_ -> nothing
|
|
|
|
end
|
2007-08-24 18:15:05 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
user_roster_subscribe_jid(User, Server, JID) ->
|
|
|
|
out_subscription(User, Server, JID, subscribe),
|
2015-11-24 16:44:13 +01:00
|
|
|
UJID = jid:make(User, Server, <<"">>),
|
2016-07-18 14:01:32 +02:00
|
|
|
ejabberd_router:route(UJID, JID, #presence{type = subscribe}).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
|
|
|
user_roster_item_parse_query(User, Server, Items,
|
|
|
|
Query) ->
|
|
|
|
lists:foreach(fun (R) ->
|
|
|
|
JID = R#roster.jid,
|
|
|
|
case lists:keysearch(<<"validate",
|
|
|
|
(ejabberd_web_admin:term_to_id(JID))/binary>>,
|
|
|
|
1, Query)
|
|
|
|
of
|
|
|
|
{value, _} ->
|
2015-11-24 16:44:13 +01:00
|
|
|
JID1 = jid:make(JID),
|
2013-03-14 10:33:02 +01:00
|
|
|
out_subscription(User, Server, JID1,
|
|
|
|
subscribed),
|
2015-11-24 16:44:13 +01:00
|
|
|
UJID = jid:make(User, Server, <<"">>),
|
2013-03-14 10:33:02 +01:00
|
|
|
ejabberd_router:route(UJID, JID1,
|
2016-07-18 14:01:32 +02:00
|
|
|
#presence{type = subscribed}),
|
2013-03-14 10:33:02 +01:00
|
|
|
throw(submitted);
|
|
|
|
false ->
|
|
|
|
case lists:keysearch(<<"remove",
|
|
|
|
(ejabberd_web_admin:term_to_id(JID))/binary>>,
|
|
|
|
1, Query)
|
|
|
|
of
|
|
|
|
{value, _} ->
|
2016-07-18 14:01:32 +02:00
|
|
|
UJID = jid:make(User, Server),
|
|
|
|
RosterItem = #roster_item{
|
|
|
|
jid = jid:make(JID),
|
|
|
|
subscription = remove},
|
|
|
|
process_iq_set(
|
|
|
|
#iq{type = set,
|
|
|
|
from = UJID,
|
|
|
|
to = UJID,
|
|
|
|
id = randoms:get_string(),
|
|
|
|
sub_els = [#roster_query{
|
|
|
|
items = [RosterItem]}]}),
|
2013-03-14 10:33:02 +01:00
|
|
|
throw(submitted);
|
|
|
|
false -> ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Items),
|
2007-08-24 18:15:05 +02:00
|
|
|
nothing.
|
|
|
|
|
|
|
|
us_to_list({User, Server}) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
jid:to_string({User, Server, <<"">>}).
|
2007-08-24 18:15:05 +02:00
|
|
|
|
|
|
|
webadmin_user(Acc, _User, _Server, Lang) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
Acc ++
|
|
|
|
[?XE(<<"h3">>, [?ACT(<<"roster/">>, <<"Roster">>)])].
|
|
|
|
|
2014-02-26 18:01:47 +01:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
2016-11-07 08:10:57 +01:00
|
|
|
has_duplicated_groups(Groups) ->
|
|
|
|
GroupsPrep = lists:usort([jid:resourceprep(G) || G <- Groups]),
|
|
|
|
not (length(GroupsPrep) == length(Groups)).
|
|
|
|
|
2016-04-14 09:58:32 +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() ->
|
|
|
|
[{<<"roster_version">>, 2},
|
|
|
|
{<<"rostergroups">>, 3},
|
|
|
|
{<<"rosterusers">>, 10}].
|
|
|
|
|
|
|
|
import_start(LServer, DBType) ->
|
|
|
|
Mod = gen_mod:db_mod(DBType, ?MODULE),
|
|
|
|
ets:new(rostergroups_tmp, [private, named_table, bag]),
|
|
|
|
Mod:init(LServer, []),
|
|
|
|
ok.
|
2016-04-14 09:58:32 +02:00
|
|
|
|
2016-11-22 14:48:01 +01:00
|
|
|
import_stop(_LServer, _DBType) ->
|
|
|
|
ets:delete(rostergroups_tmp),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
import(LServer, {sql, _}, _DBType, <<"rostergroups">>, [LUser, SJID, Group]) ->
|
|
|
|
LJID = jid:tolower(jid:from_string(SJID)),
|
|
|
|
ets:insert(rostergroups_tmp, {{LUser, LServer, LJID}, Group}),
|
|
|
|
ok;
|
|
|
|
import(LServer, {sql, _}, DBType, <<"rosterusers">>, Row) ->
|
|
|
|
I = mod_roster_sql:raw_to_record(LServer, lists:sublist(Row, 9)),
|
|
|
|
Groups = [G || {_, G} <- ets:lookup(rostergroups_tmp, I#roster.usj)],
|
|
|
|
RosterItem = I#roster{groups = Groups},
|
|
|
|
Mod = gen_mod:db_mod(DBType, ?MODULE),
|
|
|
|
Mod:import(LServer, <<"rosterusers">>, RosterItem);
|
|
|
|
import(LServer, {sql, _}, DBType, <<"roster_version">>, [LUser, Ver]) ->
|
2016-04-14 09:58:32 +02:00
|
|
|
Mod = gen_mod:db_mod(DBType, ?MODULE),
|
2016-11-22 14:48:01 +01:00
|
|
|
Mod:import(LServer, <<"roster_version">>, [LUser, Ver]).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
|
|
|
mod_opt_type(access) ->
|
2016-06-21 13:18:24 +02:00
|
|
|
fun acl:access_rules_validator/1;
|
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(iqdisc) -> fun gen_iq_handler:check_type/1;
|
|
|
|
mod_opt_type(managers) ->
|
|
|
|
fun (B) when is_list(B) -> B end;
|
|
|
|
mod_opt_type(store_current_id) ->
|
|
|
|
fun (B) when is_boolean(B) -> B end;
|
|
|
|
mod_opt_type(versioning) ->
|
|
|
|
fun (B) when is_boolean(B) -> B end;
|
|
|
|
mod_opt_type(_) ->
|
|
|
|
[access, db_type, iqdisc, managers, store_current_id,
|
|
|
|
versioning].
|