2015-09-25 14:53:25 +02:00
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
%%% File : mod_http_api.erl
|
|
|
|
|
%%% Author : Christophe romain <christophe.romain@process-one.net>
|
|
|
|
|
%%% Purpose : Implements REST API for ejabberd using JSON data
|
|
|
|
|
%%% Created : 15 Sep 2014 by Christophe Romain <christophe.romain@process-one.net>
|
|
|
|
|
%%%
|
|
|
|
|
%%%
|
2017-01-02 21:41:53 +01:00
|
|
|
|
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
2015-09-25 14:53:25 +02: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.
|
|
|
|
|
%%%
|
|
|
|
|
%%% 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.
|
|
|
|
|
%%%
|
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%% Example config:
|
|
|
|
|
%%
|
|
|
|
|
%% in ejabberd_http listener
|
|
|
|
|
%% request_handlers:
|
|
|
|
|
%% "/api": mod_http_api
|
2016-03-29 11:21:53 +02:00
|
|
|
|
%%
|
2016-03-31 13:53:31 +02:00
|
|
|
|
%% To use a specific API version N, add a vN element in the URL path:
|
|
|
|
|
%% in ejabberd_http listener
|
|
|
|
|
%% request_handlers:
|
|
|
|
|
%% "/api/v2": mod_http_api
|
|
|
|
|
%%
|
2015-09-25 14:53:25 +02:00
|
|
|
|
%% Access rights are defined with:
|
2016-03-29 11:21:53 +02:00
|
|
|
|
%% commands_admin_access: configure
|
2015-09-25 14:53:25 +02:00
|
|
|
|
%% commands:
|
|
|
|
|
%% - add_commands: user
|
|
|
|
|
%%
|
|
|
|
|
%%
|
|
|
|
|
%% add_commands allow exporting a class of commands, from
|
|
|
|
|
%% open: methods is not risky and can be called by without any access check
|
|
|
|
|
%% restricted (default): the same, but will appear only in ejabberdctl list.
|
|
|
|
|
%% admin – auth is required with XMLRPC and HTTP API and checked for admin priviledges, works as usual in ejabberdctl.
|
|
|
|
|
%% user - can be used through XMLRPC and HTTP API, even by user. Only admin can use the commands for other users.
|
|
|
|
|
%%
|
|
|
|
|
%% Then to perform an action, send a POST request to the following URL:
|
|
|
|
|
%% http://localhost:5280/api/<call_name>
|
2016-03-29 19:40:20 +02:00
|
|
|
|
%%
|
|
|
|
|
%% It's also possible to enable unrestricted access to some commands from group
|
|
|
|
|
%% of IP addresses by using option `admin_ip_access` by having fragment like
|
|
|
|
|
%% this in configuration file:
|
|
|
|
|
%% modules:
|
|
|
|
|
%% mod_http_api:
|
|
|
|
|
%% admin_ip_access: admin_ip_access_rule
|
|
|
|
|
%%...
|
|
|
|
|
%% access:
|
|
|
|
|
%% admin_ip_access_rule:
|
|
|
|
|
%% admin_ip_acl:
|
|
|
|
|
%% - command1
|
|
|
|
|
%% - command2
|
|
|
|
|
%% %% use `all` to give access to all commands
|
|
|
|
|
%%...
|
|
|
|
|
%% acl:
|
|
|
|
|
%% admin_ip_acl:
|
|
|
|
|
%% ip:
|
|
|
|
|
%% - "127.0.0.1/8"
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
-module(mod_http_api).
|
|
|
|
|
|
|
|
|
|
-author('cromain@process-one.net').
|
|
|
|
|
|
|
|
|
|
-behaviour(gen_mod).
|
|
|
|
|
|
2017-02-22 17:46:47 +01:00
|
|
|
|
-export([start/2, stop/1, reload/3, process/2, mod_opt_type/1, depends/2]).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
-include("ejabberd.hrl").
|
2016-07-29 12:21:00 +02:00
|
|
|
|
-include("xmpp.hrl").
|
2015-09-25 14:53:25 +02:00
|
|
|
|
-include("logger.hrl").
|
|
|
|
|
-include("ejabberd_http.hrl").
|
|
|
|
|
|
2016-03-31 13:53:31 +02:00
|
|
|
|
-define(DEFAULT_API_VERSION, 0).
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
-define(CT_PLAIN,
|
|
|
|
|
{<<"Content-Type">>, <<"text/plain">>}).
|
|
|
|
|
|
|
|
|
|
-define(CT_XML,
|
|
|
|
|
{<<"Content-Type">>, <<"text/xml; charset=utf-8">>}).
|
|
|
|
|
|
|
|
|
|
-define(CT_JSON,
|
|
|
|
|
{<<"Content-Type">>, <<"application/json">>}).
|
|
|
|
|
|
|
|
|
|
-define(AC_ALLOW_ORIGIN,
|
|
|
|
|
{<<"Access-Control-Allow-Origin">>, <<"*">>}).
|
|
|
|
|
|
|
|
|
|
-define(AC_ALLOW_METHODS,
|
|
|
|
|
{<<"Access-Control-Allow-Methods">>,
|
|
|
|
|
<<"GET, POST, OPTIONS">>}).
|
|
|
|
|
|
|
|
|
|
-define(AC_ALLOW_HEADERS,
|
|
|
|
|
{<<"Access-Control-Allow-Headers">>,
|
2016-09-12 15:39:00 +02:00
|
|
|
|
<<"Content-Type, Authorization, X-Admin">>}).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
-define(AC_MAX_AGE,
|
|
|
|
|
{<<"Access-Control-Max-Age">>, <<"86400">>}).
|
|
|
|
|
|
|
|
|
|
-define(OPTIONS_HEADER,
|
|
|
|
|
[?CT_PLAIN, ?AC_ALLOW_ORIGIN, ?AC_ALLOW_METHODS,
|
|
|
|
|
?AC_ALLOW_HEADERS, ?AC_MAX_AGE]).
|
|
|
|
|
|
|
|
|
|
-define(HEADER(CType),
|
|
|
|
|
[CType, ?AC_ALLOW_ORIGIN, ?AC_ALLOW_HEADERS]).
|
|
|
|
|
|
|
|
|
|
%% -------------------
|
|
|
|
|
%% Module control
|
|
|
|
|
%% -------------------
|
|
|
|
|
|
|
|
|
|
start(_Host, _Opts) ->
|
2016-10-05 13:21:11 +02:00
|
|
|
|
ejabberd_access_permissions:register_permission_addon(?MODULE, fun permission_addon/0),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
ok.
|
|
|
|
|
|
|
|
|
|
stop(_Host) ->
|
2016-10-05 13:21:11 +02:00
|
|
|
|
ejabberd_access_permissions:unregister_permission_addon(?MODULE),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
ok.
|
|
|
|
|
|
2017-02-22 17:46:47 +01:00
|
|
|
|
reload(Host, NewOpts, _OldOpts) ->
|
|
|
|
|
stop(Host),
|
|
|
|
|
start(Host, NewOpts).
|
|
|
|
|
|
2016-07-06 13:58:48 +02:00
|
|
|
|
depends(_Host, _Opts) ->
|
|
|
|
|
[].
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
%% ----------
|
|
|
|
|
%% basic auth
|
|
|
|
|
%% ----------
|
|
|
|
|
|
2016-10-05 13:21:11 +02:00
|
|
|
|
extract_auth(#request{auth = HTTPAuth, ip = {IP, _}}) ->
|
|
|
|
|
Info = case HTTPAuth of
|
2016-03-29 19:40:20 +02:00
|
|
|
|
{SJID, Pass} ->
|
2017-02-26 08:07:12 +01:00
|
|
|
|
try jid:decode(SJID) of
|
2016-10-05 13:21:11 +02:00
|
|
|
|
#jid{luser = User, lserver = Server} ->
|
2016-03-29 19:40:20 +02:00
|
|
|
|
case ejabberd_auth:check_password(User, <<"">>, Server, Pass) of
|
2016-10-05 13:21:11 +02:00
|
|
|
|
true ->
|
|
|
|
|
#{usr => {User, Server, <<"">>}, caller_server => Server};
|
|
|
|
|
false ->
|
|
|
|
|
{error, invalid_auth}
|
2017-02-26 08:07:12 +01:00
|
|
|
|
end
|
|
|
|
|
catch _:{bad_jid, _} ->
|
|
|
|
|
{error, invalid_auth}
|
2016-03-29 19:40:20 +02:00
|
|
|
|
end;
|
|
|
|
|
{oauth, Token, _} ->
|
2016-10-05 13:21:11 +02:00
|
|
|
|
case ejabberd_oauth:check_token(Token) of
|
|
|
|
|
{ok, {U, S}, Scope} ->
|
|
|
|
|
#{usr => {U, S, <<"">>}, oauth_scope => Scope, caller_server => S};
|
|
|
|
|
{false, Reason} ->
|
|
|
|
|
{error, Reason}
|
2016-03-29 19:40:20 +02:00
|
|
|
|
end;
|
|
|
|
|
_ ->
|
2016-10-05 13:21:11 +02:00
|
|
|
|
#{}
|
2016-03-29 19:40:20 +02:00
|
|
|
|
end,
|
2016-10-05 13:21:11 +02:00
|
|
|
|
case Info of
|
|
|
|
|
Map when is_map(Map) ->
|
|
|
|
|
Map#{caller_module => ?MODULE, ip => IP};
|
|
|
|
|
_ ->
|
|
|
|
|
?DEBUG("Invalid auth data: ~p", [Info]),
|
|
|
|
|
Info
|
2016-03-30 14:49:19 +02:00
|
|
|
|
end;
|
2016-10-05 13:21:11 +02:00
|
|
|
|
extract_auth(#request{ip = IP}) ->
|
|
|
|
|
#{ip => IP, caller_module => ?MODULE}.
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
%% ------------------
|
|
|
|
|
%% command processing
|
|
|
|
|
%% ------------------
|
|
|
|
|
|
2016-03-31 13:53:31 +02:00
|
|
|
|
%process(Call, Request) ->
|
|
|
|
|
% ?DEBUG("~p~n~p", [Call, Request]), ok;
|
2015-09-25 14:53:25 +02:00
|
|
|
|
process(_, #request{method = 'POST', data = <<>>}) ->
|
|
|
|
|
?DEBUG("Bad Request: no data", []),
|
2016-03-31 13:53:31 +02:00
|
|
|
|
badrequest_response(<<"Missing POST data">>);
|
2016-10-05 13:21:11 +02:00
|
|
|
|
process([Call], #request{method = 'POST', data = Data, ip = IPPort} = Req) ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
Version = get_api_version(Req),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
try
|
2016-07-31 22:48:24 +02:00
|
|
|
|
Args = extract_args(Data),
|
2016-05-25 13:01:07 +02:00
|
|
|
|
log(Call, Args, IPPort),
|
2016-10-05 13:21:11 +02:00
|
|
|
|
perform_call(Call, Args, Req, Version)
|
2016-07-31 22:48:24 +02:00
|
|
|
|
catch
|
|
|
|
|
%% TODO We need to refactor to remove redundant error return formatting
|
|
|
|
|
throw:{error, unknown_command} ->
|
2016-09-28 11:03:46 +02:00
|
|
|
|
json_format({404, 44, <<"Command not found.">>});
|
2016-07-31 22:48:24 +02:00
|
|
|
|
_:{error,{_,invalid_json}} = _Err ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
?DEBUG("Bad Request: ~p", [_Err]),
|
|
|
|
|
badrequest_response(<<"Invalid JSON input">>);
|
|
|
|
|
_:_Error ->
|
2016-04-01 11:13:48 +02:00
|
|
|
|
?DEBUG("Bad Request: ~p ~p", [_Error, erlang:get_stacktrace()]),
|
|
|
|
|
badrequest_response()
|
2015-09-25 14:53:25 +02:00
|
|
|
|
end;
|
2016-10-05 13:21:11 +02:00
|
|
|
|
process([Call], #request{method = 'GET', q = Data, ip = {IP, _}} = Req) ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
Version = get_api_version(Req),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
try
|
|
|
|
|
Args = case Data of
|
2016-04-01 11:13:48 +02:00
|
|
|
|
[{nokey, <<>>}] -> [];
|
|
|
|
|
_ -> Data
|
|
|
|
|
end,
|
2015-09-25 14:53:25 +02:00
|
|
|
|
log(Call, Args, IP),
|
2016-10-05 13:21:11 +02:00
|
|
|
|
perform_call(Call, Args, Req, Version)
|
2016-07-31 22:48:24 +02:00
|
|
|
|
catch
|
|
|
|
|
%% TODO We need to refactor to remove redundant error return formatting
|
|
|
|
|
throw:{error, unknown_command} ->
|
2016-08-01 15:29:47 +02:00
|
|
|
|
json_format({404, 44, <<"Command not found.">>});
|
2016-07-31 22:48:24 +02:00
|
|
|
|
_:_Error ->
|
|
|
|
|
|
2016-03-31 13:53:31 +02:00
|
|
|
|
?DEBUG("Bad Request: ~p ~p", [_Error, erlang:get_stacktrace()]),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
badrequest_response()
|
|
|
|
|
end;
|
2016-09-12 15:38:27 +02:00
|
|
|
|
process([_Call], #request{method = 'OPTIONS', data = <<>>}) ->
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{200, ?OPTIONS_HEADER, []};
|
2016-09-12 15:38:27 +02:00
|
|
|
|
process(_, #request{method = 'OPTIONS'}) ->
|
|
|
|
|
{400, ?OPTIONS_HEADER, []};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
process(_Path, Request) ->
|
|
|
|
|
?DEBUG("Bad Request: no handler ~p", [Request]),
|
2016-08-01 15:29:47 +02:00
|
|
|
|
json_error(400, 40, <<"Missing command name.">>).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
2016-10-05 13:21:11 +02:00
|
|
|
|
perform_call(Command, Args, Req, Version) ->
|
|
|
|
|
case catch binary_to_existing_atom(Command, utf8) of
|
|
|
|
|
Call when is_atom(Call) ->
|
|
|
|
|
case extract_auth(Req) of
|
|
|
|
|
{error, expired} -> invalid_token_response();
|
|
|
|
|
{error, not_found} -> invalid_token_response();
|
|
|
|
|
{error, invalid_auth} -> unauthorized_response();
|
|
|
|
|
{error, _} -> unauthorized_response();
|
|
|
|
|
Auth when is_map(Auth) ->
|
|
|
|
|
Result = handle(Call, Auth, Args, Version),
|
|
|
|
|
json_format(Result)
|
|
|
|
|
end;
|
|
|
|
|
_ ->
|
|
|
|
|
json_error(404, 40, <<"Endpoint not found.">>)
|
|
|
|
|
end.
|
|
|
|
|
|
2016-07-31 22:48:24 +02:00
|
|
|
|
%% Be tolerant to make API more easily usable from command-line pipe.
|
|
|
|
|
extract_args(<<"\n">>) -> [];
|
|
|
|
|
extract_args(Data) ->
|
|
|
|
|
case jiffy:decode(Data) of
|
|
|
|
|
List when is_list(List) -> List;
|
|
|
|
|
{List} when is_list(List) -> List;
|
|
|
|
|
Other -> [Other]
|
|
|
|
|
end.
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
2016-03-31 13:53:31 +02:00
|
|
|
|
% get API version N from last "vN" element in URL path
|
|
|
|
|
get_api_version(#request{path = Path}) ->
|
|
|
|
|
get_api_version(lists:reverse(Path));
|
|
|
|
|
get_api_version([<<"v", String/binary>> | Tail]) ->
|
2016-09-24 22:34:28 +02:00
|
|
|
|
case catch binary_to_integer(String) of
|
2016-03-31 13:53:31 +02:00
|
|
|
|
N when is_integer(N) ->
|
|
|
|
|
N;
|
|
|
|
|
_ ->
|
|
|
|
|
get_api_version(Tail)
|
|
|
|
|
end;
|
|
|
|
|
get_api_version([_Head | Tail]) ->
|
|
|
|
|
get_api_version(Tail);
|
|
|
|
|
get_api_version([]) ->
|
|
|
|
|
?DEFAULT_API_VERSION.
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
%% ----------------
|
|
|
|
|
%% command handlers
|
|
|
|
|
%% ----------------
|
|
|
|
|
|
2016-07-20 20:50:59 +02:00
|
|
|
|
%% TODO Check accept types of request before decided format of reply.
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
% generic ejabberd command handler
|
2016-10-05 13:21:11 +02:00
|
|
|
|
handle(Call, Auth, Args, Version) when is_atom(Call), is_list(Args) ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
case ejabberd_commands:get_command_format(Call, Auth, Version) of
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{ArgsSpec, _} when is_list(ArgsSpec) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
Args2 = [{misc:binary_to_atom(Key), Value} || {Key, Value} <- Args],
|
2015-09-25 14:53:25 +02:00
|
|
|
|
Spec = lists:foldr(
|
|
|
|
|
fun ({Key, binary}, Acc) ->
|
|
|
|
|
[{Key, <<>>}|Acc];
|
|
|
|
|
({Key, string}, Acc) ->
|
2016-11-10 11:15:34 +01:00
|
|
|
|
[{Key, ""}|Acc];
|
2015-09-25 14:53:25 +02:00
|
|
|
|
({Key, integer}, Acc) ->
|
|
|
|
|
[{Key, 0}|Acc];
|
|
|
|
|
({Key, {list, _}}, Acc) ->
|
|
|
|
|
[{Key, []}|Acc];
|
|
|
|
|
({Key, atom}, Acc) ->
|
|
|
|
|
[{Key, undefined}|Acc]
|
|
|
|
|
end, [], ArgsSpec),
|
2016-03-31 13:53:31 +02:00
|
|
|
|
try
|
2016-10-05 13:21:11 +02:00
|
|
|
|
handle2(Call, Auth, match(Args2, Spec), Version)
|
2016-03-31 13:53:31 +02:00
|
|
|
|
catch throw:not_found ->
|
|
|
|
|
{404, <<"not_found">>};
|
|
|
|
|
throw:{not_found, Why} when is_atom(Why) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{404, misc:atom_to_binary(Why)};
|
2016-03-31 13:53:31 +02:00
|
|
|
|
throw:{not_found, Msg} ->
|
|
|
|
|
{404, iolist_to_binary(Msg)};
|
|
|
|
|
throw:not_allowed ->
|
|
|
|
|
{401, <<"not_allowed">>};
|
|
|
|
|
throw:{not_allowed, Why} when is_atom(Why) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{401, misc:atom_to_binary(Why)};
|
2016-03-31 13:53:31 +02:00
|
|
|
|
throw:{not_allowed, Msg} ->
|
|
|
|
|
{401, iolist_to_binary(Msg)};
|
2016-03-31 17:34:50 +02:00
|
|
|
|
throw:{error, account_unprivileged} ->
|
2016-07-20 20:50:59 +02:00
|
|
|
|
{403, 31, <<"Command need to be run with admin priviledge.">>};
|
2016-07-25 11:43:49 +02:00
|
|
|
|
throw:{error, access_rules_unauthorized} ->
|
2016-12-08 16:28:47 +01:00
|
|
|
|
{403, 32, <<"AccessRules: Account does not have the right to perform the operation.">>};
|
2016-03-31 13:53:31 +02:00
|
|
|
|
throw:{invalid_parameter, Msg} ->
|
|
|
|
|
{400, iolist_to_binary(Msg)};
|
|
|
|
|
throw:{error, Why} when is_atom(Why) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{400, misc:atom_to_binary(Why)};
|
2016-03-31 13:53:31 +02:00
|
|
|
|
throw:{error, Msg} ->
|
|
|
|
|
{400, iolist_to_binary(Msg)};
|
|
|
|
|
throw:Error when is_atom(Error) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{400, misc:atom_to_binary(Error)};
|
2016-03-31 13:53:31 +02:00
|
|
|
|
throw:Msg when is_list(Msg); is_binary(Msg) ->
|
|
|
|
|
{400, iolist_to_binary(Msg)};
|
|
|
|
|
_Error ->
|
|
|
|
|
?ERROR_MSG("REST API Error: ~p ~p", [_Error, erlang:get_stacktrace()]),
|
|
|
|
|
{500, <<"internal_error">>}
|
|
|
|
|
end;
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{error, Msg} ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
?ERROR_MSG("REST API Error: ~p", [Msg]),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{400, Msg};
|
|
|
|
|
_Error ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
?ERROR_MSG("REST API Error: ~p", [_Error]),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{400, <<"Error">>}
|
|
|
|
|
end.
|
|
|
|
|
|
2016-10-05 13:21:11 +02:00
|
|
|
|
handle2(Call, Auth, Args, Version) when is_atom(Call), is_list(Args) ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
{ArgsF, _ResultF} = ejabberd_commands:get_command_format(Call, Auth, Version),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
ArgsFormatted = format_args(Args, ArgsF),
|
2016-10-05 13:21:11 +02:00
|
|
|
|
case ejabberd_commands:execute_command2(Call, ArgsFormatted, Auth, Version) of
|
|
|
|
|
{error, Error} ->
|
|
|
|
|
throw(Error);
|
|
|
|
|
Res ->
|
|
|
|
|
format_command_result(Call, Auth, Res, Version)
|
|
|
|
|
end.
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
get_elem_delete(A, L) ->
|
|
|
|
|
case proplists:get_all_values(A, L) of
|
|
|
|
|
[Value] -> {Value, proplists:delete(A, L)};
|
|
|
|
|
[_, _ | _] ->
|
|
|
|
|
%% Crash reporting the error
|
|
|
|
|
exit({duplicated_attribute, A, L});
|
|
|
|
|
[] ->
|
|
|
|
|
%% Report the error and then force a crash
|
|
|
|
|
exit({attribute_not_found, A, L})
|
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
format_args(Args, ArgsFormat) ->
|
|
|
|
|
{ArgsRemaining, R} = lists:foldl(fun ({ArgName,
|
|
|
|
|
ArgFormat},
|
|
|
|
|
{Args1, Res}) ->
|
|
|
|
|
{ArgValue, Args2} =
|
|
|
|
|
get_elem_delete(ArgName,
|
|
|
|
|
Args1),
|
|
|
|
|
Formatted = format_arg(ArgValue,
|
|
|
|
|
ArgFormat),
|
|
|
|
|
{Args2, Res ++ [Formatted]}
|
|
|
|
|
end,
|
|
|
|
|
{Args, []}, ArgsFormat),
|
|
|
|
|
case ArgsRemaining of
|
|
|
|
|
[] -> R;
|
|
|
|
|
L when is_list(L) -> exit({additional_unused_args, L})
|
|
|
|
|
end.
|
|
|
|
|
|
2016-08-04 16:04:43 +02:00
|
|
|
|
format_arg({Elements},
|
|
|
|
|
{list, {_ElementDefName, {tuple, [{_Tuple1N, Tuple1S}, {_Tuple2N, Tuple2S}]} = Tuple}})
|
|
|
|
|
when is_list(Elements) andalso
|
|
|
|
|
(Tuple1S == binary orelse Tuple1S == string) ->
|
|
|
|
|
lists:map(fun({F1, F2}) ->
|
|
|
|
|
{format_arg(F1, Tuple1S), format_arg(F2, Tuple2S)};
|
|
|
|
|
({Val}) when is_list(Val) ->
|
|
|
|
|
format_arg({Val}, Tuple)
|
|
|
|
|
end, Elements);
|
|
|
|
|
format_arg(Elements,
|
|
|
|
|
{list, {_ElementDefName, {list, _} = ElementDefFormat}})
|
2015-09-25 14:53:25 +02:00
|
|
|
|
when is_list(Elements) ->
|
2016-08-04 16:04:43 +02:00
|
|
|
|
[{format_arg(Element, ElementDefFormat)}
|
|
|
|
|
|| Element <- Elements];
|
2016-07-15 16:42:13 +02:00
|
|
|
|
format_arg(Elements,
|
|
|
|
|
{list, {_ElementDefName, ElementDefFormat}})
|
2015-09-25 14:53:25 +02:00
|
|
|
|
when is_list(Elements) ->
|
2016-07-15 16:42:13 +02:00
|
|
|
|
[format_arg(Element, ElementDefFormat)
|
|
|
|
|
|| Element <- Elements];
|
|
|
|
|
format_arg({[{Name, Value}]},
|
|
|
|
|
{tuple, [{_Tuple1N, Tuple1S}, {_Tuple2N, Tuple2S}]})
|
|
|
|
|
when Tuple1S == binary;
|
|
|
|
|
Tuple1S == string ->
|
|
|
|
|
{format_arg(Name, Tuple1S), format_arg(Value, Tuple2S)};
|
|
|
|
|
format_arg({Elements},
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{tuple, ElementsDef})
|
|
|
|
|
when is_list(Elements) ->
|
2016-07-15 16:42:13 +02:00
|
|
|
|
F = lists:map(fun({TElName, TElDef}) ->
|
|
|
|
|
case lists:keyfind(atom_to_binary(TElName, latin1), 1, Elements) of
|
|
|
|
|
{_, Value} ->
|
|
|
|
|
format_arg(Value, TElDef);
|
|
|
|
|
_ when TElDef == binary; TElDef == string ->
|
|
|
|
|
<<"">>;
|
|
|
|
|
_ ->
|
|
|
|
|
?ERROR_MSG("missing field ~p in tuple ~p", [TElName, Elements]),
|
|
|
|
|
throw({invalid_parameter,
|
|
|
|
|
io_lib:format("Missing field ~w in tuple ~w", [TElName, Elements])})
|
|
|
|
|
end
|
|
|
|
|
end, ElementsDef),
|
|
|
|
|
list_to_tuple(F);
|
|
|
|
|
format_arg(Elements, {list, ElementsDef})
|
2015-09-25 14:53:25 +02:00
|
|
|
|
when is_list(Elements) and is_atom(ElementsDef) ->
|
|
|
|
|
[format_arg(Element, ElementsDef)
|
|
|
|
|
|| Element <- Elements];
|
|
|
|
|
format_arg(Arg, integer) when is_integer(Arg) -> Arg;
|
|
|
|
|
format_arg(Arg, binary) when is_list(Arg) -> process_unicode_codepoints(Arg);
|
|
|
|
|
format_arg(Arg, binary) when is_binary(Arg) -> Arg;
|
2016-11-10 11:15:34 +01:00
|
|
|
|
format_arg(Arg, string) when is_list(Arg) -> Arg;
|
|
|
|
|
format_arg(Arg, string) when is_binary(Arg) -> binary_to_list(Arg);
|
2015-09-25 14:53:25 +02:00
|
|
|
|
format_arg(undefined, binary) -> <<>>;
|
2016-11-10 11:15:34 +01:00
|
|
|
|
format_arg(undefined, string) -> "";
|
2015-09-25 14:53:25 +02:00
|
|
|
|
format_arg(Arg, Format) ->
|
|
|
|
|
?ERROR_MSG("don't know how to format Arg ~p for format ~p", [Arg, Format]),
|
2016-03-31 13:53:31 +02:00
|
|
|
|
throw({invalid_parameter,
|
2016-07-15 16:42:13 +02:00
|
|
|
|
io_lib:format("Arg ~w is not in format ~w",
|
2016-03-31 13:53:31 +02:00
|
|
|
|
[Arg, Format])}).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
process_unicode_codepoints(Str) ->
|
|
|
|
|
iolist_to_binary(lists:map(fun(X) when X > 255 -> unicode:characters_to_binary([X]);
|
|
|
|
|
(Y) -> Y
|
|
|
|
|
end, Str)).
|
|
|
|
|
|
|
|
|
|
%% ----------------
|
|
|
|
|
%% internal helpers
|
|
|
|
|
%% ----------------
|
|
|
|
|
|
|
|
|
|
match(Args, Spec) ->
|
|
|
|
|
[{Key, proplists:get_value(Key, Args, Default)} || {Key, Default} <- Spec].
|
|
|
|
|
|
2016-03-31 13:53:31 +02:00
|
|
|
|
format_command_result(Cmd, Auth, Result, Version) ->
|
|
|
|
|
{_, ResultFormat} = ejabberd_commands:get_command_format(Cmd, Auth, Version),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
case {ResultFormat, Result} of
|
2016-03-31 13:53:31 +02:00
|
|
|
|
{{_, rescode}, V} when V == true; V == ok ->
|
|
|
|
|
{200, 0};
|
|
|
|
|
{{_, rescode}, _} ->
|
|
|
|
|
{200, 1};
|
2016-07-30 13:08:30 +02:00
|
|
|
|
{_, {error, ErrorAtom, Code, Msg}} ->
|
|
|
|
|
format_error_result(ErrorAtom, Code, Msg);
|
2016-07-30 11:50:04 +02:00
|
|
|
|
{{_, restuple}, {V, Text}} when V == true; V == ok ->
|
|
|
|
|
{200, iolist_to_binary(Text)};
|
2016-07-30 13:08:30 +02:00
|
|
|
|
{{_, restuple}, {ErrorAtom, Msg}} ->
|
|
|
|
|
format_error_result(ErrorAtom, 0, Msg);
|
2016-03-31 13:53:31 +02:00
|
|
|
|
{{_, {list, _}}, _V} ->
|
|
|
|
|
{_, L} = format_result(Result, ResultFormat),
|
|
|
|
|
{200, L};
|
|
|
|
|
{{_, {tuple, _}}, _V} ->
|
|
|
|
|
{_, T} = format_result(Result, ResultFormat),
|
|
|
|
|
{200, T};
|
|
|
|
|
_ ->
|
|
|
|
|
{200, {[format_result(Result, ResultFormat)]}}
|
2015-09-25 14:53:25 +02:00
|
|
|
|
end.
|
|
|
|
|
|
|
|
|
|
format_result(Atom, {Name, atom}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), misc:atom_to_binary(Atom)};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result(Int, {Name, integer}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), Int};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
2017-02-23 19:23:03 +01:00
|
|
|
|
format_result([String | _] = StringList, {Name, string}) when is_list(String) ->
|
|
|
|
|
Binarized = iolist_to_binary(string:join(StringList, "\n")),
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), Binarized};
|
2017-02-23 19:23:03 +01:00
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
format_result(String, {Name, string}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), iolist_to_binary(String)};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result(Code, {Name, rescode}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), Code == true orelse Code == ok};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result({Code, Text}, {Name, restuple}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name),
|
2015-09-25 14:53:25 +02:00
|
|
|
|
{[{<<"res">>, Code == true orelse Code == ok},
|
|
|
|
|
{<<"text">>, iolist_to_binary(Text)}]}};
|
|
|
|
|
|
2016-08-04 16:04:43 +02:00
|
|
|
|
format_result(Code, {Name, restuple}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name),
|
2016-08-04 16:04:43 +02:00
|
|
|
|
{[{<<"res">>, Code == true orelse Code == ok},
|
|
|
|
|
{<<"text">>, <<"">>}]}};
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
format_result(Els, {Name, {list, {_, {tuple, [{_, atom}, _]}} = Fmt}}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), {[format_result(El, Fmt) || El <- Els]}};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result(Els, {Name, {list, Def}}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), [element(2, format_result(El, Def)) || El <- Els]};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result(Tuple, {_Name, {tuple, [{_, atom}, ValFmt]}}) ->
|
|
|
|
|
{Name2, Val} = Tuple,
|
|
|
|
|
{_, Val2} = format_result(Val, ValFmt),
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name2), Val2};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result(Tuple, {Name, {tuple, Def}}) ->
|
|
|
|
|
Els = lists:zip(tuple_to_list(Tuple), Def),
|
2017-04-11 12:13:58 +02:00
|
|
|
|
{misc:atom_to_binary(Name), {[format_result(El, ElDef) || {El, ElDef} <- Els]}};
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
format_result(404, {_Name, _}) ->
|
|
|
|
|
"not_found".
|
|
|
|
|
|
2016-07-30 18:51:54 +02:00
|
|
|
|
|
2016-07-30 13:08:30 +02:00
|
|
|
|
format_error_result(conflict, Code, Msg) ->
|
|
|
|
|
{409, Code, iolist_to_binary(Msg)};
|
|
|
|
|
format_error_result(_ErrorAtom, Code, Msg) ->
|
|
|
|
|
{500, Code, iolist_to_binary(Msg)}.
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
unauthorized_response() ->
|
2016-10-05 13:21:11 +02:00
|
|
|
|
json_error(401, 10, <<"You are not authorized to call this command.">>).
|
|
|
|
|
|
|
|
|
|
invalid_token_response() ->
|
2016-07-20 20:50:59 +02:00
|
|
|
|
json_error(401, 10, <<"Oauth Token is invalid or expired.">>).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
2016-11-25 07:48:26 +01:00
|
|
|
|
%% outofscope_response() ->
|
|
|
|
|
%% json_error(401, 11, <<"Token does not grant usage to command required scope.">>).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
|
|
|
|
badrequest_response() ->
|
2016-03-31 13:53:31 +02:00
|
|
|
|
badrequest_response(<<"400 Bad Request">>).
|
|
|
|
|
badrequest_response(Body) ->
|
|
|
|
|
json_response(400, jiffy:encode(Body)).
|
|
|
|
|
|
2016-07-30 13:08:30 +02:00
|
|
|
|
json_format({Code, Result}) ->
|
|
|
|
|
json_response(Code, jiffy:encode(Result));
|
|
|
|
|
json_format({HTMLCode, JSONErrorCode, Message}) ->
|
|
|
|
|
json_error(HTMLCode, JSONErrorCode, Message).
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
json_response(Code, Body) when is_integer(Code) ->
|
|
|
|
|
{Code, ?HEADER(?CT_JSON), Body}.
|
|
|
|
|
|
2016-07-20 20:50:59 +02:00
|
|
|
|
%% HTTPCode, JSONCode = integers
|
|
|
|
|
%% message is binary
|
|
|
|
|
json_error(HTTPCode, JSONCode, Message) ->
|
|
|
|
|
{HTTPCode, ?HEADER(?CT_JSON),
|
|
|
|
|
jiffy:encode({[{<<"status">>, <<"error">>},
|
|
|
|
|
{<<"code">>, JSONCode},
|
|
|
|
|
{<<"message">>, Message}]})
|
|
|
|
|
}.
|
|
|
|
|
|
2015-09-25 14:53:25 +02:00
|
|
|
|
log(Call, Args, {Addr, Port}) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
|
AddrS = misc:ip_to_list({Addr, Port}),
|
2016-03-30 14:23:09 +02:00
|
|
|
|
?INFO_MSG("API call ~s ~p from ~s:~p", [Call, Args, AddrS, Port]);
|
|
|
|
|
log(Call, Args, IP) ->
|
|
|
|
|
?INFO_MSG("API call ~s ~p (~p)", [Call, Args, IP]).
|
2015-09-25 14:53:25 +02:00
|
|
|
|
|
2016-10-05 13:21:11 +02:00
|
|
|
|
permission_addon() ->
|
2017-04-30 18:01:47 +02:00
|
|
|
|
Access = gen_mod:get_module_opt(global, ?MODULE, admin_ip_access, none),
|
2016-10-05 13:21:11 +02:00
|
|
|
|
Rules = acl:resolve_access(Access, global),
|
2017-01-20 10:19:09 +01:00
|
|
|
|
R = case Rules of
|
|
|
|
|
all ->
|
|
|
|
|
[{[{allow, all}], {all, []}}];
|
|
|
|
|
none ->
|
|
|
|
|
[];
|
|
|
|
|
_ ->
|
|
|
|
|
lists:filtermap(
|
|
|
|
|
fun({V, AclRules}) when V == all; V == [all]; V == [allow]; V == allow ->
|
|
|
|
|
{true, {[{allow, AclRules}], {all, []}}};
|
|
|
|
|
({List, AclRules}) when is_list(List) ->
|
|
|
|
|
{true, {[{allow, AclRules}], {List, []}}};
|
|
|
|
|
(_) ->
|
|
|
|
|
false
|
|
|
|
|
end, Rules)
|
|
|
|
|
end,
|
|
|
|
|
{_, Res} = lists:foldl(
|
|
|
|
|
fun({R2, L2}, {Idx, Acc}) ->
|
|
|
|
|
{Idx+1, [{<<"'mod_http_api admin_ip_access' option compatibility shim ",
|
|
|
|
|
(integer_to_binary(Idx))/binary>>,
|
|
|
|
|
{[?MODULE], [{access, R2}], L2}} | Acc]}
|
|
|
|
|
end, {1, []}, R),
|
|
|
|
|
Res.
|
2016-10-05 13:21:11 +02:00
|
|
|
|
|
2016-06-21 12:28:53 +02:00
|
|
|
|
mod_opt_type(admin_ip_access) -> fun acl:access_rules_validator/1;
|
2016-03-29 19:40:20 +02:00
|
|
|
|
mod_opt_type(_) -> [admin_ip_access].
|