2013-03-27 17:53:56 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : mod_carboncopy.erl
|
|
|
|
%%% Author : Eric Cestari <ecestari@process-one.net>
|
|
|
|
%%% Purpose : Message Carbons XEP-0280 0.8
|
|
|
|
%%% Created : 5 May 2008 by Mickael Remond <mremond@process-one.net>
|
2013-08-12 14:25:05 +02:00
|
|
|
%%% Usage : Add the following line in modules section of ejabberd.yml:
|
2013-03-27 17:53:56 +01:00
|
|
|
%%% {mod_carboncopy, []}
|
|
|
|
%%%
|
|
|
|
%%%
|
2016-01-13 12:29:14 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2016 ProcessOne
|
2013-03-27 17:53:56 +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.
|
|
|
|
%%%
|
2014-02-22 11:27:40 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License along
|
|
|
|
%%% with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-03-27 17:53:56 +01:00
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module (mod_carboncopy).
|
2015-10-07 00:06:58 +02:00
|
|
|
|
2013-03-27 17:53:56 +01:00
|
|
|
-author ('ecestari@process-one.net').
|
2015-05-21 17:02:36 +02:00
|
|
|
-protocol({xep, 280, '0.8'}).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
-behavior(gen_mod).
|
|
|
|
|
|
|
|
%% API:
|
|
|
|
-export([start/2,
|
|
|
|
stop/1]).
|
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-export([user_send_packet/1, user_receive_packet/1,
|
|
|
|
iq_handler/1, remove_connection/4, disco_features/5,
|
2016-07-07 11:17:38 +02:00
|
|
|
is_carbon_copy/1, mod_opt_type/1, depends/2]).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2016-07-18 14:01:32 +02:00
|
|
|
-include("xmpp.hrl").
|
2013-03-27 17:53:56 +01:00
|
|
|
-define(PROCNAME, ?MODULE).
|
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-type direction() :: sent | received.
|
|
|
|
|
2016-04-15 14:48:56 +02:00
|
|
|
-callback init(binary(), gen_mod:opts()) -> any().
|
|
|
|
-callback enable(binary(), binary(), binary(), binary()) -> ok | {error, any()}.
|
|
|
|
-callback disable(binary(), binary(), binary()) -> ok | {error, any()}.
|
|
|
|
-callback list(binary(), binary()) -> [{binary(), binary()}].
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec is_carbon_copy(stanza()) -> boolean().
|
2016-11-22 22:21:34 +01:00
|
|
|
is_carbon_copy(#message{meta = #{carbon_copy := true}}) ->
|
|
|
|
true;
|
|
|
|
is_carbon_copy(_) ->
|
|
|
|
false.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
start(Host, Opts) ->
|
|
|
|
IQDisc = gen_mod:get_opt(iqdisc, Opts,fun gen_iq_handler:check_type/1, one_queue),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:add(disco_local_features, Host, ?MODULE, disco_features, 50),
|
2016-04-15 14:48:56 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:init(Host, Opts),
|
2013-03-27 17:53:56 +01:00
|
|
|
ejabberd_hooks:add(unset_presence_hook,Host, ?MODULE, remove_connection, 10),
|
|
|
|
%% why priority 89: to define clearly that we must run BEFORE mod_logdb hook (90)
|
|
|
|
ejabberd_hooks:add(user_send_packet,Host, ?MODULE, user_send_packet, 89),
|
|
|
|
ejabberd_hooks:add(user_receive_packet,Host, ?MODULE, user_receive_packet, 89),
|
2016-07-18 14:01:32 +02:00
|
|
|
gen_iq_handler:add_iq_handler(ejabberd_sm, Host, ?NS_CARBONS_2, ?MODULE, iq_handler, IQDisc).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
stop(Host) ->
|
2014-07-20 20:20:44 +02:00
|
|
|
gen_iq_handler:remove_iq_handler(ejabberd_sm, Host, ?NS_CARBONS_2),
|
2017-01-09 15:02:17 +01:00
|
|
|
ejabberd_hooks:delete(disco_local_features, Host, ?MODULE, disco_features, 50),
|
2013-03-27 17:53:56 +01:00
|
|
|
%% why priority 89: to define clearly that we must run BEFORE mod_logdb hook (90)
|
|
|
|
ejabberd_hooks:delete(user_send_packet,Host, ?MODULE, user_send_packet, 89),
|
|
|
|
ejabberd_hooks:delete(user_receive_packet,Host, ?MODULE, user_receive_packet, 89),
|
|
|
|
ejabberd_hooks:delete(unset_presence_hook,Host, ?MODULE, remove_connection, 10).
|
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec disco_features({error, stanza_error()} | {result, [binary()]} | empty,
|
|
|
|
jid(), jid(), binary(), binary()) ->
|
|
|
|
{error, stanza_error()} | {result, [binary()]}.
|
|
|
|
disco_features({error, Err}, _From, _To, _Node, _Lang) ->
|
|
|
|
{error, Err};
|
|
|
|
disco_features(empty, _From, _To, <<"">>, _Lang) ->
|
|
|
|
{result, [?NS_CARBONS_2]};
|
|
|
|
disco_features({result, Feats}, _From, _To, <<"">>, _Lang) ->
|
|
|
|
{result, [?NS_CARBONS_2|Feats]};
|
|
|
|
disco_features(Acc, _From, _To, _Node, _Lang) ->
|
|
|
|
Acc.
|
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec iq_handler(iq()) -> iq().
|
|
|
|
iq_handler(#iq{type = set, lang = Lang, from = From,
|
|
|
|
sub_els = [El]} = IQ) when is_record(El, carbons_enable);
|
|
|
|
is_record(El, carbons_disable) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
{U, S, R} = jid:tolower(From),
|
2016-07-18 14:01:32 +02:00
|
|
|
Result = case El of
|
|
|
|
#carbons_enable{} ->
|
|
|
|
?INFO_MSG("carbons enabled for user ~s@~s/~s", [U,S,R]),
|
|
|
|
enable(S, U, R, ?NS_CARBONS_2);
|
|
|
|
#carbons_disable{} ->
|
|
|
|
?INFO_MSG("carbons disabled for user ~s@~s/~s", [U,S,R]),
|
|
|
|
disable(S, U, R)
|
|
|
|
end,
|
2015-10-07 00:06:58 +02:00
|
|
|
case Result of
|
2016-07-18 14:01:32 +02:00
|
|
|
ok ->
|
2014-05-29 15:21:11 +02:00
|
|
|
?DEBUG("carbons IQ result: ok", []),
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_iq_result(IQ);
|
2013-03-27 17:53:56 +01:00
|
|
|
{error,_Error} ->
|
2016-03-31 10:00:29 +02:00
|
|
|
?ERROR_MSG("Error enabling / disabling carbons: ~p", [Result]),
|
|
|
|
Txt = <<"Database failure">>,
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_internal_server_error(Txt, Lang))
|
2013-03-27 17:53:56 +01:00
|
|
|
end;
|
2016-07-18 14:01:32 +02:00
|
|
|
iq_handler(#iq{type = set, lang = Lang} = IQ) ->
|
|
|
|
Txt = <<"Only <enable/> or <disable/> tags are allowed">>,
|
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang));
|
|
|
|
iq_handler(#iq{type = get, lang = Lang} = IQ)->
|
2016-03-31 10:00:29 +02:00
|
|
|
Txt = <<"Value 'get' of 'type' attribute is not allowed">>,
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_not_allowed(Txt, Lang)).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec user_send_packet({stanza(), ejabberd_c2s:state()})
|
|
|
|
-> {stanza(), ejabberd_c2s:state()} | {stop, {stanza(), ejabberd_c2s:state()}}.
|
|
|
|
user_send_packet({Packet, C2SState}) ->
|
|
|
|
From = xmpp:get_from(Packet),
|
|
|
|
To = xmpp:get_to(Packet),
|
|
|
|
case check_and_forward(From, To, Packet, sent) of
|
|
|
|
{stop, Pkt} -> {stop, {Pkt, C2SState}};
|
|
|
|
Pkt -> {Pkt, C2SState}
|
|
|
|
end.
|
2014-04-07 22:10:08 +02:00
|
|
|
|
2017-01-09 15:02:17 +01:00
|
|
|
-spec user_receive_packet({stanza(), ejabberd_c2s:state()})
|
|
|
|
-> {stanza(), ejabberd_c2s:state()} | {stop, {stanza(), ejabberd_c2s:state()}}.
|
|
|
|
user_receive_packet({Packet, #{jid := JID} = C2SState}) ->
|
|
|
|
To = xmpp:get_to(Packet),
|
|
|
|
case check_and_forward(JID, To, Packet, received) of
|
|
|
|
{stop, Pkt} -> {stop, {Pkt, C2SState}};
|
|
|
|
Pkt -> {Pkt, C2SState}
|
|
|
|
end.
|
2015-10-07 00:06:58 +02:00
|
|
|
|
|
|
|
% Modified from original version:
|
2013-03-27 17:53:56 +01:00
|
|
|
% - registered to the user_send_packet hook, to be called only once even for multicast
|
|
|
|
% - do not support "private" message mode, and do not modify the original packet in any way
|
|
|
|
% - we also replicate "read" notifications
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec check_and_forward(jid(), jid(), stanza(), direction()) ->
|
|
|
|
stanza() | {stop, stanza()}.
|
2014-11-24 22:37:14 +01:00
|
|
|
check_and_forward(JID, To, Packet, Direction)->
|
2015-07-28 21:34:02 +02:00
|
|
|
case is_chat_message(Packet) andalso
|
2016-11-12 11:27:15 +01:00
|
|
|
not is_muc_pm(To, Packet) andalso
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:has_subtag(Packet, #carbons_private{}) == false andalso
|
|
|
|
xmpp:has_subtag(Packet, #hint{type = 'no-copy'}) == false of
|
2014-05-30 23:44:19 +02:00
|
|
|
true ->
|
|
|
|
case is_carbon_copy(Packet) of
|
|
|
|
false ->
|
2015-06-22 15:56:08 +02:00
|
|
|
send_copies(JID, To, Packet, Direction),
|
|
|
|
Packet;
|
2014-05-30 23:44:19 +02:00
|
|
|
true ->
|
2015-10-07 00:06:58 +02:00
|
|
|
%% stop the hook chain, we don't want logging modules to duplicates
|
|
|
|
%% this message
|
2015-06-22 15:56:08 +02:00
|
|
|
{stop, Packet}
|
2014-05-30 23:44:19 +02:00
|
|
|
end;
|
|
|
|
_ ->
|
2015-06-22 15:56:08 +02:00
|
|
|
Packet
|
2015-02-11 00:52:47 +01:00
|
|
|
end.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec remove_connection(binary(), binary(), binary(), binary()) -> ok.
|
2013-03-27 17:53:56 +01:00
|
|
|
remove_connection(User, Server, Resource, _Status)->
|
|
|
|
disable(Server, User, Resource),
|
|
|
|
ok.
|
2015-10-07 00:06:58 +02:00
|
|
|
|
2013-03-27 17:53:56 +01:00
|
|
|
|
|
|
|
%%% Internal
|
|
|
|
%% Direction = received | sent <received xmlns='urn:xmpp:carbons:1'/>
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec send_copies(jid(), jid(), message(), direction()) -> ok.
|
2014-04-07 22:10:08 +02:00
|
|
|
send_copies(JID, To, Packet, Direction)->
|
2015-11-24 16:44:13 +01:00
|
|
|
{U, S, R} = jid:tolower(JID),
|
2014-04-08 23:32:30 +02:00
|
|
|
PrioRes = ejabberd_sm:get_user_present_resources(U, S),
|
2015-02-11 16:12:08 +01:00
|
|
|
{_, AvailRs} = lists:unzip(PrioRes),
|
2016-11-22 19:25:20 +01:00
|
|
|
{MaxPrio, _MaxRes} = case catch lists:max(PrioRes) of
|
2014-11-05 19:04:02 +01:00
|
|
|
{Prio, Res} -> {Prio, Res};
|
|
|
|
_ -> {0, undefined}
|
|
|
|
end,
|
2014-04-08 23:32:30 +02:00
|
|
|
|
2015-02-12 00:14:57 +01:00
|
|
|
%% unavailable resources are handled like bare JIDs
|
2014-04-08 23:32:30 +02:00
|
|
|
IsBareTo = case {Direction, To} of
|
|
|
|
{received, #jid{lresource = <<>>}} -> true;
|
2015-02-12 00:14:57 +01:00
|
|
|
{received, #jid{lresource = LRes}} -> not lists:member(LRes, AvailRs);
|
2014-04-08 23:32:30 +02:00
|
|
|
_ -> false
|
|
|
|
end,
|
2013-03-27 17:53:56 +01:00
|
|
|
%% list of JIDs that should receive a carbon copy of this message (excluding the
|
2014-04-07 22:10:08 +02:00
|
|
|
%% receiver(s) of the original message
|
2016-11-22 19:25:20 +01:00
|
|
|
TargetJIDs = case {IsBareTo, Packet} of
|
|
|
|
{true, #message{meta = #{sm_copy := true}}} ->
|
2014-11-05 19:04:02 +01:00
|
|
|
%% The message was sent to our bare JID, and we currently have
|
|
|
|
%% multiple resources with the same highest priority, so the session
|
|
|
|
%% manager routes the message to each of them. We create carbon
|
2016-11-22 19:25:20 +01:00
|
|
|
%% copies only from one of those resources in order to avoid
|
|
|
|
%% duplicates.
|
2014-11-05 19:04:02 +01:00
|
|
|
[];
|
2016-11-22 19:25:20 +01:00
|
|
|
{true, _} ->
|
|
|
|
OrigTo = fun(Res) -> lists:member({MaxPrio, Res}, PrioRes) end,
|
|
|
|
[ {jid:make({U, S, CCRes}), CC_Version}
|
|
|
|
|| {CCRes, CC_Version} <- list(U, S),
|
|
|
|
lists:member(CCRes, AvailRs), not OrigTo(CCRes) ];
|
2014-11-05 19:04:02 +01:00
|
|
|
{false, _} ->
|
2015-11-24 16:44:13 +01:00
|
|
|
[ {jid:make({U, S, CCRes}), CC_Version}
|
2015-02-11 16:12:08 +01:00
|
|
|
|| {CCRes, CC_Version} <- list(U, S),
|
|
|
|
lists:member(CCRes, AvailRs), CCRes /= R ]
|
2015-11-24 16:44:13 +01:00
|
|
|
%TargetJIDs = lists:delete(JID, [ jid:make({U, S, CCRes}) || CCRes <- list(U, S) ]),
|
2014-04-07 22:10:08 +02:00
|
|
|
end,
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
lists:map(fun({Dest, _Version}) ->
|
2015-11-24 16:44:13 +01:00
|
|
|
{_, _, Resource} = jid:tolower(Dest),
|
2013-03-27 17:53:56 +01:00
|
|
|
?DEBUG("Sending: ~p =/= ~p", [R, Resource]),
|
2015-11-24 16:44:13 +01:00
|
|
|
Sender = jid:make({U, S, <<>>}),
|
2013-03-27 17:53:56 +01:00
|
|
|
%{xmlelement, N, A, C} = Packet,
|
2016-07-18 14:01:32 +02:00
|
|
|
New = build_forward_packet(JID, Packet, Sender, Dest, Direction),
|
2013-03-27 17:53:56 +01:00
|
|
|
ejabberd_router:route(Sender, Dest, New)
|
|
|
|
end, TargetJIDs),
|
|
|
|
ok.
|
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec build_forward_packet(jid(), message(), jid(), jid(), direction()) -> message().
|
|
|
|
build_forward_packet(JID, #message{type = T} = Msg, Sender, Dest, Direction) ->
|
2016-11-13 11:41:04 +01:00
|
|
|
Forwarded = #forwarded{xml_els = [xmpp:encode(complete_packet(JID, Msg, Direction))]},
|
2016-07-18 14:01:32 +02:00
|
|
|
Carbon = case Direction of
|
|
|
|
sent -> #carbons_sent{forwarded = Forwarded};
|
|
|
|
received -> #carbons_received{forwarded = Forwarded}
|
|
|
|
end,
|
2016-11-22 22:21:34 +01:00
|
|
|
#message{from = Sender, to = Dest, type = T, sub_els = [Carbon],
|
|
|
|
meta = #{carbon_copy => true}}.
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec enable(binary(), binary(), binary(), binary()) -> ok | {error, any()}.
|
2013-03-27 17:53:56 +01:00
|
|
|
enable(Host, U, R, CC)->
|
|
|
|
?DEBUG("enabling for ~p", [U]),
|
2016-04-15 14:48:56 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:enable(U, Host, R, CC).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec disable(binary(), binary(), binary()) -> ok | {error, any()}.
|
2013-03-27 17:53:56 +01:00
|
|
|
disable(Host, U, R)->
|
|
|
|
?DEBUG("disabling for ~p", [U]),
|
2016-04-15 14:48:56 +02:00
|
|
|
Mod = gen_mod:db_mod(Host, ?MODULE),
|
|
|
|
Mod:disable(U, Host, R).
|
2013-03-27 17:53:56 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec complete_packet(jid(), message(), direction()) -> message().
|
|
|
|
complete_packet(From, #message{from = undefined} = Msg, sent) ->
|
2013-03-27 17:53:56 +01:00
|
|
|
%% if this is a packet sent by user on this host, then Packet doesn't
|
|
|
|
%% include the 'from' attribute. We must add it.
|
2016-07-18 14:01:32 +02:00
|
|
|
Msg#message{from = From};
|
|
|
|
complete_packet(_From, Msg, _Direction) ->
|
|
|
|
Msg.
|
|
|
|
|
|
|
|
-spec is_chat_message(stanza()) -> boolean().
|
|
|
|
is_chat_message(#message{type = chat}) ->
|
|
|
|
true;
|
2016-11-18 11:38:08 +01:00
|
|
|
is_chat_message(#message{type = normal, body = [_|_]}) ->
|
|
|
|
true;
|
2016-07-18 14:01:32 +02:00
|
|
|
is_chat_message(_) ->
|
|
|
|
false.
|
|
|
|
|
2016-09-19 22:46:36 +02:00
|
|
|
is_muc_pm(#jid{lresource = <<>>}, _Packet) ->
|
|
|
|
false;
|
|
|
|
is_muc_pm(_To, Packet) ->
|
2016-11-12 11:27:15 +01:00
|
|
|
xmpp:has_subtag(Packet, #muc_user{}).
|
2014-11-24 22:37:14 +01:00
|
|
|
|
2016-07-18 14:01:32 +02:00
|
|
|
-spec list(binary(), binary()) -> [{binary(), binary()}].
|
2013-03-27 17:53:56 +01:00
|
|
|
%% list {resource, cc_version} with carbons enabled for given user and host
|
2015-10-07 00:06:58 +02:00
|
|
|
list(User, Server) ->
|
2016-04-15 14:48:56 +02:00
|
|
|
Mod = gen_mod:db_mod(Server, ?MODULE),
|
|
|
|
Mod:list(User, Server).
|
2015-06-01 14:38:27 +02:00
|
|
|
|
2016-07-07 11:17:38 +02:00
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
[].
|
|
|
|
|
2015-06-01 14:38:27 +02:00
|
|
|
mod_opt_type(iqdisc) -> fun gen_iq_handler:check_type/1;
|
2016-04-27 16:10:50 +02:00
|
|
|
mod_opt_type(db_type) -> fun(T) -> ejabberd_config:v_db(?MODULE, T) end;
|
2016-04-15 14:48:56 +02:00
|
|
|
mod_opt_type(_) -> [db_type, iqdisc].
|