2003-01-22 21:40:40 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : gen_iq_handler.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2006-01-29 05:38:31 +01:00
|
|
|
%%% Purpose : IQ handler support
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 22 Jan 2003 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2018-01-05 21:18:58 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2018 ProcessOne
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
2009-01-12 15:44:42 +01:00
|
|
|
%%%
|
2014-02-22 11:27:40 +01:00
|
|
|
%%% You should have received a copy of the GNU General Public License along
|
|
|
|
%%% with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
2003-01-22 21:40:40 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(gen_iq_handler).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2003-01-22 21:40:40 +01:00
|
|
|
|
2017-05-04 11:24:47 +02:00
|
|
|
-behaviour(ejabberd_config).
|
2006-01-29 05:38:31 +01:00
|
|
|
|
|
|
|
%% API
|
2018-02-11 10:54:15 +01:00
|
|
|
-export([add_iq_handler/5, remove_iq_handler/3, handle/4,
|
2017-05-04 11:24:47 +02:00
|
|
|
process_iq/4, check_type/1, transform_module_options/1,
|
2018-02-11 10:54:15 +01:00
|
|
|
opt_type/1]).
|
|
|
|
%% Deprecated functions
|
|
|
|
-export([add_iq_handler/6, handle/5, iqdisc/1]).
|
|
|
|
-deprecated([{add_iq_handler, 6}, {handle, 5}, {iqdisc, 1}]).
|
2003-01-22 21:40:40 +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").
|
2003-01-22 21:40:40 +01:00
|
|
|
|
2015-10-07 00:06:58 +02:00
|
|
|
-type component() :: ejabberd_sm | ejabberd_local.
|
2013-07-08 09:40:39 +02:00
|
|
|
|
2006-01-29 05:38:31 +01:00
|
|
|
%%====================================================================
|
|
|
|
%% API
|
|
|
|
%%====================================================================
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec add_iq_handler(module(), binary(), binary(), module(), atom()) -> ok.
|
|
|
|
add_iq_handler(Component, Host, NS, Module, Function) ->
|
|
|
|
Component:register_iq_handler(Host, NS, Module, Function).
|
2003-01-22 21:40:40 +01:00
|
|
|
|
2017-02-13 09:11:41 +01:00
|
|
|
-spec remove_iq_handler(component(), binary(), binary()) -> ok.
|
2005-06-20 05:18:13 +02:00
|
|
|
remove_iq_handler(Component, Host, NS) ->
|
2005-10-16 22:42:24 +02:00
|
|
|
Component:unregister_iq_handler(Host, NS).
|
2003-01-29 18:12:23 +01:00
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec handle(binary(), atom(), atom(), iq()) -> any().
|
|
|
|
handle(Host, Module, Function, IQ) ->
|
|
|
|
process_iq(Host, Module, Function, IQ).
|
2003-01-22 21:40:40 +01:00
|
|
|
|
2017-02-16 09:00:26 +01:00
|
|
|
-spec process_iq(binary(), atom(), atom(), iq()) -> any().
|
|
|
|
process_iq(_Host, Module, Function, IQ) ->
|
2016-07-18 14:01:32 +02:00
|
|
|
try
|
|
|
|
ResIQ = case erlang:function_exported(Module, Function, 1) of
|
|
|
|
true ->
|
|
|
|
process_iq(Module, Function, IQ);
|
|
|
|
false ->
|
2017-02-16 09:00:26 +01:00
|
|
|
From = xmpp:get_from(IQ),
|
|
|
|
To = xmpp:get_to(IQ),
|
2016-07-18 14:01:32 +02:00
|
|
|
process_iq(Module, Function, From, To,
|
|
|
|
jlib:iq_query_info(xmpp:encode(IQ)))
|
|
|
|
end,
|
|
|
|
if ResIQ /= ignore ->
|
2017-02-16 09:00:26 +01:00
|
|
|
ejabberd_router:route(ResIQ);
|
2016-07-18 14:01:32 +02:00
|
|
|
true ->
|
|
|
|
ok
|
|
|
|
end
|
|
|
|
catch E:R ->
|
|
|
|
?ERROR_MSG("failed to process iq:~n~s~nReason = ~p",
|
2016-09-24 13:17:21 +02:00
|
|
|
[xmpp:pp(IQ), {E, {R, erlang:get_stacktrace()}}]),
|
2016-07-18 14:01:32 +02:00
|
|
|
Txt = <<"Module failed to handle the query">>,
|
|
|
|
Err = xmpp:err_internal_server_error(Txt, IQ#iq.lang),
|
2017-02-16 09:00:26 +01:00
|
|
|
ejabberd_router:route_error(IQ, Err)
|
2016-07-18 14:01:32 +02:00
|
|
|
end.
|
|
|
|
|
|
|
|
-spec process_iq(module(), atom(), iq()) -> ignore | iq().
|
|
|
|
process_iq(Module, Function, #iq{lang = Lang, sub_els = [El]} = IQ) ->
|
|
|
|
try
|
2016-11-13 12:17:21 +01:00
|
|
|
Pkt = case erlang:function_exported(Module, decode_iq_subel, 1) of
|
|
|
|
true -> Module:decode_iq_subel(El);
|
|
|
|
false -> xmpp:decode(El)
|
2016-07-18 14:01:32 +02:00
|
|
|
end,
|
|
|
|
Module:Function(IQ#iq{sub_els = [Pkt]})
|
|
|
|
catch error:{xmpp_codec, Why} ->
|
2017-11-14 07:02:43 +01:00
|
|
|
Txt = xmpp:io_format_error(Why),
|
2016-07-18 14:01:32 +02:00
|
|
|
xmpp:make_error(IQ, xmpp:err_bad_request(Txt, Lang))
|
|
|
|
end.
|
|
|
|
|
|
|
|
-spec process_iq(module(), atom(), jid(), jid(), term()) -> iq().
|
|
|
|
process_iq(Module, Function, From, To, IQ) ->
|
|
|
|
case Module:Function(From, To, IQ) of
|
|
|
|
ignore -> ignore;
|
2017-02-16 09:00:26 +01:00
|
|
|
ResIQ ->
|
|
|
|
xmpp:set_from_to(
|
|
|
|
xmpp:decode(jlib:iq_to_xml(ResIQ), ?NS_CLIENT, [ignore_els]),
|
|
|
|
To, From)
|
2003-01-22 21:40:40 +01:00
|
|
|
end.
|
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec check_type(any()) -> no_queue.
|
|
|
|
check_type(_Type) ->
|
|
|
|
?WARNING_MSG("Option 'iqdisc' is deprecated and has no effect anymore", []),
|
|
|
|
no_queue.
|
2013-07-08 09:40:39 +02:00
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec iqdisc(binary() | global) -> no_queue.
|
|
|
|
iqdisc(_Host) ->
|
|
|
|
no_queue.
|
2017-05-04 11:24:47 +02:00
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
-spec transform_module_options([{atom(), any()}]) -> [{atom(), any()}].
|
|
|
|
|
|
|
|
transform_module_options(Opts) ->
|
|
|
|
lists:map(
|
|
|
|
fun({iqdisc, {queues, N}}) ->
|
|
|
|
{iqdisc, N};
|
|
|
|
(Opt) ->
|
|
|
|
Opt
|
|
|
|
end, Opts).
|
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec opt_type(iqdisc) -> fun((any()) -> no_queue);
|
2017-05-08 11:59:28 +02:00
|
|
|
(atom()) -> [atom()].
|
2017-05-04 11:24:47 +02:00
|
|
|
opt_type(iqdisc) -> fun check_type/1;
|
|
|
|
opt_type(_) -> [iqdisc].
|
|
|
|
|
2006-01-29 05:38:31 +01:00
|
|
|
%%====================================================================
|
2018-02-11 10:54:15 +01:00
|
|
|
%% Deprecated API
|
2006-01-29 05:38:31 +01:00
|
|
|
%%====================================================================
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec add_iq_handler(module(), binary(), binary(), module(), atom(), any()) -> ok.
|
|
|
|
add_iq_handler(Component, Host, NS, Module, Function, _Type) ->
|
|
|
|
add_iq_handler(Component, Host, NS, Module, Function).
|
2003-07-20 22:35:35 +02:00
|
|
|
|
2018-02-11 10:54:15 +01:00
|
|
|
-spec handle(binary(), atom(), atom(), any(), iq()) -> any().
|
|
|
|
handle(Host, Module, Function, _Opts, IQ) ->
|
|
|
|
handle(Host, Module, Function, IQ).
|