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>
|
|
|
|
%%%
|
|
|
|
%%%
|
2009-01-19 15:47:33 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2009 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-19 15:47:33 +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
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(mod_roster).
|
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
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
-export([start/2, stop/1,
|
2002-12-17 21:49:45 +01:00
|
|
|
process_iq/3,
|
2003-01-22 21:40:40 +01:00
|
|
|
process_local_iq/3,
|
2005-04-17 20:08:34 +02:00
|
|
|
get_user_roster/2,
|
|
|
|
get_subscription_lists/3,
|
2006-05-23 22:19:37 +02:00
|
|
|
get_in_pending_subscriptions/3,
|
|
|
|
in_subscription/6,
|
2005-04-17 20:08:34 +02:00
|
|
|
out_subscription/4,
|
|
|
|
set_items/3,
|
|
|
|
remove_user/2,
|
2007-08-24 18:15:05 +02:00
|
|
|
get_jid_info/4,
|
2008-07-11 14:48:27 +02:00
|
|
|
item_to_xml/1,
|
2007-08-24 18:15:05 +02:00
|
|
|
webadmin_page/3,
|
|
|
|
webadmin_user/4]).
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2008-07-21 17:29:52 +02:00
|
|
|
-include_lib("exmpp/include/exmpp.hrl").
|
|
|
|
|
2002-12-13 21:58:27 +01:00
|
|
|
-include("ejabberd.hrl").
|
2005-04-17 20:08:34 +02:00
|
|
|
-include("mod_roster.hrl").
|
2008-07-17 17:33:50 +02:00
|
|
|
-include("web/ejabberd_http.hrl").
|
|
|
|
-include("web/ejabberd_web_admin.hrl").
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
start(Host, Opts) ->
|
2009-01-03 16:15:38 +01:00
|
|
|
HostB = list_to_binary(Host),
|
2003-01-24 21:18:33 +01:00
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts, one_queue),
|
2002-12-11 21:57:45 +01:00
|
|
|
mnesia:create_table(roster,[{disc_copies, [node()]},
|
|
|
|
{attributes, record_info(fields, roster)}]),
|
2005-04-17 20:08:34 +02:00
|
|
|
update_table(),
|
|
|
|
mnesia:add_table_index(roster, us),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(roster_get, HostB,
|
2005-04-17 20:08:34 +02:00
|
|
|
?MODULE, get_user_roster, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(roster_in_subscription, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, in_subscription, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(roster_out_subscription, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, out_subscription, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(roster_get_subscription_lists, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, get_subscription_lists, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(roster_get_jid_info, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, get_jid_info, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(remove_user, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, remove_user, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(anonymous_purge_hook, HostB,
|
2007-05-12 18:28:34 +02:00
|
|
|
?MODULE, remove_user, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(resend_subscription_requests_hook, HostB,
|
2006-05-23 22:19:37 +02:00
|
|
|
?MODULE, get_in_pending_subscriptions, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(webadmin_page_host, HostB,
|
2007-08-24 18:15:05 +02:00
|
|
|
?MODULE, webadmin_page, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:add(webadmin_user, HostB,
|
2007-08-24 18:15:05 +02:00
|
|
|
?MODULE, webadmin_user, 50),
|
2009-01-10 17:10:12 +01:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_sm, HostB, ?NS_ROSTER,
|
2003-07-21 22:01:22 +02:00
|
|
|
?MODULE, process_iq, IQDisc).
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
stop(Host) ->
|
2009-01-03 16:15:38 +01:00
|
|
|
HostB = list_to_binary(Host),
|
|
|
|
ejabberd_hooks:delete(roster_get, HostB,
|
2005-04-17 20:08:34 +02:00
|
|
|
?MODULE, get_user_roster, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(roster_in_subscription, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, in_subscription, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(roster_out_subscription, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, out_subscription, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(roster_get_subscription_lists, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, get_subscription_lists, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(roster_get_jid_info, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, get_jid_info, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(remove_user, HostB,
|
2007-05-12 18:28:34 +02:00
|
|
|
?MODULE, remove_user, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(anonymous_purge_hook, HostB,
|
2004-12-19 21:47:35 +01:00
|
|
|
?MODULE, remove_user, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(resend_subscription_requests_hook, HostB,
|
2007-08-24 18:15:05 +02:00
|
|
|
?MODULE, get_in_pending_subscriptions, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(webadmin_page_host, HostB,
|
2007-08-24 18:15:05 +02:00
|
|
|
?MODULE, webadmin_page, 50),
|
2009-01-03 16:15:38 +01:00
|
|
|
ejabberd_hooks:delete(webadmin_user, HostB,
|
2007-08-24 18:15:05 +02:00
|
|
|
?MODULE, webadmin_user, 50),
|
2009-01-10 17:10:12 +01:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, HostB,
|
2008-08-14 15:36:11 +02:00
|
|
|
?NS_ROSTER).
|
2004-07-10 00:34:26 +02:00
|
|
|
|
|
|
|
|
2008-08-14 15:36:11 +02:00
|
|
|
process_iq(From, To, IQ_Rec) ->
|
2009-01-03 16:15:38 +01:00
|
|
|
LServer = exmpp_jid:ldomain_as_list(From),
|
2005-04-17 20:08:34 +02:00
|
|
|
case lists:member(LServer, ?MYHOSTS) of
|
|
|
|
true ->
|
2008-08-14 15:36:11 +02:00
|
|
|
process_local_iq(From, To, IQ_Rec);
|
2002-12-13 21:58:27 +01:00
|
|
|
_ ->
|
2008-08-14 15:36:11 +02:00
|
|
|
exmpp_iq:error(IQ_Rec, 'item-not-found')
|
2002-12-11 21:57:45 +01:00
|
|
|
end.
|
|
|
|
|
2008-08-14 15:36:11 +02:00
|
|
|
process_local_iq(From, To, #iq{type = get} = IQ_Rec) ->
|
|
|
|
process_iq_get(From, To, IQ_Rec);
|
|
|
|
process_local_iq(From, To, #iq{type = set} = IQ_Rec) ->
|
|
|
|
process_iq_set(From, To, IQ_Rec).
|
2003-07-21 22:01:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-08-14 15:36:11 +02:00
|
|
|
process_iq_get(From, To, IQ_Rec) ->
|
2009-01-05 16:41:53 +01:00
|
|
|
US = {exmpp_jid:lnode(From), exmpp_jid:ldomain(From)},
|
2009-01-03 16:15:38 +01:00
|
|
|
case catch ejabberd_hooks:run_fold(roster_get, exmpp_jid:ldomain(To), [], [US]) of
|
2004-09-10 22:57:00 +02:00
|
|
|
Items when is_list(Items) ->
|
2002-12-13 21:58:27 +01:00
|
|
|
XItems = lists:map(fun item_to_xml/1, Items),
|
2008-08-14 15:36:11 +02:00
|
|
|
Result = #xmlel{ns = ?NS_ROSTER, name = 'query',
|
|
|
|
children = XItems},
|
|
|
|
exmpp_iq:result(IQ_Rec, Result);
|
2002-12-13 21:58:27 +01:00
|
|
|
_ ->
|
2008-08-14 15:36:11 +02:00
|
|
|
exmpp_iq:error(IQ_Rec, 'internal-server-error')
|
2002-12-13 21:58:27 +01:00
|
|
|
end.
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
get_user_roster(Acc, US) ->
|
|
|
|
case catch mnesia:dirty_index_read(roster, US, #roster.us) of
|
|
|
|
Items when is_list(Items) ->
|
2007-04-26 16:45:16 +02:00
|
|
|
lists:filter(fun(#roster{subscription = none, ask = in}) ->
|
|
|
|
false;
|
|
|
|
(_) ->
|
|
|
|
true
|
|
|
|
end, Items) ++ Acc;
|
2005-04-17 20:08:34 +02:00
|
|
|
_ ->
|
|
|
|
Acc
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
2002-12-13 21:58:27 +01:00
|
|
|
item_to_xml(Item) ->
|
2008-07-21 17:29:52 +02:00
|
|
|
{U, S, R} = Item#roster.jid,
|
|
|
|
Attrs1 = exmpp_xml:set_attribute_in_list([],
|
2008-08-06 15:51:42 +02:00
|
|
|
'jid', exmpp_jid:jid_to_list(U, S, R)),
|
2002-12-13 21:58:27 +01:00
|
|
|
Attrs2 = case Item#roster.name of
|
2009-01-08 15:54:00 +01:00
|
|
|
<<>> ->
|
2002-12-13 21:58:27 +01:00
|
|
|
Attrs1;
|
|
|
|
Name ->
|
2008-07-21 17:29:52 +02:00
|
|
|
exmpp_xml:set_attribute_in_list(Attrs1, 'name', Name)
|
2002-12-13 21:58:27 +01:00
|
|
|
end,
|
2008-07-21 17:29:52 +02:00
|
|
|
Attrs3 = exmpp_xml:set_attribute_in_list(Attrs2,
|
|
|
|
'subscription', Item#roster.subscription),
|
2003-12-11 21:31:40 +01:00
|
|
|
Attrs4 = case ask_to_pending(Item#roster.ask) of
|
|
|
|
out ->
|
2008-07-21 17:29:52 +02:00
|
|
|
exmpp_xml:set_attribute_in_list(Attrs3,
|
|
|
|
'ask', "subscribe");
|
2003-12-11 21:31:40 +01:00
|
|
|
both ->
|
2008-07-21 17:29:52 +02:00
|
|
|
exmpp_xml:set_attribute_in_list(Attrs3,
|
|
|
|
'ask', "subscribe");
|
2003-12-11 21:31:40 +01:00
|
|
|
_ ->
|
|
|
|
Attrs3
|
2002-12-20 21:42:08 +01:00
|
|
|
end,
|
2002-12-13 21:58:27 +01:00
|
|
|
SubEls1 = lists:map(fun(G) ->
|
2008-07-21 17:29:52 +02:00
|
|
|
exmpp_xml:set_cdata(
|
|
|
|
#xmlel{ns = ?NS_ROSTER, name = 'group'}, G)
|
2002-12-13 21:58:27 +01:00
|
|
|
end, Item#roster.groups),
|
|
|
|
SubEls = SubEls1 ++ Item#roster.xs,
|
2008-07-21 17:29:52 +02:00
|
|
|
#xmlel{ns = ?NS_ROSTER, name = 'item', attrs = Attrs4, children = SubEls}.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
|
|
|
|
2008-08-14 15:36:11 +02:00
|
|
|
process_iq_set(From, To, #iq{payload = Request} = IQ_Rec) ->
|
|
|
|
case Request of
|
2008-07-21 17:29:52 +02:00
|
|
|
#xmlel{children = Els} ->
|
|
|
|
lists:foreach(fun(El) -> process_item_set(From, To, El) end, Els);
|
2002-12-13 21:58:27 +01:00
|
|
|
_ ->
|
2008-07-21 17:29:52 +02:00
|
|
|
ok
|
|
|
|
end,
|
2008-08-14 15:36:11 +02:00
|
|
|
exmpp_iq:result(IQ_Rec).
|
2008-07-21 17:29:52 +02:00
|
|
|
|
2008-08-26 15:59:04 +02:00
|
|
|
process_item_set(From, To, #xmlel{} = El) ->
|
2008-07-21 17:29:52 +02:00
|
|
|
try
|
2009-01-21 14:34:26 +01:00
|
|
|
JID1 = exmpp_jid:parse_jid(exmpp_xml:get_attribute_as_binary(El, 'jid', <<>>)),
|
2009-01-03 16:15:38 +01:00
|
|
|
User = exmpp_jid:node(From),
|
|
|
|
LUser = exmpp_jid:lnode(From),
|
|
|
|
LServer = exmpp_jid:ldomain(From),
|
2008-08-26 15:59:04 +02:00
|
|
|
JID = jlib:short_jid(JID1),
|
|
|
|
LJID = jlib:short_prepd_jid(JID1),
|
2008-07-21 17:29:52 +02:00
|
|
|
F = fun() ->
|
|
|
|
Res = mnesia:read({roster, {LUser, LServer, LJID}}),
|
|
|
|
Item = case Res of
|
|
|
|
[] ->
|
|
|
|
#roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer},
|
|
|
|
jid = JID};
|
|
|
|
[I] ->
|
|
|
|
I#roster{jid = JID,
|
2009-01-08 15:54:00 +01:00
|
|
|
name = <<>>,
|
2008-07-21 17:29:52 +02:00
|
|
|
groups = [],
|
|
|
|
xs = []}
|
|
|
|
end,
|
2008-08-26 15:59:04 +02:00
|
|
|
Item1 = process_item_attrs(Item, El#xmlel.attrs),
|
|
|
|
Item2 = process_item_els(Item1, El#xmlel.children),
|
2008-07-21 17:29:52 +02:00
|
|
|
case Item2#roster.subscription of
|
2003-01-17 20:58:42 +01:00
|
|
|
remove ->
|
2008-07-21 17:29:52 +02:00
|
|
|
mnesia:delete({roster, {LUser, LServer, LJID}});
|
2003-01-17 20:58:42 +01:00
|
|
|
_ ->
|
2008-07-21 17:29:52 +02:00
|
|
|
mnesia:write(Item2)
|
|
|
|
end,
|
|
|
|
%% If the item exist in shared roster, take the
|
|
|
|
%% subscription information from there:
|
|
|
|
Item3 = ejabberd_hooks:run_fold(roster_process_item,
|
2009-01-03 16:15:38 +01:00
|
|
|
exmpp_jid:ldomain(From), Item2, [exmpp_jid:ldomain(From)]),
|
2008-07-21 17:29:52 +02:00
|
|
|
{Item, Item3}
|
|
|
|
end,
|
|
|
|
case mnesia:transaction(F) of
|
|
|
|
{atomic, {OldItem, Item}} ->
|
|
|
|
push_item(User, LServer, To, Item),
|
|
|
|
case Item#roster.subscription of
|
|
|
|
remove ->
|
|
|
|
IsTo = case OldItem#roster.subscription of
|
|
|
|
both -> true;
|
|
|
|
to -> true;
|
|
|
|
_ -> false
|
|
|
|
end,
|
|
|
|
IsFrom = case OldItem#roster.subscription of
|
|
|
|
both -> true;
|
|
|
|
from -> true;
|
|
|
|
_ -> false
|
|
|
|
end,
|
|
|
|
{U, S, R} = OldItem#roster.jid,
|
|
|
|
if IsTo ->
|
|
|
|
ejabberd_router:route(
|
|
|
|
exmpp_jid:jid_to_bare_jid(From),
|
|
|
|
exmpp_jid:make_jid(U, S, R),
|
|
|
|
exmpp_presence:unsubscribe());
|
|
|
|
true -> ok
|
|
|
|
end,
|
|
|
|
if IsFrom ->
|
|
|
|
ejabberd_router:route(
|
|
|
|
exmpp_jid:jid_to_bare_jid(From),
|
|
|
|
exmpp_jid:make_jid(U, S, R),
|
|
|
|
exmpp_presence:unsubscribed());
|
|
|
|
true -> ok
|
|
|
|
end,
|
|
|
|
ok;
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end;
|
|
|
|
E ->
|
|
|
|
?DEBUG("ROSTER: roster item set error: ~p~n", [E]),
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
catch
|
|
|
|
_ ->
|
|
|
|
ok
|
2003-02-20 18:12:03 +01:00
|
|
|
end;
|
2003-10-27 20:35:03 +01:00
|
|
|
process_item_set(_From, _To, _) ->
|
2003-02-20 18:12:03 +01:00
|
|
|
ok.
|
2002-12-13 21:58:27 +01:00
|
|
|
|
2008-07-21 17:29:52 +02:00
|
|
|
process_item_attrs(Item, [#xmlattr{name = Attr, value = Val} | Attrs]) ->
|
2002-12-13 21:58:27 +01:00
|
|
|
case Attr of
|
2008-07-21 17:29:52 +02:00
|
|
|
'name' ->
|
2002-12-14 21:07:26 +01:00
|
|
|
process_item_attrs(Item#roster{name = Val}, Attrs);
|
2008-07-21 17:29:52 +02:00
|
|
|
'subscription' ->
|
2002-12-13 21:58:27 +01:00
|
|
|
case Val of
|
2009-01-08 15:54:00 +01:00
|
|
|
<<"remove">> ->
|
2002-12-13 21:58:27 +01:00
|
|
|
process_item_attrs(Item#roster{subscription = remove},
|
2002-12-14 21:07:26 +01:00
|
|
|
Attrs);
|
2002-12-13 21:58:27 +01:00
|
|
|
_ ->
|
2002-12-14 21:07:26 +01:00
|
|
|
process_item_attrs(Item, Attrs)
|
2002-12-13 21:58:27 +01:00
|
|
|
end;
|
2008-07-21 17:29:52 +02:00
|
|
|
'ask' ->
|
2002-12-14 21:07:26 +01:00
|
|
|
process_item_attrs(Item, Attrs);
|
2002-12-13 21:58:27 +01:00
|
|
|
_ ->
|
2006-05-23 22:19:37 +02:00
|
|
|
process_item_attrs(Item, Attrs)
|
2002-12-13 21:58:27 +01:00
|
|
|
end;
|
|
|
|
process_item_attrs(Item, []) ->
|
|
|
|
Item.
|
|
|
|
|
2002-12-11 21:57:45 +01:00
|
|
|
|
2008-07-21 17:29:52 +02:00
|
|
|
process_item_els(Item, [#xmlel{ns = NS, name = Name} = El | Els]) ->
|
2002-12-13 21:58:27 +01:00
|
|
|
case Name of
|
2008-07-21 17:29:52 +02:00
|
|
|
'group' ->
|
|
|
|
Groups = [exmpp_xml:get_cdata(El) | Item#roster.groups],
|
2002-12-13 21:58:27 +01:00
|
|
|
process_item_els(Item#roster{groups = Groups}, Els);
|
|
|
|
_ ->
|
2008-07-21 17:29:52 +02:00
|
|
|
if
|
|
|
|
NS == ?NS_JABBER_CLIENT; NS == ?NS_JABBER_SERVER ->
|
2002-12-13 21:58:27 +01:00
|
|
|
process_item_els(Item, Els);
|
2008-07-21 17:29:52 +02:00
|
|
|
true ->
|
|
|
|
XEls = [El | Item#roster.xs],
|
2002-12-13 21:58:27 +01:00
|
|
|
process_item_els(Item#roster{xs = XEls}, Els)
|
|
|
|
end
|
|
|
|
end;
|
2008-07-21 17:29:52 +02:00
|
|
|
process_item_els(Item, [_ | Els]) ->
|
2002-12-13 21:58:27 +01:00
|
|
|
process_item_els(Item, Els);
|
|
|
|
process_item_els(Item, []) ->
|
|
|
|
Item.
|
2002-12-14 21:07:26 +01:00
|
|
|
|
|
|
|
|
2009-01-03 16:15:38 +01:00
|
|
|
push_item(User, Server, From, Item) when is_binary(User), is_binary(Server) ->
|
|
|
|
ejabberd_sm:route(exmpp_jid:make_jid(),
|
2009-01-21 14:34:26 +01:00
|
|
|
exmpp_jid:make_jid(User, Server),
|
2008-07-21 17:29:52 +02:00
|
|
|
#xmlel{name = 'broadcast', children =
|
2004-12-19 21:47:35 +01:00
|
|
|
[{item,
|
|
|
|
Item#roster.jid,
|
|
|
|
Item#roster.subscription}]}),
|
2002-12-14 21:07:26 +01:00
|
|
|
lists:foreach(fun(Resource) ->
|
2005-04-17 20:08:34 +02:00
|
|
|
push_item(User, Server, Resource, From, Item)
|
|
|
|
end, ejabberd_sm:get_user_resources(User, Server)).
|
2002-12-14 21:07:26 +01:00
|
|
|
|
2005-11-22 19:43:06 +01:00
|
|
|
% TODO: don't push to those who didn't load roster
|
2009-01-03 16:15:38 +01:00
|
|
|
push_item(User, Server, Resource, From, Item) when is_binary(User),
|
|
|
|
is_binary(Server) ->
|
2008-07-21 17:29:52 +02:00
|
|
|
Request = #xmlel{ns = ?NS_ROSTER, name = 'query',
|
2008-09-29 13:30:25 +02:00
|
|
|
children = [item_to_xml(Item)]},
|
2008-12-01 16:53:30 +01:00
|
|
|
ResIQ = exmpp_iq:set(?NS_JABBER_CLIENT, Request,
|
|
|
|
"push" ++ randoms:get_string()),
|
2003-12-17 21:13:21 +01:00
|
|
|
ejabberd_router:route(
|
|
|
|
From,
|
2008-07-21 17:29:52 +02:00
|
|
|
exmpp_jid:make_jid(User, Server, Resource),
|
|
|
|
ResIQ).
|
2002-12-14 21:07:26 +01:00
|
|
|
|
2009-01-03 16:15:38 +01:00
|
|
|
get_subscription_lists(_, User, Server)
|
|
|
|
when is_binary(User), is_binary(Server) ->
|
2008-08-26 15:59:04 +02:00
|
|
|
try
|
2009-01-03 16:15:38 +01:00
|
|
|
US = {User,Server},
|
2008-08-26 15:59:04 +02:00
|
|
|
case mnesia:dirty_index_read(roster, US, #roster.us) of
|
|
|
|
Items when is_list(Items) ->
|
|
|
|
fill_subscription_lists(Items, [], []);
|
|
|
|
_ ->
|
|
|
|
{[], []}
|
|
|
|
end
|
|
|
|
catch
|
2002-12-17 21:49:45 +01:00
|
|
|
_ ->
|
|
|
|
{[], []}
|
|
|
|
end.
|
|
|
|
|
|
|
|
fill_subscription_lists([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
|
|
|
|
both ->
|
|
|
|
fill_subscription_lists(Is, [J | F], [J | T]);
|
|
|
|
from ->
|
|
|
|
fill_subscription_lists(Is, [J | F], T);
|
|
|
|
to ->
|
|
|
|
fill_subscription_lists(Is, F, [J | T]);
|
|
|
|
_ ->
|
|
|
|
fill_subscription_lists(Is, F, T)
|
|
|
|
end;
|
|
|
|
fill_subscription_lists([], F, T) ->
|
|
|
|
{F, T}.
|
|
|
|
|
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
|
|
|
|
2002-12-20 21:42:08 +01:00
|
|
|
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2006-05-23 22:19:37 +02:00
|
|
|
in_subscription(_, User, Server, JID, Type, Reason) ->
|
|
|
|
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) ->
|
2008-10-06 17:16:09 +02:00
|
|
|
process_subscription(out, User, Server, JID, Type, <<>>).
|
2003-12-11 21:31:40 +01:00
|
|
|
|
2009-01-03 16:15:38 +01:00
|
|
|
process_subscription(Direction, User, Server, JID1, Type, Reason)
|
|
|
|
when is_binary(User), is_binary(Server) ->
|
2008-08-26 15:59:04 +02:00
|
|
|
try
|
2009-01-03 16:15:38 +01:00
|
|
|
US = {User, Server},
|
2008-08-26 15:59:04 +02:00
|
|
|
LJID = jlib:short_prepd_jid(JID1),
|
|
|
|
F = fun() ->
|
2009-01-03 16:15:38 +01:00
|
|
|
Item = case mnesia:read({roster, {User, Server, LJID}}) of
|
2008-08-26 15:59:04 +02:00
|
|
|
[] ->
|
|
|
|
JID = jlib:short_jid(JID1),
|
2009-01-03 16:15:38 +01:00
|
|
|
#roster{usj = {User, Server, LJID},
|
2008-08-26 15:59:04 +02:00
|
|
|
us = US,
|
|
|
|
jid = JID};
|
|
|
|
[I] ->
|
|
|
|
I
|
2003-12-11 21:31:40 +01:00
|
|
|
end,
|
2008-08-26 15:59:04 +02:00
|
|
|
NewState = case Direction of
|
|
|
|
out ->
|
|
|
|
out_state_change(Item#roster.subscription,
|
|
|
|
Item#roster.ask,
|
|
|
|
Type);
|
|
|
|
in ->
|
|
|
|
in_state_change(Item#roster.subscription,
|
|
|
|
Item#roster.ask,
|
|
|
|
Type)
|
|
|
|
end,
|
|
|
|
AutoReply = case Direction of
|
|
|
|
out ->
|
|
|
|
none;
|
|
|
|
in ->
|
|
|
|
in_auto_reply(Item#roster.subscription,
|
|
|
|
Item#roster.ask,
|
|
|
|
Type)
|
|
|
|
end,
|
|
|
|
AskMessage = case NewState of
|
|
|
|
{_, both} -> Reason;
|
|
|
|
{_, in} -> Reason;
|
2008-10-06 17:16:09 +02:00
|
|
|
_ -> <<>>
|
2008-08-26 15:59:04 +02:00
|
|
|
end,
|
|
|
|
case NewState of
|
|
|
|
none ->
|
|
|
|
{none, AutoReply};
|
|
|
|
{none, none} when Item#roster.subscription == none,
|
|
|
|
Item#roster.ask == in ->
|
2009-01-03 16:15:38 +01:00
|
|
|
mnesia:delete({roster, {User, Server, LJID}}),
|
2008-08-26 15:59:04 +02:00
|
|
|
{none, AutoReply};
|
|
|
|
{Subscription, Pending} ->
|
2008-10-06 17:16:09 +02:00
|
|
|
AskBinary = case AskMessage of
|
|
|
|
undefined -> <<>>;
|
|
|
|
B -> B
|
|
|
|
end,
|
2008-08-26 15:59:04 +02:00
|
|
|
NewItem = Item#roster{subscription = Subscription,
|
|
|
|
ask = Pending,
|
2008-10-06 17:16:09 +02:00
|
|
|
askmessage = AskBinary},
|
2008-08-26 15:59:04 +02:00
|
|
|
mnesia:write(NewItem),
|
|
|
|
{{push, NewItem}, AutoReply}
|
|
|
|
end
|
2004-01-18 21:42:09 +01:00
|
|
|
end,
|
2008-08-26 15:59:04 +02:00
|
|
|
case mnesia:transaction(F) of
|
|
|
|
{atomic, {Push, AutoReply}} ->
|
|
|
|
case AutoReply of
|
|
|
|
none ->
|
|
|
|
ok;
|
|
|
|
_ ->
|
|
|
|
ejabberd_router:route(
|
2009-01-21 14:34:26 +01:00
|
|
|
exmpp_jid:make_jid(User, Server), JID1,
|
2008-08-26 15:59:04 +02:00
|
|
|
exmpp_presence:AutoReply())
|
|
|
|
end,
|
|
|
|
case Push of
|
|
|
|
{push, Item} ->
|
|
|
|
if
|
|
|
|
Item#roster.subscription == none,
|
|
|
|
Item#roster.ask == in ->
|
|
|
|
ok;
|
|
|
|
true ->
|
|
|
|
push_item(User, Server,
|
2009-01-21 14:34:26 +01:00
|
|
|
exmpp_jid:make_jid(User, Server), Item)
|
2008-08-26 15:59:04 +02:00
|
|
|
end,
|
|
|
|
true;
|
|
|
|
none ->
|
|
|
|
false
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
catch
|
2002-12-18 21:26:08 +01:00
|
|
|
_ ->
|
2002-12-20 21:42:08 +01:00
|
|
|
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).
|
|
|
|
-define(NNSD, {to, none}).
|
|
|
|
-define(NISD, {to, in}).
|
|
|
|
-else.
|
|
|
|
-define(NNSD, none).
|
|
|
|
-define(NISD, none).
|
|
|
|
-endif.
|
2003-12-11 21:31:40 +01:00
|
|
|
|
|
|
|
in_state_change(none, none, subscribe) -> {none, in};
|
2005-12-11 20:48:31 +01:00
|
|
|
in_state_change(none, none, subscribed) -> ?NNSD;
|
2003-12-11 21:31:40 +01:00
|
|
|
in_state_change(none, none, unsubscribe) -> none;
|
|
|
|
in_state_change(none, none, unsubscribed) -> none;
|
|
|
|
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;
|
2005-12-11 20:48:31 +01:00
|
|
|
in_state_change(none, in, subscribed) -> ?NISD;
|
2003-12-11 21:31:40 +01:00
|
|
|
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};
|
|
|
|
in_state_change(none, both, unsubscribed) -> {none, in};
|
|
|
|
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) -> none;
|
|
|
|
in_state_change(from, none, unsubscribe) -> {none, none};
|
|
|
|
in_state_change(from, none, unsubscribed) -> none;
|
|
|
|
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;
|
|
|
|
out_state_change(none, none, unsubscribed) -> none;
|
2006-05-29 18:48:20 +02:00
|
|
|
out_state_change(none, out, subscribe) -> {none, out}; %% We need to resend query (RFC3921, section 9.2)
|
2003-12-11 21:31:40 +01:00
|
|
|
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) -> 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}.
|
|
|
|
|
2004-01-18 21:42:09 +01:00
|
|
|
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
|
|
|
|
2009-01-03 16:15:38 +01:00
|
|
|
remove_user(User, Server)
|
|
|
|
when is_binary(User), is_binary(Server) ->
|
2008-08-26 15:59:04 +02:00
|
|
|
try
|
2009-01-03 16:15:38 +01:00
|
|
|
LUser = list_to_binary(exmpp_stringprep:nodeprep(User)),
|
|
|
|
LServer = list_to_binary(exmpp_stringprep:nameprep(Server)),
|
2008-08-26 15:59:04 +02:00
|
|
|
US = {LUser, LServer},
|
|
|
|
F = fun() ->
|
|
|
|
lists:foreach(fun(R) ->
|
|
|
|
mnesia:delete_object(R)
|
|
|
|
end,
|
|
|
|
mnesia:index_read(roster, US, #roster.us))
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F)
|
|
|
|
catch
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end.
|
2003-01-26 21:16:53 +01:00
|
|
|
|
2003-02-02 20:49:19 +01:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2008-08-26 15:59:04 +02:00
|
|
|
set_items(User, Server, #xmlel{children = Els}) ->
|
|
|
|
try
|
|
|
|
LUser = exmpp_stringprep:nodeprep(User),
|
|
|
|
LServer = exmpp_stringprep:nameprep(Server),
|
|
|
|
F = fun() ->
|
|
|
|
lists:foreach(fun(El) ->
|
|
|
|
process_item_set_t(LUser, LServer, El)
|
|
|
|
end, Els)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F)
|
|
|
|
catch
|
|
|
|
_ ->
|
|
|
|
ok
|
|
|
|
end.
|
2003-02-02 20:49:19 +01:00
|
|
|
|
2008-07-21 17:29:52 +02:00
|
|
|
process_item_set_t(LUser, LServer, #xmlel{} = El) ->
|
|
|
|
try
|
2009-01-21 14:34:26 +01:00
|
|
|
JID1 = exmpp_jid:parse_jid(exmpp_xml:get_attribute_as_list(El, 'jid', <<>>)),
|
2008-08-26 15:59:04 +02:00
|
|
|
JID = jlib:short_jid(JID1),
|
|
|
|
LJID = jlib:short_prepd_jid(JID1),
|
2008-07-21 17:29:52 +02:00
|
|
|
Item = #roster{usj = {LUser, LServer, LJID},
|
|
|
|
us = {LUser, LServer},
|
|
|
|
jid = JID},
|
|
|
|
Item1 = process_item_attrs_ws(Item, El#xmlel.attrs),
|
|
|
|
Item2 = process_item_els(Item1, El#xmlel.children),
|
|
|
|
case Item2#roster.subscription of
|
|
|
|
remove ->
|
|
|
|
mnesia:delete({roster, {LUser, LServer, LJID}});
|
|
|
|
_ ->
|
|
|
|
mnesia:write(Item2)
|
|
|
|
end
|
|
|
|
catch
|
2003-02-02 20:49:19 +01:00
|
|
|
_ ->
|
2008-07-21 17:29:52 +02:00
|
|
|
ok
|
2003-02-20 18:12:03 +01:00
|
|
|
end;
|
2005-04-17 20:08:34 +02:00
|
|
|
process_item_set_t(_LUser, _LServer, _) ->
|
2003-02-20 18:12:03 +01:00
|
|
|
ok.
|
2003-02-02 20:49:19 +01:00
|
|
|
|
2008-07-21 17:29:52 +02:00
|
|
|
process_item_attrs_ws(Item, [#xmlattr{name = Attr, value = Val} | Attrs]) ->
|
2003-02-02 20:49:19 +01:00
|
|
|
case Attr of
|
2008-07-21 17:29:52 +02:00
|
|
|
'name' ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item#roster{name = Val}, Attrs);
|
2008-07-21 17:29:52 +02:00
|
|
|
'subscription' ->
|
2003-02-02 20:49:19 +01:00
|
|
|
case Val of
|
2009-01-08 15:54:00 +01:00
|
|
|
<<"remove">> ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item#roster{subscription = remove},
|
|
|
|
Attrs);
|
2009-01-08 15:54:00 +01:00
|
|
|
<<"none">> ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item#roster{subscription = none},
|
|
|
|
Attrs);
|
2009-01-08 15:54:00 +01:00
|
|
|
<<"both">> ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item#roster{subscription = both},
|
|
|
|
Attrs);
|
2009-01-08 15:54:00 +01:00
|
|
|
<<"from">> ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item#roster{subscription = from},
|
|
|
|
Attrs);
|
2009-01-08 15:54:00 +01:00
|
|
|
<<"to">> ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item#roster{subscription = to},
|
|
|
|
Attrs);
|
|
|
|
_ ->
|
|
|
|
process_item_attrs_ws(Item, Attrs)
|
|
|
|
end;
|
2008-07-21 17:29:52 +02:00
|
|
|
'ask' ->
|
2003-02-02 20:49:19 +01:00
|
|
|
process_item_attrs_ws(Item, Attrs);
|
|
|
|
_ ->
|
2006-05-23 22:19:37 +02:00
|
|
|
process_item_attrs_ws(Item, Attrs)
|
2003-02-02 20:49:19 +01:00
|
|
|
end;
|
|
|
|
process_item_attrs_ws(Item, []) ->
|
|
|
|
Item.
|
2003-08-03 21:09:40 +02:00
|
|
|
|
2009-01-03 16:15:38 +01:00
|
|
|
get_in_pending_subscriptions(Ls, User, Server)
|
|
|
|
when is_binary(User), is_binary(Server) ->
|
2009-01-21 14:34:26 +01:00
|
|
|
JID = exmpp_jid:make_jid(User, Server),
|
2009-01-03 16:15:38 +01:00
|
|
|
US = {exmpp_jid:lnode(JID), exmpp_jid:ldomain(JID)},
|
2006-05-26 02:00:32 +02:00
|
|
|
case mnesia:dirty_index_read(roster, US, #roster.us) of
|
2006-05-23 22:19:37 +02:00
|
|
|
Result when list(Result) ->
|
2008-08-26 15:59:04 +02:00
|
|
|
Ls ++ lists:map(
|
2006-05-26 02:00:32 +02:00
|
|
|
fun(R) ->
|
|
|
|
Message = R#roster.askmessage,
|
2008-10-06 17:16:09 +02:00
|
|
|
{U0, S0, R0} = R#roster.jid,
|
2008-07-21 17:29:52 +02:00
|
|
|
Pres1 = exmpp_presence:subscribe(),
|
2008-09-18 16:55:43 +02:00
|
|
|
Pres2 = exmpp_stanza:set_jids(Pres1,
|
2008-10-06 17:16:09 +02:00
|
|
|
exmpp_jid:jid_to_list(U0, S0, R0),
|
2008-09-18 16:55:43 +02:00
|
|
|
exmpp_jid:jid_to_list(JID)),
|
2008-08-26 15:59:04 +02:00
|
|
|
exmpp_presence:set_status(Pres2, Message)
|
2006-05-26 02:00:32 +02:00
|
|
|
end,
|
|
|
|
lists:filter(
|
|
|
|
fun(R) ->
|
|
|
|
case R#roster.ask of
|
|
|
|
in -> true;
|
|
|
|
both -> true;
|
|
|
|
_ -> false
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Result));
|
|
|
|
_ ->
|
|
|
|
Ls
|
2006-05-23 22:19:37 +02:00
|
|
|
end.
|
|
|
|
|
2003-08-03 21:09:40 +02:00
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
2009-01-03 16:15:38 +01:00
|
|
|
get_jid_info(_, User, Server, JID) when is_binary(User), is_binary(Server) ->
|
2008-08-26 15:59:04 +02:00
|
|
|
try
|
|
|
|
LJID = jlib:short_prepd_jid(JID),
|
2009-01-03 16:15:38 +01:00
|
|
|
case catch mnesia:dirty_read(roster, {User, Server, LJID}) of
|
2008-08-26 15:59:04 +02:00
|
|
|
[#roster{subscription = Subscription, groups = Groups}] ->
|
|
|
|
{Subscription, Groups};
|
|
|
|
_ ->
|
|
|
|
LRJID = jlib:short_prepd_bare_jid(JID),
|
|
|
|
if
|
|
|
|
LRJID == LJID ->
|
|
|
|
{none, []};
|
|
|
|
true ->
|
|
|
|
case catch mnesia:dirty_read(
|
2009-01-03 16:15:38 +01:00
|
|
|
roster, {User, Server, LRJID}) of
|
2008-08-26 15:59:04 +02:00
|
|
|
[#roster{subscription = Subscription,
|
|
|
|
groups = Groups}] ->
|
|
|
|
{Subscription, Groups};
|
|
|
|
_ ->
|
|
|
|
{none, []}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
catch
|
2003-08-03 21:09:40 +02:00
|
|
|
_ ->
|
2008-08-26 15:59:04 +02:00
|
|
|
{none, []}
|
2003-08-03 21:09:40 +02:00
|
|
|
end.
|
|
|
|
|
2005-04-17 20:08:34 +02:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
|
|
|
|
update_table() ->
|
|
|
|
Fields = record_info(fields, roster),
|
|
|
|
case mnesia:table_info(roster, attributes) of
|
|
|
|
Fields ->
|
2008-08-26 15:59:04 +02:00
|
|
|
convert_to_exmpp();
|
2005-04-17 20:08:34 +02:00
|
|
|
[uj, user, jid, name, subscription, ask, groups, xattrs, xs] ->
|
2006-05-23 22:19:37 +02:00
|
|
|
convert_table1(Fields);
|
|
|
|
[usj, us, jid, name, subscription, ask, groups, xattrs, xs] ->
|
|
|
|
convert_table2(Fields);
|
2005-04-17 20:08:34 +02:00
|
|
|
_ ->
|
|
|
|
?INFO_MSG("Recreating roster table", []),
|
|
|
|
mnesia:transform_table(roster, ignore, Fields)
|
|
|
|
end.
|
|
|
|
|
2003-08-03 21:09:40 +02:00
|
|
|
|
2006-05-23 22:19:37 +02:00
|
|
|
%% Convert roster table to support virtual host
|
|
|
|
convert_table1(Fields) ->
|
|
|
|
?INFO_MSG("Virtual host support: converting roster table from "
|
|
|
|
"{uj, user, jid, name, subscription, ask, groups, xattrs, xs} format", []),
|
|
|
|
Host = ?MYNAME,
|
|
|
|
{atomic, ok} = mnesia:create_table(
|
|
|
|
mod_roster_tmp_table,
|
|
|
|
[{disc_only_copies, [node()]},
|
|
|
|
{type, bag},
|
|
|
|
{local_content, true},
|
|
|
|
{record_name, roster},
|
|
|
|
{attributes, record_info(fields, roster)}]),
|
|
|
|
mnesia:del_table_index(roster, user),
|
|
|
|
mnesia:transform_table(roster, ignore, Fields),
|
|
|
|
F1 = fun() ->
|
|
|
|
mnesia:write_lock_table(mod_roster_tmp_table),
|
|
|
|
mnesia:foldl(
|
2008-08-26 15:59:04 +02:00
|
|
|
fun(#roster{usj = {U, {JID_U, JID_S, JID_R}}, us = U, xs = XS, askmessage = AM} = R, _) ->
|
|
|
|
U1 = convert_jid_to_exmpp(U),
|
|
|
|
JID_U1 = convert_jid_to_exmpp(JID_U),
|
|
|
|
JID_R1 = convert_jid_to_exmpp(JID_R),
|
|
|
|
JID1 = {JID_U1, JID_S, JID_R1},
|
|
|
|
XS1 = convert_xs_to_exmpp(XS),
|
|
|
|
AM1 = convert_askmessage_to_exmpp(AM),
|
2006-05-23 22:19:37 +02:00
|
|
|
mnesia:dirty_write(
|
|
|
|
mod_roster_tmp_table,
|
2008-08-26 15:59:04 +02:00
|
|
|
R#roster{usj = {U1, Host, JID1},
|
|
|
|
us = {U1, Host}, xs = XS1,
|
|
|
|
askmessage = AM1})
|
2006-05-23 22:19:37 +02:00
|
|
|
end, ok, roster)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F1),
|
|
|
|
mnesia:clear_table(roster),
|
|
|
|
F2 = fun() ->
|
|
|
|
mnesia:write_lock_table(roster),
|
|
|
|
mnesia:foldl(
|
|
|
|
fun(R, _) ->
|
|
|
|
mnesia:dirty_write(R)
|
|
|
|
end, ok, mod_roster_tmp_table)
|
|
|
|
end,
|
|
|
|
mnesia:transaction(F2),
|
|
|
|
mnesia:delete_table(mod_roster_tmp_table).
|
|
|
|
|
|
|
|
|
|
|
|
%% Convert roster table: xattrs fields become
|
|
|
|
convert_table2(Fields) ->
|
|
|
|
?INFO_MSG("Converting roster table from "
|
|
|
|
"{usj, us, jid, name, subscription, ask, groups, xattrs, xs} format", []),
|
2008-08-26 15:59:04 +02:00
|
|
|
mnesia:transform_table(roster, ignore, Fields),
|
|
|
|
convert_to_exmpp().
|
|
|
|
|
|
|
|
|
|
|
|
convert_to_exmpp() ->
|
|
|
|
Fun = fun() ->
|
|
|
|
case mnesia:first(roster) of
|
|
|
|
'$end_of_table' ->
|
|
|
|
none;
|
|
|
|
Key ->
|
|
|
|
case mnesia:read({roster, Key}) of
|
|
|
|
[#roster{jid = {_, _, undefined}}] ->
|
|
|
|
none;
|
|
|
|
[#roster{jid = {_, _, ""}}] ->
|
|
|
|
mnesia:foldl(fun convert_to_exmpp2/2,
|
|
|
|
done, roster, write)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
2008-08-27 11:45:01 +02:00
|
|
|
mnesia:transaction(Fun).
|
2008-08-26 15:59:04 +02:00
|
|
|
|
|
|
|
convert_to_exmpp2(#roster{
|
|
|
|
usj = {USJ_U, USJ_S, {USJ_JU, USJ_JS, USJ_JR}} = Key,
|
|
|
|
us = {US_U, US_S},
|
|
|
|
jid = {JID_U, JID_S, JID_R},
|
|
|
|
xs = XS, askmessage = AM} = R, Acc) ->
|
|
|
|
% Remove old entry.
|
|
|
|
mnesia:delete({roster, Key}),
|
|
|
|
% Convert "" to undefined in JIDs.
|
|
|
|
USJ_U1 = convert_jid_to_exmpp(USJ_U),
|
|
|
|
USJ_JU1 = convert_jid_to_exmpp(USJ_JU),
|
|
|
|
USJ_JR1 = convert_jid_to_exmpp(USJ_JR),
|
|
|
|
US_U1 = convert_jid_to_exmpp(US_U),
|
|
|
|
JID_U1 = convert_jid_to_exmpp(JID_U),
|
|
|
|
JID_R1 = convert_jid_to_exmpp(JID_R),
|
|
|
|
% Convert xs.
|
|
|
|
XS1 = convert_xs_to_exmpp(XS),
|
|
|
|
% Convert askmessage.
|
|
|
|
AM1 = convert_askmessage_to_exmpp(AM),
|
|
|
|
% Prepare the new record.
|
|
|
|
New_R = R#roster{
|
|
|
|
usj = {USJ_U1, USJ_S, {USJ_JU1, USJ_JS, USJ_JR1}},
|
|
|
|
us = {US_U1, US_S},
|
|
|
|
jid = {JID_U1, JID_S, JID_R1},
|
|
|
|
xs = XS1, askmessage = AM1},
|
|
|
|
% Write the new record.
|
|
|
|
mnesia:write(New_R),
|
|
|
|
Acc.
|
|
|
|
|
|
|
|
convert_jid_to_exmpp("") -> undefined;
|
|
|
|
convert_jid_to_exmpp(V) -> V.
|
|
|
|
|
|
|
|
convert_xs_to_exmpp(Els) ->
|
|
|
|
convert_xs_to_exmpp(Els, []).
|
|
|
|
|
|
|
|
convert_xs_to_exmpp([El | Rest], Result) ->
|
|
|
|
New_El = exmpp_xml:xmlelement_to_xmlel(El,
|
|
|
|
[?NS_JABBER_CLIENT], [{?NS_XMPP, ?NS_XMPP_pfx}]),
|
|
|
|
convert_xs_to_exmpp(Rest, [New_El | Result]);
|
|
|
|
convert_xs_to_exmpp([], Result) ->
|
|
|
|
lists:reverse(Result).
|
|
|
|
|
|
|
|
convert_askmessage_to_exmpp(AM) when is_binary(AM) ->
|
|
|
|
AM;
|
|
|
|
convert_askmessage_to_exmpp(AM) ->
|
|
|
|
list_to_binary(AM).
|
2007-08-24 18:15:05 +02:00
|
|
|
|
|
|
|
webadmin_page(_, Host,
|
|
|
|
#request{us = _US,
|
|
|
|
path = ["user", U, "roster"],
|
|
|
|
q = Query,
|
|
|
|
lang = Lang} = _Request) ->
|
|
|
|
Res = user_roster(U, Host, Query, Lang),
|
|
|
|
{stop, Res};
|
|
|
|
|
|
|
|
webadmin_page(Acc, _, _) -> Acc.
|
|
|
|
|
|
|
|
user_roster(User, Server, Query, Lang) ->
|
2008-08-26 15:59:04 +02:00
|
|
|
try
|
2008-09-18 16:55:43 +02:00
|
|
|
LUser = exmpp_stringprep:nodeprep(User),
|
|
|
|
LServer = exmpp_stringprep:nameprep(Server),
|
|
|
|
US = {LUser, LServer},
|
2008-08-26 15:59:04 +02:00
|
|
|
Items1 = mnesia:dirty_index_read(roster, US, #roster.us),
|
|
|
|
Res = user_roster_parse_query(User, Server, Items1, Query),
|
|
|
|
Items = mnesia:dirty_index_read(roster, US, #roster.us),
|
|
|
|
SItems = lists:sort(Items),
|
|
|
|
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),
|
2009-01-19 12:59:40 +01:00
|
|
|
TDJID = build_contact_jid_td(R#roster.jid),
|
2008-08-26 15:59:04 +02:00
|
|
|
?XE("tr",
|
2009-01-19 12:59:40 +01:00
|
|
|
[TDJID,
|
2008-08-26 15:59:04 +02:00
|
|
|
?XAC("td", [{"class", "valign"}],
|
2009-01-08 15:54:00 +01:00
|
|
|
binary_to_list(R#roster.name)),
|
2008-08-26 15:59:04 +02:00
|
|
|
?XAC("td", [{"class", "valign"}],
|
|
|
|
atom_to_list(R#roster.subscription)),
|
|
|
|
?XAC("td", [{"class", "valign"}],
|
|
|
|
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),
|
|
|
|
"Validate")]);
|
|
|
|
true ->
|
|
|
|
?X("td")
|
|
|
|
end,
|
|
|
|
?XAE("td", [{"class", "valign"}],
|
|
|
|
[?INPUTT("submit",
|
|
|
|
"remove" ++
|
|
|
|
ejabberd_web_admin:term_to_id(R#roster.jid),
|
|
|
|
"Remove")])])
|
|
|
|
end, SItems))])]
|
|
|
|
end,
|
|
|
|
[?XC("h1", ?T("Roster of ") ++ us_to_list(US))] ++
|
|
|
|
case Res of
|
2009-01-19 16:27:07 +01:00
|
|
|
ok -> [?XREST("Submitted")];
|
|
|
|
error -> [?XREST("Bad format")];
|
2008-08-26 15:59:04 +02:00
|
|
|
nothing -> []
|
|
|
|
end ++
|
|
|
|
[?XAE("form", [{"action", ""}, {"method", "post"}],
|
|
|
|
FItems ++
|
|
|
|
[?P,
|
|
|
|
?INPUT("text", "newjid", ""), ?C(" "),
|
|
|
|
?INPUTT("submit", "addjid", "Add Jabber ID")
|
|
|
|
])]
|
|
|
|
catch
|
|
|
|
_ ->
|
|
|
|
[?XC("h1", ?T("Roster of ") ++ us_to_list({User, Server}))] ++
|
|
|
|
[?CT("Bad format"), ?P] ++
|
|
|
|
[?XAE("form", [{"action", ""}, {"method", "post"}],
|
|
|
|
[?P,
|
|
|
|
?INPUT("text", "newjid", ""), ?C(" "),
|
|
|
|
?INPUTT("submit", "addjid", "Add Jabber ID")
|
|
|
|
])]
|
|
|
|
end.
|
2007-08-24 18:15:05 +02:00
|
|
|
|
2009-01-19 12:59:40 +01:00
|
|
|
build_contact_jid_td({U, S, R}) ->
|
|
|
|
%% Convert {U, S, R} into {jid, U, S, R, U, S, R}:
|
|
|
|
ContactJID = exmpp_jid:make_jid(U, S, R),
|
|
|
|
JIDURI = case {exmpp_jid:lnode(ContactJID), exmpp_jid:ldomain(ContactJID)} of
|
|
|
|
{undefined, _} -> "";
|
|
|
|
{CUser, CServer} ->
|
|
|
|
CUser_S = binary_to_list(CUser),
|
|
|
|
CServer_S = binary_to_list(CServer),
|
|
|
|
case lists:member(CServer_S, ?MYHOSTS) of
|
|
|
|
false -> "";
|
|
|
|
true -> "/admin/server/" ++ CServer_S ++ "/user/" ++ CUser_S ++ "/"
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
case JIDURI of
|
|
|
|
[] ->
|
2009-01-21 14:34:26 +01:00
|
|
|
?XAC('td', [?XMLATTR('class', <<"valign">>)], exmpp_jid:jid_to_list(ContactJID));
|
2009-01-19 12:59:40 +01:00
|
|
|
URI when is_list(URI) ->
|
2009-01-21 14:34:26 +01:00
|
|
|
?XAE('td', [?XMLATTR('class', <<"valign">>)], [?AC(JIDURI, exmpp_jid:jid_to_list(ContactJID))])
|
2009-01-19 12:59:40 +01:00
|
|
|
end.
|
|
|
|
|
2007-08-24 18:15:05 +02:00
|
|
|
user_roster_parse_query(User, Server, Items, Query) ->
|
|
|
|
case lists:keysearch("addjid", 1, Query) of
|
|
|
|
{value, _} ->
|
|
|
|
case lists:keysearch("newjid", 1, Query) of
|
|
|
|
{value, {_, undefined}} ->
|
|
|
|
error;
|
|
|
|
{value, {_, SJID}} ->
|
2008-07-21 17:29:52 +02:00
|
|
|
try
|
2009-01-21 14:34:26 +01:00
|
|
|
JID = exmpp_jid:parse_jid(SJID),
|
2008-07-21 17:29:52 +02:00
|
|
|
user_roster_subscribe_jid(User, Server, JID),
|
|
|
|
ok
|
|
|
|
catch
|
|
|
|
_ ->
|
2007-08-24 18:15:05 +02:00
|
|
|
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
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
|
|
user_roster_subscribe_jid(User, Server, JID) ->
|
|
|
|
out_subscription(User, Server, JID, subscribe),
|
2009-01-21 14:34:26 +01:00
|
|
|
UJID = exmpp_jid:make_jid(User, Server),
|
2007-08-24 18:15:05 +02:00
|
|
|
ejabberd_router:route(
|
2008-07-21 17:29:52 +02:00
|
|
|
UJID, JID, exmpp_presence:subscribe()).
|
2007-08-24 18:15:05 +02: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), 1, Query) of
|
|
|
|
{value, _} ->
|
2008-07-21 17:29:52 +02:00
|
|
|
{U, S, R} = JID,
|
|
|
|
JID1 = exmpp_jid:make_jid(U, S, R),
|
2007-08-24 18:15:05 +02:00
|
|
|
out_subscription(
|
|
|
|
User, Server, JID1, subscribed),
|
2009-01-21 14:34:26 +01:00
|
|
|
UJID = exmpp_jid:make_jid(User, Server),
|
2007-08-24 18:15:05 +02:00
|
|
|
ejabberd_router:route(
|
2008-07-21 17:29:52 +02:00
|
|
|
UJID, JID1, exmpp_presence:subscribed()),
|
2007-08-24 18:15:05 +02:00
|
|
|
throw(submitted);
|
|
|
|
false ->
|
|
|
|
case lists:keysearch(
|
|
|
|
"remove" ++ ejabberd_web_admin:term_to_id(JID), 1, Query) of
|
|
|
|
{value, _} ->
|
2009-01-21 14:34:26 +01:00
|
|
|
UJID = exmpp_jid:make_jid(User, Server),
|
2008-07-21 17:29:52 +02:00
|
|
|
Attrs1 = exmpp_xml:set_attribute_in_list([],
|
2008-08-06 15:51:42 +02:00
|
|
|
'jid', exmpp_jid:jid_to_list(JID)),
|
2008-07-21 17:29:52 +02:00
|
|
|
Attrs2 = exmpp_xml:set_attribute_in_list(Attrs1,
|
|
|
|
'subscription', "remove"),
|
|
|
|
Item = #xmlel{ns = ?NS_ROSTER, name = 'item',
|
|
|
|
attrs = Attrs2},
|
|
|
|
Request = #xmlel{
|
|
|
|
ns = ?NS_ROSTER,
|
|
|
|
name = 'query',
|
|
|
|
children = [Item]},
|
2007-08-24 18:15:05 +02:00
|
|
|
process_iq(
|
|
|
|
UJID, UJID,
|
2008-07-21 17:29:52 +02:00
|
|
|
exmpp_iq:set(?NS_JABBER_CLIENT, Request)),
|
2007-08-24 18:15:05 +02:00
|
|
|
throw(submitted);
|
|
|
|
false ->
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end, Items),
|
|
|
|
nothing.
|
|
|
|
|
|
|
|
us_to_list({User, Server}) ->
|
2008-08-06 15:51:42 +02:00
|
|
|
exmpp_jid:bare_jid_to_list(User, Server).
|
2007-08-24 18:15:05 +02:00
|
|
|
|
|
|
|
webadmin_user(Acc, _User, _Server, Lang) ->
|
|
|
|
Acc ++ [?XE("h3", [?ACT("roster/", "Roster")])].
|
|
|
|
|