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>
|
|
|
|
%%%
|
|
|
|
%%%
|
2012-02-23 16:52:34 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2012 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
|
|
|
%%%
|
2007-12-24 13:58:05 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License
|
|
|
|
%%% along with this program; if not, write to the Free Software
|
|
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
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).
|
2012-09-11 15:45:59 +02:00
|
|
|
|
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
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
-export([start/2, stop/1, process_iq/3, export/1,
|
|
|
|
process_local_iq/3, get_user_roster/2,
|
|
|
|
get_subscription_lists/3, get_roster/2,
|
|
|
|
get_in_pending_subscriptions/3, in_subscription/6,
|
|
|
|
out_subscription/4, set_items/3, remove_user/2,
|
|
|
|
get_jid_info/4, item_to_xml/1, webadmin_page/3,
|
|
|
|
webadmin_user/4, get_versioning_feature/2,
|
|
|
|
roster_versioning_enabled/1, roster_version/2,
|
|
|
|
record_to_string/1, groups_to_string/1]).
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2002-12-13 21:58:27 +01:00
|
|
|
-include("ejabberd.hrl").
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2003-03-09 21:46:47 +01:00
|
|
|
-include("jlib.hrl").
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
-include("mod_roster.hrl").
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2008-07-16 18:58:42 +02:00
|
|
|
-include("web/ejabberd_http.hrl").
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2008-07-16 18:58:42 +02:00
|
|
|
-include("web/ejabberd_web_admin.hrl").
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
-export_type([subscription/0]).
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
start(Host, Opts) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, fun gen_iq_handler:check_type/1,
|
|
|
|
one_queue),
|
2012-04-27 11:52:05 +02:00
|
|
|
case gen_mod:db_type(Opts) of
|
2012-09-11 15:45:59 +02:00
|
|
|
mnesia ->
|
|
|
|
mnesia:create_table(roster,
|
|
|
|
[{disc_copies, [node()]},
|
|
|
|
{attributes, record_info(fields, roster)}]),
|
|
|
|
mnesia:create_table(roster_version,
|
|
|
|
[{disc_copies, [node()]},
|
|
|
|
{attributes,
|
|
|
|
record_info(fields, roster_version)}]),
|
|
|
|
update_tables(),
|
|
|
|
mnesia:add_table_index(roster, us),
|
|
|
|
mnesia:add_table_index(roster_version, us);
|
|
|
|
_ -> ok
|
2012-04-27 11:52:05 +02:00
|
|
|
end,
|
2012-09-11 15:45:59 +02: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),
|
2005-06-20 05:18:13 +02:00
|
|
|
ejabberd_hooks:add(roster_get_subscription_lists, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, get_subscription_lists, 50),
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_hooks:add(roster_get_jid_info, Host, ?MODULE,
|
|
|
|
get_jid_info, 50),
|
|
|
|
ejabberd_hooks:add(remove_user, Host, ?MODULE,
|
|
|
|
remove_user, 50),
|
|
|
|
ejabberd_hooks:add(anonymous_purge_hook, Host, ?MODULE,
|
|
|
|
remove_user, 50),
|
|
|
|
ejabberd_hooks:add(resend_subscription_requests_hook,
|
|
|
|
Host, ?MODULE, get_in_pending_subscriptions, 50),
|
2009-08-06 23:06:16 +02:00
|
|
|
ejabberd_hooks:add(roster_get_versioning_feature, Host,
|
|
|
|
?MODULE, get_versioning_feature, 50),
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_hooks:add(webadmin_page_host, Host, ?MODULE,
|
|
|
|
webadmin_page, 50),
|
|
|
|
ejabberd_hooks:add(webadmin_user, Host, ?MODULE,
|
|
|
|
webadmin_user, 50),
|
|
|
|
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) ->
|
2012-09-11 15:45:59 +02: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),
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_hooks:delete(roster_get_subscription_lists,
|
|
|
|
Host, ?MODULE, get_subscription_lists, 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),
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_hooks:delete(remove_user, Host, ?MODULE,
|
|
|
|
remove_user, 50),
|
2007-05-12 18:28:34 +02:00
|
|
|
ejabberd_hooks:delete(anonymous_purge_hook, Host,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, remove_user, 50),
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_hooks:delete(resend_subscription_requests_hook,
|
|
|
|
Host, ?MODULE, get_in_pending_subscriptions, 50),
|
|
|
|
ejabberd_hooks:delete(roster_get_versioning_feature,
|
|
|
|
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),
|
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, Host,
|
|
|
|
?NS_ROSTER).
|
2004-07-10 00:34:26 +02:00
|
|
|
|
2002-12-13 21:58:27 +01:00
|
|
|
process_iq(From, To, IQ) ->
|
2003-12-17 21:13:21 +01:00
|
|
|
#iq{sub_el = SubEl} = IQ,
|
2003-10-07 22:31:44 +02:00
|
|
|
#jid{lserver = LServer} = From,
|
2005-04-17 20:08:34 +02:00
|
|
|
case lists:member(LServer, ?MYHOSTS) of
|
2012-09-11 15:45:59 +02:00
|
|
|
true -> process_local_iq(From, To, IQ);
|
|
|
|
_ ->
|
|
|
|
IQ#iq{type = error,
|
|
|
|
sub_el = [SubEl, ?ERR_ITEM_NOT_FOUND]}
|
2002-12-11 21:57:45 +01:00
|
|
|
end.
|
|
|
|
|
2003-12-17 21:13:21 +01:00
|
|
|
process_local_iq(From, To, #iq{type = Type} = IQ) ->
|
2003-07-21 22:01:22 +02:00
|
|
|
case Type of
|
2012-09-11 15:45:59 +02:00
|
|
|
set -> process_iq_set(From, To, IQ);
|
|
|
|
get -> process_iq_get(From, To, IQ)
|
2003-07-21 22:01:22 +02:00
|
|
|
end.
|
|
|
|
|
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) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
sha:sha(term_to_binary(lists:sort([R#roster{groups =
|
|
|
|
lists:sort(Grs)}
|
|
|
|
|| R = #roster{groups = Grs}
|
|
|
|
<- Items]))).
|
|
|
|
|
2009-08-06 23:06:16 +02:00
|
|
|
roster_versioning_enabled(Host) ->
|
2012-09-11 15:45:59 +02: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) ->
|
2012-09-11 15:45:59 +02: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
|
|
|
|
|
|
|
get_versioning_feature(Acc, Host) ->
|
|
|
|
case roster_versioning_enabled(Host) of
|
2012-09-11 15:45:59 +02:00
|
|
|
true ->
|
|
|
|
Feature = #xmlel{name = <<"ver">>,
|
|
|
|
attrs = [{<<"xmlns">>, ?NS_ROSTER_VER}],
|
|
|
|
children = []},
|
|
|
|
[Feature | Acc];
|
|
|
|
false -> []
|
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
|
2012-09-11 15:45:59 +02: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) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
read_roster_version(LUser, LServer,
|
|
|
|
gen_mod:db_type(LServer, ?MODULE)).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
read_roster_version(LUser, LServer, mnesia) ->
|
|
|
|
US = {LUser, LServer},
|
|
|
|
case mnesia:dirty_read(roster_version, US) of
|
2012-09-11 15:45:59 +02:00
|
|
|
[#roster_version{version = V}] -> V;
|
|
|
|
[] -> error
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
|
|
|
read_roster_version(LServer, LUser, odbc) ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2012-09-11 15:45:59 +02:00
|
|
|
case odbc_queries:get_roster_version(LServer, Username)
|
|
|
|
of
|
|
|
|
{selected, [<<"version">>], [[Version]]} -> Version;
|
|
|
|
{selected, [<<"version">>], []} -> error
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
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) ->
|
|
|
|
Ver = sha:sha(term_to_binary(now())),
|
|
|
|
write_roster_version(LUser, LServer, InTransaction, Ver,
|
2012-09-11 15:45:59 +02:00
|
|
|
gen_mod:db_type(LServer, ?MODULE)),
|
2012-04-27 11:52:05 +02:00
|
|
|
Ver.
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
write_roster_version(LUser, LServer, InTransaction, Ver,
|
|
|
|
mnesia) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
US = {LUser, LServer},
|
|
|
|
if InTransaction ->
|
2012-09-11 15:45:59 +02:00
|
|
|
mnesia:write(#roster_version{us = US, version = Ver});
|
2012-04-27 11:52:05 +02:00
|
|
|
true ->
|
2012-09-11 15:45:59 +02:00
|
|
|
mnesia:dirty_write(#roster_version{us = US,
|
|
|
|
version = Ver})
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
write_roster_version(LUser, LServer, InTransaction, Ver,
|
|
|
|
odbc) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
EVer = ejabberd_odbc:escape(Ver),
|
|
|
|
if InTransaction ->
|
2012-09-11 15:45:59 +02:00
|
|
|
odbc_queries:set_roster_version(Username, EVer);
|
2012-04-27 11:52:05 +02:00
|
|
|
true ->
|
2012-09-11 15:45:59 +02:00
|
|
|
odbc_queries:sql_transaction(LServer,
|
|
|
|
fun () ->
|
|
|
|
odbc_queries:set_roster_version(Username,
|
|
|
|
EVer)
|
|
|
|
end)
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
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
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
process_iq_get(From, To, #iq{sub_el = SubEl} = IQ) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
LUser = From#jid.luser,
|
|
|
|
LServer = From#jid.lserver,
|
|
|
|
US = {LUser, LServer},
|
2012-09-11 15:45:59 +02:00
|
|
|
try {ItemsToSend, VersionToSend} = case
|
|
|
|
{xml:get_tag_attr(<<"ver">>, SubEl),
|
|
|
|
roster_versioning_enabled(LServer),
|
|
|
|
roster_version_on_db(LServer)}
|
|
|
|
of
|
|
|
|
{{value, RequestedVersion}, true,
|
|
|
|
true} ->
|
|
|
|
case read_roster_version(LUser,
|
|
|
|
LServer)
|
|
|
|
of
|
|
|
|
error ->
|
|
|
|
RosterVersion =
|
|
|
|
write_roster_version(LUser,
|
|
|
|
LServer),
|
|
|
|
{lists:map(fun item_to_xml/1,
|
|
|
|
ejabberd_hooks:run_fold(roster_get,
|
|
|
|
To#jid.lserver,
|
|
|
|
[],
|
|
|
|
[US])),
|
|
|
|
RosterVersion};
|
|
|
|
RequestedVersion ->
|
|
|
|
{false, false};
|
|
|
|
NewVersion ->
|
|
|
|
{lists:map(fun item_to_xml/1,
|
|
|
|
ejabberd_hooks:run_fold(roster_get,
|
|
|
|
To#jid.lserver,
|
|
|
|
[],
|
|
|
|
[US])),
|
|
|
|
NewVersion}
|
|
|
|
end;
|
|
|
|
{{value, RequestedVersion}, true,
|
|
|
|
false} ->
|
|
|
|
RosterItems =
|
|
|
|
ejabberd_hooks:run_fold(roster_get,
|
|
|
|
To#jid.lserver,
|
|
|
|
[],
|
|
|
|
[US]),
|
|
|
|
case roster_hash(RosterItems) of
|
|
|
|
RequestedVersion ->
|
|
|
|
{false, false};
|
|
|
|
New ->
|
|
|
|
{lists:map(fun item_to_xml/1,
|
|
|
|
RosterItems),
|
|
|
|
New}
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
{lists:map(fun item_to_xml/1,
|
|
|
|
ejabberd_hooks:run_fold(roster_get,
|
|
|
|
To#jid.lserver,
|
|
|
|
[],
|
|
|
|
[US])),
|
|
|
|
false}
|
|
|
|
end,
|
|
|
|
IQ#iq{type = result,
|
|
|
|
sub_el =
|
|
|
|
case {ItemsToSend, VersionToSend} of
|
|
|
|
{false, false} -> [];
|
|
|
|
{Items, false} ->
|
|
|
|
[#xmlel{name = <<"query">>,
|
|
|
|
attrs = [{<<"xmlns">>, ?NS_ROSTER}],
|
|
|
|
children = Items}];
|
|
|
|
{Items, Version} ->
|
|
|
|
[#xmlel{name = <<"query">>,
|
|
|
|
attrs =
|
|
|
|
[{<<"xmlns">>, ?NS_ROSTER},
|
|
|
|
{<<"ver">>, Version}],
|
|
|
|
children = Items}]
|
|
|
|
end}
|
2012-04-27 11:52:05 +02:00
|
|
|
catch
|
2012-09-11 15:45:59 +02:00
|
|
|
_:_ ->
|
|
|
|
IQ#iq{type = error,
|
|
|
|
sub_el = [SubEl, ?ERR_INTERNAL_SERVER_ERROR]}
|
2002-12-13 21:58:27 +01:00
|
|
|
end.
|
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
get_user_roster(Acc, {LUser, LServer}) ->
|
|
|
|
Items = get_roster(LUser, LServer),
|
2012-09-11 15:45:59 +02: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) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
get_roster(LUser, LServer,
|
|
|
|
gen_mod:db_type(LServer, ?MODULE)).
|
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
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
get_roster(LUser, LServer, mnesia) ->
|
|
|
|
US = {LUser, LServer},
|
2012-09-11 15:45:59 +02:00
|
|
|
case catch mnesia:dirty_index_read(roster, US,
|
|
|
|
#roster.us)
|
|
|
|
of
|
|
|
|
Items when is_list(Items)-> Items;
|
|
|
|
_ -> []
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
|
|
|
get_roster(LUser, LServer, odbc) ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
case catch odbc_queries:get_roster(LServer, Username) of
|
2012-09-11 15:45:59 +02:00
|
|
|
{selected,
|
|
|
|
[<<"username">>, <<"jid">>, <<"nick">>,
|
|
|
|
<<"subscription">>, <<"ask">>, <<"askmessage">>,
|
|
|
|
<<"server">>, <<"subscribe">>, <<"type">>],
|
|
|
|
Items}
|
|
|
|
when is_list(Items) ->
|
|
|
|
JIDGroups = case catch
|
|
|
|
odbc_queries:get_roster_jid_groups(LServer,
|
|
|
|
Username)
|
|
|
|
of
|
|
|
|
{selected, [<<"jid">>, <<"grp">>], JGrps}
|
2012-04-27 11:52:05 +02:00
|
|
|
when is_list(JGrps) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
JGrps;
|
|
|
|
_ -> []
|
|
|
|
end,
|
|
|
|
GroupsDict = lists:foldl(fun ([J, G], Acc) ->
|
|
|
|
dict:append(J, G, Acc)
|
|
|
|
end,
|
|
|
|
dict:new(), JIDGroups),
|
|
|
|
RItems = lists:flatmap(fun (I) ->
|
|
|
|
case raw_to_record(LServer, I) of
|
|
|
|
%% Bad JID in database:
|
|
|
|
error -> [];
|
|
|
|
R ->
|
|
|
|
SJID =
|
|
|
|
jlib:jid_to_string(R#roster.jid),
|
|
|
|
Groups = case dict:find(SJID,
|
|
|
|
GroupsDict)
|
|
|
|
of
|
|
|
|
{ok, Gs} -> Gs;
|
|
|
|
error -> []
|
|
|
|
end,
|
|
|
|
[R#roster{groups = Groups}]
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Items),
|
|
|
|
RItems;
|
|
|
|
_ -> []
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
|
|
|
|
2002-12-13 21:58:27 +01:00
|
|
|
item_to_xml(Item) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
Attrs1 = [{<<"jid">>,
|
|
|
|
jlib:jid_to_string(Item#roster.jid)}],
|
2002-12-13 21:58:27 +01:00
|
|
|
Attrs2 = case Item#roster.name of
|
2012-09-11 15:45:59 +02:00
|
|
|
<<"">> -> Attrs1;
|
|
|
|
Name -> [{<<"name">>, Name} | Attrs1]
|
2002-12-13 21:58:27 +01:00
|
|
|
end,
|
|
|
|
Attrs3 = case Item#roster.subscription of
|
2012-09-11 15:45:59 +02:00
|
|
|
none -> [{<<"subscription">>, <<"none">>} | Attrs2];
|
|
|
|
from -> [{<<"subscription">>, <<"from">>} | Attrs2];
|
|
|
|
to -> [{<<"subscription">>, <<"to">>} | Attrs2];
|
|
|
|
both -> [{<<"subscription">>, <<"both">>} | Attrs2];
|
|
|
|
remove -> [{<<"subscription">>, <<"remove">>} | Attrs2]
|
2002-12-13 21:58:27 +01:00
|
|
|
end,
|
2003-12-11 21:31:40 +01:00
|
|
|
Attrs4 = case ask_to_pending(Item#roster.ask) of
|
2012-09-11 15:45:59 +02:00
|
|
|
out -> [{<<"ask">>, <<"subscribe">>} | Attrs3];
|
|
|
|
both -> [{<<"ask">>, <<"subscribe">>} | Attrs3];
|
|
|
|
_ -> Attrs3
|
2002-12-20 21:42:08 +01:00
|
|
|
end,
|
2012-09-11 15:45:59 +02:00
|
|
|
SubEls1 = lists:map(fun (G) ->
|
|
|
|
#xmlel{name = <<"group">>, attrs = [],
|
|
|
|
children = [{xmlcdata, G}]}
|
|
|
|
end,
|
|
|
|
Item#roster.groups),
|
2002-12-13 21:58:27 +01:00
|
|
|
SubEls = SubEls1 ++ Item#roster.xs,
|
2012-09-11 15:45:59 +02:00
|
|
|
#xmlel{name = <<"item">>, attrs = Attrs4,
|
|
|
|
children = SubEls}.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
get_roster_by_jid_t(LUser, LServer, LJID) ->
|
|
|
|
DBType = gen_mod:db_type(LServer, ?MODULE),
|
|
|
|
get_roster_by_jid_t(LUser, LServer, LJID, DBType).
|
|
|
|
|
|
|
|
get_roster_by_jid_t(LUser, LServer, LJID, mnesia) ->
|
|
|
|
case mnesia:read({roster, {LUser, LServer, LJID}}) of
|
2012-09-11 15:45:59 +02:00
|
|
|
[] ->
|
|
|
|
#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = LJID};
|
|
|
|
[I] ->
|
|
|
|
I#roster{jid = LJID, name = <<"">>, groups = [],
|
|
|
|
xs = []}
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
|
|
|
get_roster_by_jid_t(LUser, LServer, LJID, odbc) ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
|
|
|
{selected,
|
2012-09-11 15:45:59 +02:00
|
|
|
[<<"username">>, <<"jid">>, <<"nick">>,
|
|
|
|
<<"subscription">>, <<"ask">>, <<"askmessage">>,
|
|
|
|
<<"server">>, <<"subscribe">>, <<"type">>],
|
|
|
|
Res} =
|
|
|
|
odbc_queries:get_roster_by_jid(LServer, Username, SJID),
|
2012-04-27 11:52:05 +02:00
|
|
|
case Res of
|
2012-09-11 15:45:59 +02:00
|
|
|
[] ->
|
|
|
|
#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = LJID};
|
|
|
|
[I] ->
|
|
|
|
R = raw_to_record(LServer, I),
|
|
|
|
case R of
|
|
|
|
%% Bad JID in database:
|
|
|
|
error ->
|
|
|
|
#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = LJID};
|
|
|
|
_ ->
|
|
|
|
R#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = LJID, name = <<"">>}
|
|
|
|
end
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2003-12-17 21:13:21 +01:00
|
|
|
process_iq_set(From, To, #iq{sub_el = SubEl} = IQ) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
#xmlel{children = Els} = SubEl,
|
|
|
|
lists:foreach(fun (El) -> process_item_set(From, To, El)
|
|
|
|
end,
|
|
|
|
Els),
|
2003-12-17 21:13:21 +01:00
|
|
|
IQ#iq{type = result, sub_el = []}.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_set(From, To,
|
|
|
|
#xmlel{attrs = Attrs, children = Els}) ->
|
|
|
|
JID1 = jlib:string_to_jid(xml:get_attr_s(<<"jid">>,
|
|
|
|
Attrs)),
|
|
|
|
#jid{user = User, luser = LUser, lserver = LServer} =
|
|
|
|
From,
|
2003-10-07 22:31:44 +02:00
|
|
|
case JID1 of
|
2012-09-11 15:45:59 +02:00
|
|
|
error -> ok;
|
|
|
|
_ ->
|
|
|
|
LJID = jlib:jid_tolower(JID1),
|
|
|
|
F = fun () ->
|
|
|
|
Item = get_roster_by_jid_t(LUser, LServer, LJID),
|
|
|
|
Item1 = process_item_attrs(Item, Attrs),
|
|
|
|
Item2 = process_item_els(Item1, Els),
|
|
|
|
case Item2#roster.subscription of
|
|
|
|
remove -> del_roster_t(LUser, LServer, LJID);
|
|
|
|
_ -> update_roster_t(LUser, LServer, LJID, Item2)
|
|
|
|
end,
|
|
|
|
Item3 = ejabberd_hooks:run_fold(roster_process_item,
|
|
|
|
LServer, Item2,
|
|
|
|
[LServer]),
|
|
|
|
case roster_version_on_db(LServer) of
|
|
|
|
true -> write_roster_version_t(LUser, LServer);
|
|
|
|
false -> ok
|
|
|
|
end,
|
|
|
|
{Item, Item3}
|
|
|
|
end,
|
|
|
|
case transaction(LServer, F) of
|
|
|
|
{atomic, {OldItem, Item}} ->
|
|
|
|
push_item(User, LServer, To, Item),
|
|
|
|
case Item#roster.subscription of
|
|
|
|
remove ->
|
|
|
|
send_unsubscribing_presence(From, OldItem), ok;
|
|
|
|
_ -> ok
|
|
|
|
end;
|
|
|
|
E ->
|
|
|
|
?DEBUG("ROSTER: roster item set error: ~p~n", [E]), ok
|
|
|
|
end
|
2003-02-20 18:12:03 +01:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_set(_From, _To, _) -> ok.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
|
|
|
process_item_attrs(Item, [{Attr, Val} | Attrs]) ->
|
|
|
|
case Attr of
|
2012-09-11 15:45:59 +02:00
|
|
|
<<"jid">> ->
|
|
|
|
case jlib:string_to_jid(Val) of
|
|
|
|
error -> process_item_attrs(Item, Attrs);
|
|
|
|
JID1 ->
|
|
|
|
JID = {JID1#jid.luser, JID1#jid.lserver,
|
|
|
|
JID1#jid.lresource},
|
|
|
|
process_item_attrs(Item#roster{jid = JID}, Attrs)
|
|
|
|
end;
|
|
|
|
<<"name">> ->
|
|
|
|
process_item_attrs(Item#roster{name = Val}, Attrs);
|
|
|
|
<<"subscription">> ->
|
|
|
|
case Val of
|
|
|
|
<<"remove">> ->
|
|
|
|
process_item_attrs(Item#roster{subscription = remove},
|
|
|
|
Attrs);
|
|
|
|
_ -> process_item_attrs(Item, Attrs)
|
|
|
|
end;
|
|
|
|
<<"ask">> -> process_item_attrs(Item, Attrs);
|
|
|
|
_ -> process_item_attrs(Item, Attrs)
|
2002-12-13 21:58:27 +01:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_attrs(Item, []) -> Item.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_els(Item,
|
|
|
|
[#xmlel{name = Name, attrs = Attrs, children = SEls}
|
|
|
|
| Els]) ->
|
2002-12-13 21:58:27 +01:00
|
|
|
case Name of
|
2012-09-11 15:45:59 +02:00
|
|
|
<<"group">> ->
|
|
|
|
Groups = [xml:get_cdata(SEls) | Item#roster.groups],
|
|
|
|
process_item_els(Item#roster{groups = Groups}, Els);
|
|
|
|
_ ->
|
|
|
|
case xml:get_attr_s(<<"xmlns">>, Attrs) of
|
|
|
|
<<"">> -> process_item_els(Item, Els);
|
|
|
|
_ ->
|
|
|
|
XEls = [#xmlel{name = Name, attrs = Attrs,
|
|
|
|
children = SEls}
|
|
|
|
| Item#roster.xs],
|
|
|
|
process_item_els(Item#roster{xs = XEls}, Els)
|
|
|
|
end
|
2002-12-13 21:58:27 +01:00
|
|
|
end;
|
|
|
|
process_item_els(Item, [{xmlcdata, _} | Els]) ->
|
|
|
|
process_item_els(Item, Els);
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_els(Item, []) -> Item.
|
2002-12-14 21:07:26 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
push_item(User, Server, From, Item) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_sm:route(jlib:make_jid(<<"">>, <<"">>, <<"">>),
|
|
|
|
jlib:make_jid(User, Server, <<"">>),
|
|
|
|
{broadcast, {item, Item#roster.jid,
|
|
|
|
Item#roster.subscription}}),
|
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
|
2012-09-11 15:45:59 +02: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) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
push_item(User, Server, Resource, From, Item,
|
|
|
|
not_found).
|
2011-04-29 20:30:17 +02:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
push_item(User, Server, Resource, From, Item,
|
|
|
|
RosterVersion) ->
|
2011-04-29 20:30:17 +02:00
|
|
|
ExtraAttrs = case RosterVersion of
|
2012-09-11 15:45:59 +02:00
|
|
|
not_found -> [];
|
|
|
|
_ -> [{<<"ver">>, RosterVersion}]
|
|
|
|
end,
|
2003-12-17 21:13:21 +01:00
|
|
|
ResIQ = #iq{type = set, xmlns = ?NS_ROSTER,
|
2012-09-11 15:45:59 +02:00
|
|
|
id = <<"push", (randoms:get_string())/binary>>,
|
|
|
|
sub_el =
|
|
|
|
[#xmlel{name = <<"query">>,
|
|
|
|
attrs = [{<<"xmlns">>, ?NS_ROSTER} | ExtraAttrs],
|
|
|
|
children = [item_to_xml(Item)]}]},
|
|
|
|
ejabberd_router:route(From,
|
|
|
|
jlib:make_jid(User, Server, Resource),
|
|
|
|
jlib:iq_to_xml(ResIQ)).
|
|
|
|
|
|
|
|
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
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
get_subscription_lists(Acc, User, Server) ->
|
2003-10-07 22:31:44 +02:00
|
|
|
LUser = jlib:nodeprep(User),
|
2005-04-17 20:08:34 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
2012-04-27 11:52:05 +02:00
|
|
|
DBType = gen_mod:db_type(LServer, ?MODULE),
|
2012-09-11 15:45:59 +02:00
|
|
|
Items = get_subscription_lists(Acc, LUser, LServer,
|
|
|
|
DBType),
|
2012-04-27 11:52:05 +02:00
|
|
|
fill_subscription_lists(LServer, Items, [], []).
|
|
|
|
|
|
|
|
get_subscription_lists(_, LUser, LServer, mnesia) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
US = {LUser, LServer},
|
|
|
|
case mnesia:dirty_index_read(roster, US, #roster.us) of
|
2012-09-11 15:45:59 +02:00
|
|
|
Items when is_list(Items) -> Items;
|
|
|
|
_ -> []
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
|
|
|
get_subscription_lists(_, LUser, LServer, odbc) ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
case catch odbc_queries:get_roster(LServer, Username) of
|
2012-09-11 15:45:59 +02:00
|
|
|
{selected,
|
|
|
|
[<<"username">>, <<"jid">>, <<"nick">>,
|
|
|
|
<<"subscription">>, <<"ask">>, <<"askmessage">>,
|
|
|
|
<<"server">>, <<"subscribe">>, <<"type">>],
|
|
|
|
Items}
|
|
|
|
when is_list(Items) ->
|
|
|
|
Items;
|
|
|
|
_ -> []
|
2002-12-17 21:49:45 +01:00
|
|
|
end.
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
fill_subscription_lists(LServer, [#roster{} = I | Is],
|
|
|
|
F, T) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
J = element(3, I#roster.usj),
|
2002-12-17 21:49:45 +01:00
|
|
|
case I#roster.subscription of
|
2012-09-11 15:45:59 +02:00
|
|
|
both ->
|
|
|
|
fill_subscription_lists(LServer, Is, [J | F], [J | T]);
|
|
|
|
from ->
|
|
|
|
fill_subscription_lists(LServer, Is, [J | F], T);
|
|
|
|
to -> fill_subscription_lists(LServer, Is, F, [J | T]);
|
|
|
|
_ -> fill_subscription_lists(LServer, Is, F, T)
|
2002-12-17 21:49:45 +01:00
|
|
|
end;
|
2012-04-27 11:52:05 +02:00
|
|
|
fill_subscription_lists(LServer, [RawI | Is], F, T) ->
|
|
|
|
I = raw_to_record(LServer, RawI),
|
|
|
|
case I of
|
2012-09-11 15:45:59 +02:00
|
|
|
%% Bad JID in database:
|
|
|
|
error -> fill_subscription_lists(LServer, Is, F, T);
|
|
|
|
_ -> fill_subscription_lists(LServer, [I | Is], F, T)
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
fill_subscription_lists(_LServer, [], F, T) -> {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) ->
|
|
|
|
DBType = gen_mod:db_type(LServer, ?MODULE),
|
|
|
|
roster_subscribe_t(LUser, LServer, LJID, Item, DBType).
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
roster_subscribe_t(_LUser, _LServer, _LJID, Item,
|
|
|
|
mnesia) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
mnesia:write(Item);
|
|
|
|
roster_subscribe_t(LUser, LServer, LJID, Item, odbc) ->
|
|
|
|
ItemVals = record_to_string(Item),
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
2012-09-11 15:45:59 +02:00
|
|
|
odbc_queries:roster_subscribe(LServer, Username, SJID,
|
|
|
|
ItemVals).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
transaction(LServer, F) ->
|
|
|
|
case gen_mod:db_type(LServer, ?MODULE) of
|
2012-09-11 15:45:59 +02:00
|
|
|
mnesia -> mnesia:transaction(F);
|
|
|
|
odbc -> ejabberd_odbc:sql_transaction(LServer, F)
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2006-05-23 22:19:37 +02:00
|
|
|
in_subscription(_, User, Server, JID, Type, Reason) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
process_subscription(in, User, Server, JID, Type,
|
|
|
|
Reason).
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
out_subscription(User, Server, JID, Type) ->
|
2012-09-11 15:45:59 +02: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) ->
|
|
|
|
DBType = gen_mod:db_type(LServer, ?MODULE),
|
2012-09-11 15:45:59 +02:00
|
|
|
get_roster_by_jid_with_groups_t(LUser, LServer, LJID,
|
|
|
|
DBType).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
get_roster_by_jid_with_groups_t(LUser, LServer, LJID,
|
|
|
|
mnesia) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
case mnesia:read({roster, {LUser, LServer, LJID}}) of
|
2012-09-11 15:45:59 +02:00
|
|
|
[] ->
|
|
|
|
#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = LJID};
|
|
|
|
[I] -> I
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
get_roster_by_jid_with_groups_t(LUser, LServer, LJID,
|
|
|
|
odbc) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
2012-09-11 15:45:59 +02:00
|
|
|
case odbc_queries:get_roster_by_jid(LServer, Username,
|
|
|
|
SJID)
|
|
|
|
of
|
|
|
|
{selected,
|
|
|
|
[<<"username">>, <<"jid">>, <<"nick">>,
|
|
|
|
<<"subscription">>, <<"ask">>, <<"askmessage">>,
|
|
|
|
<<"server">>, <<"subscribe">>, <<"type">>],
|
|
|
|
[I]} ->
|
|
|
|
R = raw_to_record(LServer, I),
|
|
|
|
Groups = case odbc_queries:get_roster_groups(LServer,
|
|
|
|
Username, SJID)
|
|
|
|
of
|
|
|
|
{selected, [<<"grp">>], JGrps} when is_list(JGrps) ->
|
|
|
|
[JGrp || [JGrp] <- JGrps];
|
|
|
|
_ -> []
|
|
|
|
end,
|
|
|
|
R#roster{groups = Groups};
|
|
|
|
{selected,
|
|
|
|
[<<"username">>, <<"jid">>, <<"nick">>,
|
|
|
|
<<"subscription">>, <<"ask">>, <<"askmessage">>,
|
|
|
|
<<"server">>, <<"subscribe">>, <<"type">>],
|
|
|
|
[]} ->
|
|
|
|
#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = LJID}
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
process_subscription(Direction, User, Server, JID1,
|
|
|
|
Type, Reason) ->
|
2003-10-07 22:31:44 +02:00
|
|
|
LUser = jlib:nodeprep(User),
|
2005-04-17 20:08:34 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
2003-10-07 22:31:44 +02:00
|
|
|
LJID = jlib:jid_tolower(JID1),
|
2012-09-11 15:45:59 +02: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
|
2012-09-11 15:45:59 +02: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
|
2012-09-11 15:45:59 +02: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
|
2012-09-11 15:45:59 +02: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
|
2012-09-11 15:45:59 +02: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,
|
|
|
|
askmessage =
|
|
|
|
iolist_to_binary(AskMessage)},
|
|
|
|
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
|
2012-09-11 15:45:59 +02:00
|
|
|
{atomic, {Push, AutoReply}} ->
|
|
|
|
case AutoReply of
|
|
|
|
none -> ok;
|
|
|
|
_ ->
|
|
|
|
T = case AutoReply of
|
|
|
|
subscribed -> <<"subscribed">>;
|
|
|
|
unsubscribed -> <<"unsubscribed">>
|
2007-04-26 16:45:16 +02:00
|
|
|
end,
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_router:route(jlib:make_jid(User, Server,
|
|
|
|
<<"">>),
|
|
|
|
JID1,
|
|
|
|
#xmlel{name = <<"presence">>,
|
|
|
|
attrs = [{<<"type">>, T}],
|
|
|
|
children = []})
|
|
|
|
end,
|
|
|
|
case Push of
|
|
|
|
{push, Item} ->
|
|
|
|
if Item#roster.subscription == none,
|
|
|
|
Item#roster.ask == in ->
|
|
|
|
ok;
|
|
|
|
true ->
|
|
|
|
push_item(User, Server,
|
|
|
|
jlib:make_jid(User, Server, <<"">>), Item)
|
|
|
|
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).
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NNSD, {to, none}).
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NISD, {to, in}).
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-else.
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NNSD, none).
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-define(NISD, none).
|
2012-09-11 15:45:59 +02:00
|
|
|
|
2005-12-11 20:48:31 +01:00
|
|
|
-endif.
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2012-09-11 15:45:59 +02: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;
|
2012-09-11 15:45:59 +02: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};
|
2012-09-11 15:45:59 +02: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;
|
2012-09-11 15:45:59 +02: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;
|
2012-09-11 15:45:59 +02: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
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
remove_user(User, Server) ->
|
2003-10-07 22:31:44 +02:00
|
|
|
LUser = jlib:nodeprep(User),
|
2005-04-17 20:08:34 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
2012-09-11 15:45:59 +02:00
|
|
|
remove_user(LUser, LServer,
|
|
|
|
gen_mod:db_type(LServer, ?MODULE)).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
remove_user(LUser, LServer, mnesia) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
US = {LUser, LServer},
|
2009-02-16 15:49:20 +01:00
|
|
|
send_unsubscription_to_rosteritems(LUser, LServer),
|
2012-09-11 15:45:59 +02:00
|
|
|
F = fun () ->
|
|
|
|
lists:foreach(fun (R) -> mnesia:delete_object(R) end,
|
2005-04-17 20:08:34 +02:00
|
|
|
mnesia:index_read(roster, US, #roster.us))
|
2012-09-11 15:45:59 +02:00
|
|
|
end,
|
2012-04-27 11:52:05 +02:00
|
|
|
mnesia:transaction(F);
|
|
|
|
remove_user(LUser, LServer, odbc) ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
send_unsubscription_to_rosteritems(LUser, LServer),
|
|
|
|
odbc_queries:del_user_roster_t(LServer, Username),
|
|
|
|
ok.
|
2003-01-26 21:16:53 +01:00
|
|
|
|
2009-02-16 15:49:20 +01:00
|
|
|
send_unsubscription_to_rosteritems(LUser, LServer) ->
|
|
|
|
RosterItems = get_user_roster([], {LUser, LServer}),
|
2012-09-11 15:45:59 +02:00
|
|
|
From = jlib:make_jid({LUser, LServer, <<"">>}),
|
|
|
|
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
|
2012-09-11 15:45:59 +02:00
|
|
|
both -> true;
|
|
|
|
to -> true;
|
|
|
|
_ -> false
|
2009-02-16 15:49:20 +01:00
|
|
|
end,
|
|
|
|
IsFrom = case Item#roster.subscription of
|
2012-09-11 15:45:59 +02:00
|
|
|
both -> true;
|
|
|
|
from -> true;
|
|
|
|
_ -> false
|
2009-02-16 15:49:20 +01:00
|
|
|
end,
|
|
|
|
if IsTo ->
|
2012-09-11 15:45:59 +02:00
|
|
|
send_presence_type(jlib:jid_remove_resource(From),
|
|
|
|
jlib:make_jid(Item#roster.jid),
|
|
|
|
<<"unsubscribe">>);
|
2009-02-16 15:49:20 +01:00
|
|
|
true -> ok
|
|
|
|
end,
|
|
|
|
if IsFrom ->
|
2012-09-11 15:45:59 +02:00
|
|
|
send_presence_type(jlib:jid_remove_resource(From),
|
|
|
|
jlib:make_jid(Item#roster.jid),
|
|
|
|
<<"unsubscribed">>);
|
2009-02-16 15:49:20 +01:00
|
|
|
true -> ok
|
|
|
|
end,
|
|
|
|
ok.
|
|
|
|
|
|
|
|
send_presence_type(From, To, Type) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
ejabberd_router:route(From, To,
|
|
|
|
#xmlel{name = <<"presence">>,
|
|
|
|
attrs = [{<<"type">>, Type}], children = []}).
|
2009-02-16 15:49:20 +01:00
|
|
|
|
2003-02-02 20:49:19 +01:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
set_items(User, Server, SubEl) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
#xmlel{children = Els} = SubEl,
|
2003-10-17 21:15:38 +02:00
|
|
|
LUser = jlib:nodeprep(User),
|
2005-04-17 20:08:34 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
2012-09-11 15:45:59 +02:00
|
|
|
F = fun () ->
|
|
|
|
lists:foreach(fun (El) ->
|
|
|
|
process_item_set_t(LUser, LServer, El)
|
|
|
|
end,
|
|
|
|
Els)
|
|
|
|
end,
|
2012-04-27 11:52:05 +02:00
|
|
|
transaction(LServer, F).
|
|
|
|
|
|
|
|
update_roster_t(LUser, LServer, LJID, Item) ->
|
|
|
|
DBType = gen_mod:db_type(LServer, ?MODULE),
|
|
|
|
update_roster_t(LUser, LServer, LJID, Item, DBType).
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
update_roster_t(_LUser, _LServer, _LJID, Item,
|
|
|
|
mnesia) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
mnesia:write(Item);
|
2012-09-11 15:45:59 +02:00
|
|
|
update_roster_t(LUser, LServer, LJID, Item, odbc) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
|
|
|
ItemVals = record_to_string(Item),
|
|
|
|
ItemGroups = groups_to_string(Item),
|
2012-09-11 15:45:59 +02:00
|
|
|
odbc_queries:update_roster(LServer, Username, SJID, ItemVals,
|
|
|
|
ItemGroups).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
del_roster_t(LUser, LServer, LJID) ->
|
|
|
|
DBType = gen_mod:db_type(LServer, ?MODULE),
|
|
|
|
del_roster_t(LUser, LServer, LJID, DBType).
|
|
|
|
|
|
|
|
del_roster_t(LUser, LServer, LJID, mnesia) ->
|
|
|
|
mnesia:delete({roster, {LUser, LServer, LJID}});
|
2012-09-11 15:45:59 +02:00
|
|
|
del_roster_t(LUser, LServer, LJID, odbc) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
2012-09-11 15:45:59 +02:00
|
|
|
odbc_queries:del_roster(LServer, Username, SJID).
|
2003-02-02 20:49:19 +01:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_set_t(LUser, LServer,
|
|
|
|
#xmlel{attrs = Attrs, children = Els}) ->
|
|
|
|
JID1 = jlib:string_to_jid(xml:get_attr_s(<<"jid">>,
|
|
|
|
Attrs)),
|
2003-10-07 22:31:44 +02:00
|
|
|
case JID1 of
|
2012-09-11 15:45:59 +02:00
|
|
|
error -> ok;
|
|
|
|
_ ->
|
|
|
|
JID = {JID1#jid.user, JID1#jid.server,
|
|
|
|
JID1#jid.resource},
|
|
|
|
LJID = {JID1#jid.luser, JID1#jid.lserver,
|
|
|
|
JID1#jid.lresource},
|
|
|
|
Item = #roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer}, jid = JID},
|
|
|
|
Item1 = process_item_attrs_ws(Item, Attrs),
|
|
|
|
Item2 = process_item_els(Item1, Els),
|
|
|
|
case Item2#roster.subscription of
|
|
|
|
remove -> del_roster_t(LUser, LServer, LJID);
|
|
|
|
_ -> update_roster_t(LUser, LServer, LJID, Item2)
|
|
|
|
end
|
2003-02-20 18:12:03 +01:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_set_t(_LUser, _LServer, _) -> ok.
|
2003-02-02 20:49:19 +01:00
|
|
|
|
|
|
|
process_item_attrs_ws(Item, [{Attr, Val} | Attrs]) ->
|
|
|
|
case Attr of
|
2012-09-11 15:45:59 +02:00
|
|
|
<<"jid">> ->
|
|
|
|
case jlib:string_to_jid(Val) of
|
|
|
|
error -> process_item_attrs_ws(Item, Attrs);
|
|
|
|
JID1 ->
|
|
|
|
JID = {JID1#jid.luser, JID1#jid.lserver,
|
|
|
|
JID1#jid.lresource},
|
|
|
|
process_item_attrs_ws(Item#roster{jid = JID}, Attrs)
|
|
|
|
end;
|
|
|
|
<<"name">> ->
|
|
|
|
process_item_attrs_ws(Item#roster{name = Val}, Attrs);
|
|
|
|
<<"subscription">> ->
|
|
|
|
case Val of
|
|
|
|
<<"remove">> ->
|
|
|
|
process_item_attrs_ws(Item#roster{subscription =
|
|
|
|
remove},
|
|
|
|
Attrs);
|
|
|
|
<<"none">> ->
|
|
|
|
process_item_attrs_ws(Item#roster{subscription = none},
|
|
|
|
Attrs);
|
|
|
|
<<"both">> ->
|
|
|
|
process_item_attrs_ws(Item#roster{subscription = both},
|
|
|
|
Attrs);
|
|
|
|
<<"from">> ->
|
|
|
|
process_item_attrs_ws(Item#roster{subscription = from},
|
|
|
|
Attrs);
|
|
|
|
<<"to">> ->
|
|
|
|
process_item_attrs_ws(Item#roster{subscription = to},
|
|
|
|
Attrs);
|
|
|
|
_ -> process_item_attrs_ws(Item, Attrs)
|
|
|
|
end;
|
|
|
|
<<"ask">> -> process_item_attrs_ws(Item, Attrs);
|
|
|
|
_ -> process_item_attrs_ws(Item, Attrs)
|
2003-02-02 20:49:19 +01:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
process_item_attrs_ws(Item, []) -> Item.
|
2003-08-03 21:09:40 +02:00
|
|
|
|
2006-05-23 22:19:37 +02:00
|
|
|
get_in_pending_subscriptions(Ls, User, Server) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
get_in_pending_subscriptions(Ls, User, Server,
|
2012-09-11 15:45:59 +02:00
|
|
|
gen_mod:db_type(LServer, ?MODULE)).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
get_in_pending_subscriptions(Ls, User, Server,
|
|
|
|
mnesia) ->
|
|
|
|
JID = jlib:make_jid(User, Server, <<"">>),
|
2006-05-26 02:00:32 +02:00
|
|
|
US = {JID#jid.luser, JID#jid.lserver},
|
|
|
|
case mnesia:dirty_index_read(roster, US, #roster.us) of
|
2012-09-11 15:45:59 +02:00
|
|
|
Result when is_list(Result) ->
|
|
|
|
Ls ++
|
|
|
|
lists:map(fun (R) ->
|
|
|
|
Message = R#roster.askmessage,
|
|
|
|
Status = if is_binary(Message) -> (Message);
|
|
|
|
true -> <<"">>
|
|
|
|
end,
|
|
|
|
#xmlel{name = <<"presence">>,
|
|
|
|
attrs =
|
|
|
|
[{<<"from">>,
|
|
|
|
jlib:jid_to_string(R#roster.jid)},
|
|
|
|
{<<"to">>, jlib:jid_to_string(JID)},
|
|
|
|
{<<"type">>, <<"subscribe">>}],
|
|
|
|
children =
|
|
|
|
[#xmlel{name = <<"status">>,
|
|
|
|
attrs = [],
|
|
|
|
children =
|
|
|
|
[{xmlcdata, Status}]}]}
|
2006-05-26 02:00:32 +02:00
|
|
|
end,
|
2012-09-11 15:45:59 +02:00
|
|
|
lists:filter(fun (R) ->
|
|
|
|
case R#roster.ask of
|
|
|
|
in -> true;
|
|
|
|
both -> true;
|
|
|
|
_ -> false
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Result));
|
|
|
|
_ -> Ls
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
|
|
|
get_in_pending_subscriptions(Ls, User, Server, odbc) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
JID = jlib:make_jid(User, Server, <<"">>),
|
2012-04-27 11:52:05 +02:00
|
|
|
LUser = JID#jid.luser,
|
|
|
|
LServer = JID#jid.lserver,
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
case catch odbc_queries:get_roster(LServer, Username) of
|
2012-09-11 15:45:59 +02:00
|
|
|
{selected,
|
|
|
|
[<<"username">>, <<"jid">>, <<"nick">>,
|
|
|
|
<<"subscription">>, <<"ask">>, <<"askmessage">>,
|
|
|
|
<<"server">>, <<"subscribe">>, <<"type">>],
|
|
|
|
Items}
|
|
|
|
when is_list(Items) ->
|
|
|
|
Ls ++
|
|
|
|
lists:map(fun (R) ->
|
|
|
|
Message = R#roster.askmessage,
|
|
|
|
#xmlel{name = <<"presence">>,
|
|
|
|
attrs =
|
|
|
|
[{<<"from">>,
|
|
|
|
jlib:jid_to_string(R#roster.jid)},
|
|
|
|
{<<"to">>, jlib:jid_to_string(JID)},
|
|
|
|
{<<"type">>, <<"subscribe">>}],
|
|
|
|
children =
|
|
|
|
[#xmlel{name = <<"status">>,
|
|
|
|
attrs = [],
|
|
|
|
children =
|
|
|
|
[{xmlcdata, Message}]}]}
|
2012-04-27 11:52:05 +02:00
|
|
|
end,
|
2012-09-11 15:45:59 +02:00
|
|
|
lists:flatmap(fun (I) ->
|
|
|
|
case raw_to_record(LServer, I) of
|
|
|
|
%% Bad JID in database:
|
|
|
|
error -> [];
|
|
|
|
R ->
|
|
|
|
case R#roster.ask of
|
|
|
|
in -> [R];
|
|
|
|
both -> [R];
|
|
|
|
_ -> []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Items));
|
|
|
|
_ -> Ls
|
2006-05-23 22:19:37 +02:00
|
|
|
end.
|
|
|
|
|
2003-08-03 21:09:40 +02:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2012-04-27 11:52:05 +02:00
|
|
|
read_subscription_and_groups(User, Server, LJID) ->
|
2003-10-07 22:31:44 +02:00
|
|
|
LUser = jlib:nodeprep(User),
|
2005-04-17 20:08:34 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
2012-04-27 11:52:05 +02:00
|
|
|
read_subscription_and_groups(LUser, LServer, LJID,
|
2012-09-11 15:45:59 +02:00
|
|
|
gen_mod:db_type(LServer, ?MODULE)).
|
|
|
|
|
|
|
|
read_subscription_and_groups(LUser, LServer, LJID,
|
|
|
|
mnesia) ->
|
|
|
|
case catch mnesia:dirty_read(roster,
|
|
|
|
{LUser, LServer, LJID})
|
|
|
|
of
|
|
|
|
[#roster{subscription = Subscription,
|
|
|
|
groups = Groups}] ->
|
|
|
|
{Subscription, Groups};
|
|
|
|
_ -> error
|
2012-04-27 11:52:05 +02:00
|
|
|
end;
|
2012-09-11 15:45:59 +02:00
|
|
|
read_subscription_and_groups(LUser, LServer, LJID,
|
|
|
|
odbc) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
2012-09-11 15:45:59 +02:00
|
|
|
case catch odbc_queries:get_subscription(LServer,
|
|
|
|
Username, SJID)
|
|
|
|
of
|
|
|
|
{selected, [<<"subscription">>], [{SSubscription}]} ->
|
|
|
|
Subscription = case SSubscription of
|
|
|
|
<<"B">> -> both;
|
|
|
|
<<"T">> -> to;
|
|
|
|
<<"F">> -> from;
|
|
|
|
_ -> none
|
|
|
|
end,
|
|
|
|
Groups = case catch
|
|
|
|
odbc_queries:get_rostergroup_by_jid(LServer, Username,
|
|
|
|
SJID)
|
|
|
|
of
|
|
|
|
{selected, [<<"grp">>], JGrps} when is_list(JGrps) ->
|
|
|
|
[JGrp || [JGrp] <- JGrps];
|
|
|
|
_ -> []
|
|
|
|
end,
|
|
|
|
{Subscription, Groups};
|
|
|
|
_ -> error
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
get_jid_info(_, User, Server, JID) ->
|
|
|
|
LJID = jlib:jid_tolower(JID),
|
|
|
|
case read_subscription_and_groups(User, Server, LJID) of
|
2012-09-11 15:45:59 +02:00
|
|
|
{Subscription, Groups} -> {Subscription, Groups};
|
|
|
|
error ->
|
|
|
|
LRJID = jlib:jid_tolower(jlib:jid_remove_resource(JID)),
|
|
|
|
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
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
raw_to_record(LServer,
|
|
|
|
[User, SJID, Nick, SSubscription, SAsk, SAskMessage,
|
|
|
|
_SServer, _SSubscribe, _SType]) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
case jlib:string_to_jid(SJID) of
|
2012-09-11 15:45:59 +02:00
|
|
|
error -> error;
|
|
|
|
JID ->
|
|
|
|
LJID = jlib:jid_tolower(JID),
|
|
|
|
Subscription = case SSubscription of
|
|
|
|
<<"B">> -> both;
|
|
|
|
<<"T">> -> to;
|
|
|
|
<<"F">> -> from;
|
|
|
|
_ -> none
|
|
|
|
end,
|
|
|
|
Ask = case SAsk of
|
|
|
|
<<"S">> -> subscribe;
|
|
|
|
<<"U">> -> unsubscribe;
|
|
|
|
<<"B">> -> both;
|
|
|
|
<<"O">> -> out;
|
|
|
|
<<"I">> -> in;
|
|
|
|
_ -> none
|
|
|
|
end,
|
|
|
|
#roster{usj = {User, LServer, LJID},
|
|
|
|
us = {User, LServer}, jid = LJID, name = Nick,
|
|
|
|
subscription = Subscription, ask = Ask,
|
|
|
|
askmessage = SAskMessage}
|
2012-04-27 11:52:05 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
record_to_string(#roster{us = {User, _Server},
|
2012-09-11 15:45:59 +02:00
|
|
|
jid = JID, name = Name, subscription = Subscription,
|
|
|
|
ask = Ask, askmessage = AskMessage}) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(User),
|
2012-09-11 15:45:59 +02:00
|
|
|
SJID =
|
|
|
|
ejabberd_odbc:escape(jlib:jid_to_string(jlib:jid_tolower(JID))),
|
2012-04-27 11:52:05 +02:00
|
|
|
Nick = ejabberd_odbc:escape(Name),
|
|
|
|
SSubscription = case Subscription of
|
2012-09-11 15:45:59 +02:00
|
|
|
both -> <<"B">>;
|
|
|
|
to -> <<"T">>;
|
|
|
|
from -> <<"F">>;
|
|
|
|
none -> <<"N">>
|
2012-04-27 11:52:05 +02:00
|
|
|
end,
|
|
|
|
SAsk = case Ask of
|
2012-09-11 15:45:59 +02:00
|
|
|
subscribe -> <<"S">>;
|
|
|
|
unsubscribe -> <<"U">>;
|
|
|
|
both -> <<"B">>;
|
|
|
|
out -> <<"O">>;
|
|
|
|
in -> <<"I">>;
|
|
|
|
none -> <<"N">>
|
2012-04-27 11:52:05 +02:00
|
|
|
end,
|
|
|
|
SAskMessage = ejabberd_odbc:escape(AskMessage),
|
2012-09-11 15:45:59 +02:00
|
|
|
[Username, SJID, Nick, SSubscription, SAsk, SAskMessage,
|
|
|
|
<<"N">>, <<"">>, <<"item">>].
|
2012-04-27 11:52:05 +02:00
|
|
|
|
|
|
|
groups_to_string(#roster{us = {User, _Server},
|
2012-09-11 15:45:59 +02:00
|
|
|
jid = JID, groups = Groups}) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
Username = ejabberd_odbc:escape(User),
|
2012-09-11 15:45:59 +02:00
|
|
|
SJID =
|
|
|
|
ejabberd_odbc:escape(jlib:jid_to_string(jlib:jid_tolower(JID))),
|
|
|
|
lists:foldl(fun (<<"">>, Acc) -> Acc;
|
|
|
|
(Group, Acc) ->
|
|
|
|
G = ejabberd_odbc:escape(Group),
|
|
|
|
[[Username, SJID, G] | Acc]
|
|
|
|
end,
|
|
|
|
[], Groups).
|
2012-04-27 11:52:05 +02:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
update_tables() ->
|
|
|
|
update_roster_table(),
|
|
|
|
update_roster_version_table().
|
2005-04-17 20:08:34 +02:00
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
update_roster_table() ->
|
2005-04-17 20:08:34 +02:00
|
|
|
Fields = record_info(fields, roster),
|
|
|
|
case mnesia:table_info(roster, attributes) of
|
2012-09-11 15:45:59 +02:00
|
|
|
Fields ->
|
|
|
|
ejabberd_config:convert_table_to_binary(
|
|
|
|
roster, Fields, set,
|
|
|
|
fun(#roster{usj = {U, _, _}}) -> U end,
|
|
|
|
fun(#roster{usj = {U, S, {LU, LS, LR}},
|
|
|
|
us = {U1, S1},
|
|
|
|
jid = {U2, S2, R2},
|
|
|
|
name = Name,
|
|
|
|
groups = Gs,
|
|
|
|
askmessage = Ask,
|
|
|
|
xs = Xs} = R) ->
|
|
|
|
R#roster{usj = {iolist_to_binary(U),
|
|
|
|
iolist_to_binary(S),
|
|
|
|
{iolist_to_binary(LU),
|
|
|
|
iolist_to_binary(LS),
|
|
|
|
iolist_to_binary(LR)}},
|
|
|
|
us = {iolist_to_binary(U1),
|
|
|
|
iolist_to_binary(S1)},
|
|
|
|
jid = {iolist_to_binary(U2),
|
|
|
|
iolist_to_binary(S2),
|
|
|
|
iolist_to_binary(R2)},
|
|
|
|
name = iolist_to_binary(Name),
|
|
|
|
groups = [iolist_to_binary(G) || G <- Gs],
|
|
|
|
askmessage = iolist_to_binary(Ask),
|
|
|
|
xs = [xml:to_xmlel(X) || X <- Xs]}
|
|
|
|
end);
|
|
|
|
_ ->
|
|
|
|
?INFO_MSG("Recreating roster table", []),
|
|
|
|
mnesia:transform_table(roster, ignore, Fields)
|
2005-04-17 20:08:34 +02:00
|
|
|
end.
|
|
|
|
|
2012-09-11 15:45:59 +02:00
|
|
|
update_roster_version_table() ->
|
|
|
|
Fields = record_info(fields, roster_version),
|
|
|
|
case mnesia:table_info(roster_version, attributes) of
|
|
|
|
Fields ->
|
|
|
|
ejabberd_config:convert_table_to_binary(
|
|
|
|
roster_version, Fields, set,
|
|
|
|
fun(#roster_version{us = {U, _}}) -> U end,
|
|
|
|
fun(#roster_version{us = {U, S}, version = Ver} = R) ->
|
|
|
|
R#roster_version{us = {iolist_to_binary(U),
|
|
|
|
iolist_to_binary(S)},
|
|
|
|
version = iolist_to_binary(Ver)}
|
|
|
|
end);
|
|
|
|
_ ->
|
|
|
|
?INFO_MSG("Recreating roster_version table", []),
|
|
|
|
mnesia:transform_table(roster_version, ignore, Fields)
|
|
|
|
end.
|
2007-08-24 18:15:05 +02:00
|
|
|
|
|
|
|
webadmin_page(_, Host,
|
2012-09-11 15:45:59 +02: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) ->
|
2012-04-27 11:52:05 +02:00
|
|
|
LUser = jlib:nodeprep(User),
|
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
US = {LUser, LServer},
|
|
|
|
Items1 = get_roster(LUser, LServer),
|
2012-09-11 15:45:59 +02: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),
|
2012-09-11 15:45:59 +02: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) ->
|
|
|
|
ContactJID = jlib:make_jid(RosterJID),
|
2012-09-11 15:45:59 +02: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
|
2012-09-11 15:45:59 +02:00
|
|
|
<<>> ->
|
|
|
|
?XAC(<<"td">>, [{<<"class">>, <<"valign">>}],
|
|
|
|
(jlib:jid_to_string(RosterJID)));
|
|
|
|
URI when is_binary(URI) ->
|
|
|
|
?XAE(<<"td">>, [{<<"class">>, <<"valign">>}],
|
|
|
|
[?AC(JIDURI, (jlib: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) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
case lists:keysearch(<<"addjid">>, 1, Query) of
|
|
|
|
{value, _} ->
|
|
|
|
case lists:keysearch(<<"newjid">>, 1, Query) of
|
|
|
|
{value, {_, SJID}} ->
|
|
|
|
case jlib:string_to_jid(SJID) of
|
|
|
|
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),
|
2012-09-11 15:45:59 +02:00
|
|
|
UJID = jlib:make_jid(User, Server, <<"">>),
|
|
|
|
ejabberd_router:route(UJID, JID,
|
|
|
|
#xmlel{name = <<"presence">>,
|
|
|
|
attrs = [{<<"type">>, <<"subscribe">>}],
|
|
|
|
children = []}).
|
|
|
|
|
|
|
|
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, _} ->
|
|
|
|
JID1 = jlib:make_jid(JID),
|
|
|
|
out_subscription(User, Server, JID1,
|
|
|
|
subscribed),
|
|
|
|
UJID = jlib:make_jid(User, Server, <<"">>),
|
|
|
|
ejabberd_router:route(UJID, JID1,
|
|
|
|
#xmlel{name =
|
|
|
|
<<"presence">>,
|
|
|
|
attrs =
|
|
|
|
[{<<"type">>,
|
|
|
|
<<"subscribed">>}],
|
|
|
|
children = []}),
|
|
|
|
throw(submitted);
|
|
|
|
false ->
|
|
|
|
case lists:keysearch(<<"remove",
|
|
|
|
(ejabberd_web_admin:term_to_id(JID))/binary>>,
|
|
|
|
1, Query)
|
|
|
|
of
|
|
|
|
{value, _} ->
|
|
|
|
UJID = jlib:make_jid(User, Server,
|
|
|
|
<<"">>),
|
|
|
|
process_iq(UJID, UJID,
|
|
|
|
#iq{type = set,
|
|
|
|
sub_el =
|
|
|
|
#xmlel{name =
|
|
|
|
<<"query">>,
|
|
|
|
attrs =
|
|
|
|
[{<<"xmlns">>,
|
|
|
|
?NS_ROSTER}],
|
|
|
|
children =
|
|
|
|
[#xmlel{name
|
|
|
|
=
|
|
|
|
<<"item">>,
|
|
|
|
attrs
|
|
|
|
=
|
|
|
|
[{<<"jid">>,
|
|
|
|
jlib:jid_to_string(JID)},
|
|
|
|
{<<"subscription">>,
|
|
|
|
<<"remove">>}],
|
|
|
|
children
|
|
|
|
=
|
|
|
|
[]}]}}),
|
|
|
|
throw(submitted);
|
|
|
|
false -> ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Items),
|
2007-08-24 18:15:05 +02:00
|
|
|
nothing.
|
|
|
|
|
|
|
|
us_to_list({User, Server}) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
jlib:jid_to_string({User, Server, <<"">>}).
|
2007-08-24 18:15:05 +02:00
|
|
|
|
|
|
|
webadmin_user(Acc, _User, _Server, Lang) ->
|
2012-09-11 15:45:59 +02:00
|
|
|
Acc ++
|
|
|
|
[?XE(<<"h3">>, [?ACT(<<"roster/">>, <<"Roster">>)])].
|
|
|
|
|
|
|
|
export(_Server) ->
|
|
|
|
[{roster,
|
|
|
|
fun(Host, #roster{usj = {LUser, LServer, LJID}} = R)
|
|
|
|
when LServer == Host ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SJID = ejabberd_odbc:escape(jlib:jid_to_string(LJID)),
|
|
|
|
ItemVals = record_to_string(R),
|
|
|
|
ItemGroups = groups_to_string(R),
|
|
|
|
odbc_queries:update_roster_sql(Username, SJID,
|
|
|
|
ItemVals, ItemGroups);
|
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end},
|
|
|
|
{roster_version,
|
|
|
|
fun(Host, #roster_version{us = {LUser, LServer}, version = Ver})
|
|
|
|
when LServer == Host ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
SVer = ejabberd_odbc:escape(Ver),
|
|
|
|
[[<<"delete from roster_version where username='">>,
|
|
|
|
Username, <<"';">>],
|
|
|
|
[<<"insert into roster_version(username, version) values('">>,
|
|
|
|
Username, <<"', '">>, SVer, <<"');">>]];
|
|
|
|
(_Host, _R) ->
|
|
|
|
[]
|
|
|
|
end}].
|