mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
fddd6110e0
The changes are very similar to those from previous commit: * Now there is no need to pass validating function in gen_mod:get_opt() and gen_mod:get_module_opt() functions, because the modules' configuration keeps already validated values. * New functions gen_mod:get_opt/2 and gen_mod:get_module_opt/3 are introduced. * Functions gen_mod:get_opt/4 and get_module_opt/5 are deprecated. If the functions are still called, the "function" argument is simply ignored. * Validating callback Mod:listen_opt_type/1 is introduced to validate listening options at startup.
573 lines
19 KiB
Erlang
573 lines
19 KiB
Erlang
%%%----------------------------------------------------------------------
|
||
%%% 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>
|
||
%%%
|
||
%%%
|
||
%%% ejabberd, Copyright (C) 2002-2017 ProcessOne
|
||
%%%
|
||
%%% 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
|
||
%%
|
||
%% 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
|
||
%%
|
||
%% Access rights are defined with:
|
||
%% commands_admin_access: configure
|
||
%% 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>
|
||
%%
|
||
%% 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"
|
||
|
||
-module(mod_http_api).
|
||
|
||
-author('cromain@process-one.net').
|
||
|
||
-behaviour(gen_mod).
|
||
|
||
-export([start/2, stop/1, reload/3, process/2, mod_opt_type/1, depends/2]).
|
||
|
||
-include("ejabberd.hrl").
|
||
-include("xmpp.hrl").
|
||
-include("logger.hrl").
|
||
-include("ejabberd_http.hrl").
|
||
|
||
-define(DEFAULT_API_VERSION, 0).
|
||
|
||
-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">>,
|
||
<<"Content-Type, Authorization, X-Admin">>}).
|
||
|
||
-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) ->
|
||
ejabberd_access_permissions:register_permission_addon(?MODULE, fun permission_addon/0),
|
||
ok.
|
||
|
||
stop(_Host) ->
|
||
ejabberd_access_permissions:unregister_permission_addon(?MODULE),
|
||
ok.
|
||
|
||
reload(Host, NewOpts, _OldOpts) ->
|
||
stop(Host),
|
||
start(Host, NewOpts).
|
||
|
||
depends(_Host, _Opts) ->
|
||
[].
|
||
|
||
%% ----------
|
||
%% basic auth
|
||
%% ----------
|
||
|
||
extract_auth(#request{auth = HTTPAuth, ip = {IP, _}}) ->
|
||
Info = case HTTPAuth of
|
||
{SJID, Pass} ->
|
||
try jid:decode(SJID) of
|
||
#jid{luser = User, lserver = Server} ->
|
||
case ejabberd_auth:check_password(User, <<"">>, Server, Pass) of
|
||
true ->
|
||
#{usr => {User, Server, <<"">>}, caller_server => Server};
|
||
false ->
|
||
{error, invalid_auth}
|
||
end
|
||
catch _:{bad_jid, _} ->
|
||
{error, invalid_auth}
|
||
end;
|
||
{oauth, Token, _} ->
|
||
case ejabberd_oauth:check_token(Token) of
|
||
{ok, {U, S}, Scope} ->
|
||
#{usr => {U, S, <<"">>}, oauth_scope => Scope, caller_server => S};
|
||
{false, Reason} ->
|
||
{error, Reason}
|
||
end;
|
||
_ ->
|
||
#{}
|
||
end,
|
||
case Info of
|
||
Map when is_map(Map) ->
|
||
Map#{caller_module => ?MODULE, ip => IP};
|
||
_ ->
|
||
?DEBUG("Invalid auth data: ~p", [Info]),
|
||
Info
|
||
end;
|
||
extract_auth(#request{ip = IP}) ->
|
||
#{ip => IP, caller_module => ?MODULE}.
|
||
|
||
%% ------------------
|
||
%% command processing
|
||
%% ------------------
|
||
|
||
%process(Call, Request) ->
|
||
% ?DEBUG("~p~n~p", [Call, Request]), ok;
|
||
process(_, #request{method = 'POST', data = <<>>}) ->
|
||
?DEBUG("Bad Request: no data", []),
|
||
badrequest_response(<<"Missing POST data">>);
|
||
process([Call], #request{method = 'POST', data = Data, ip = IPPort} = Req) ->
|
||
Version = get_api_version(Req),
|
||
try
|
||
Args = extract_args(Data),
|
||
log(Call, Args, IPPort),
|
||
perform_call(Call, Args, Req, Version)
|
||
catch
|
||
%% TODO We need to refactor to remove redundant error return formatting
|
||
throw:{error, unknown_command} ->
|
||
json_format({404, 44, <<"Command not found.">>});
|
||
_:{error,{_,invalid_json}} = _Err ->
|
||
?DEBUG("Bad Request: ~p", [_Err]),
|
||
badrequest_response(<<"Invalid JSON input">>);
|
||
_:_Error ->
|
||
?DEBUG("Bad Request: ~p ~p", [_Error, erlang:get_stacktrace()]),
|
||
badrequest_response()
|
||
end;
|
||
process([Call], #request{method = 'GET', q = Data, ip = {IP, _}} = Req) ->
|
||
Version = get_api_version(Req),
|
||
try
|
||
Args = case Data of
|
||
[{nokey, <<>>}] -> [];
|
||
_ -> Data
|
||
end,
|
||
log(Call, Args, IP),
|
||
perform_call(Call, Args, Req, Version)
|
||
catch
|
||
%% TODO We need to refactor to remove redundant error return formatting
|
||
throw:{error, unknown_command} ->
|
||
json_format({404, 44, <<"Command not found.">>});
|
||
_:_Error ->
|
||
|
||
?DEBUG("Bad Request: ~p ~p", [_Error, erlang:get_stacktrace()]),
|
||
badrequest_response()
|
||
end;
|
||
process([_Call], #request{method = 'OPTIONS', data = <<>>}) ->
|
||
{200, ?OPTIONS_HEADER, []};
|
||
process(_, #request{method = 'OPTIONS'}) ->
|
||
{400, ?OPTIONS_HEADER, []};
|
||
process(_Path, Request) ->
|
||
?DEBUG("Bad Request: no handler ~p", [Request]),
|
||
json_error(400, 40, <<"Missing command name.">>).
|
||
|
||
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.
|
||
|
||
%% 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.
|
||
|
||
% 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]) ->
|
||
case catch binary_to_integer(String) of
|
||
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.
|
||
|
||
%% ----------------
|
||
%% command handlers
|
||
%% ----------------
|
||
|
||
%% TODO Check accept types of request before decided format of reply.
|
||
|
||
% generic ejabberd command handler
|
||
handle(Call, Auth, Args, Version) when is_atom(Call), is_list(Args) ->
|
||
case ejabberd_commands:get_command_format(Call, Auth, Version) of
|
||
{ArgsSpec, _} when is_list(ArgsSpec) ->
|
||
Args2 = [{misc:binary_to_atom(Key), Value} || {Key, Value} <- Args],
|
||
Spec = lists:foldr(
|
||
fun ({Key, binary}, Acc) ->
|
||
[{Key, <<>>}|Acc];
|
||
({Key, string}, Acc) ->
|
||
[{Key, ""}|Acc];
|
||
({Key, integer}, Acc) ->
|
||
[{Key, 0}|Acc];
|
||
({Key, {list, _}}, Acc) ->
|
||
[{Key, []}|Acc];
|
||
({Key, atom}, Acc) ->
|
||
[{Key, undefined}|Acc]
|
||
end, [], ArgsSpec),
|
||
try
|
||
handle2(Call, Auth, match(Args2, Spec), Version)
|
||
catch throw:not_found ->
|
||
{404, <<"not_found">>};
|
||
throw:{not_found, Why} when is_atom(Why) ->
|
||
{404, misc:atom_to_binary(Why)};
|
||
throw:{not_found, Msg} ->
|
||
{404, iolist_to_binary(Msg)};
|
||
throw:not_allowed ->
|
||
{401, <<"not_allowed">>};
|
||
throw:{not_allowed, Why} when is_atom(Why) ->
|
||
{401, misc:atom_to_binary(Why)};
|
||
throw:{not_allowed, Msg} ->
|
||
{401, iolist_to_binary(Msg)};
|
||
throw:{error, account_unprivileged} ->
|
||
{403, 31, <<"Command need to be run with admin priviledge.">>};
|
||
throw:{error, access_rules_unauthorized} ->
|
||
{403, 32, <<"AccessRules: Account does not have the right to perform the operation.">>};
|
||
throw:{invalid_parameter, Msg} ->
|
||
{400, iolist_to_binary(Msg)};
|
||
throw:{error, Why} when is_atom(Why) ->
|
||
{400, misc:atom_to_binary(Why)};
|
||
throw:{error, Msg} ->
|
||
{400, iolist_to_binary(Msg)};
|
||
throw:Error when is_atom(Error) ->
|
||
{400, misc:atom_to_binary(Error)};
|
||
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;
|
||
{error, Msg} ->
|
||
?ERROR_MSG("REST API Error: ~p", [Msg]),
|
||
{400, Msg};
|
||
_Error ->
|
||
?ERROR_MSG("REST API Error: ~p", [_Error]),
|
||
{400, <<"Error">>}
|
||
end.
|
||
|
||
handle2(Call, Auth, Args, Version) when is_atom(Call), is_list(Args) ->
|
||
{ArgsF, _ResultF} = ejabberd_commands:get_command_format(Call, Auth, Version),
|
||
ArgsFormatted = format_args(Args, ArgsF),
|
||
case ejabberd_commands:execute_command2(Call, ArgsFormatted, Auth, Version) of
|
||
{error, Error} ->
|
||
throw(Error);
|
||
Res ->
|
||
format_command_result(Call, Auth, Res, Version)
|
||
end.
|
||
|
||
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.
|
||
|
||
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}})
|
||
when is_list(Elements) ->
|
||
[{format_arg(Element, ElementDefFormat)}
|
||
|| Element <- Elements];
|
||
format_arg(Elements,
|
||
{list, {_ElementDefName, ElementDefFormat}})
|
||
when is_list(Elements) ->
|
||
[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},
|
||
{tuple, ElementsDef})
|
||
when is_list(Elements) ->
|
||
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})
|
||
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;
|
||
format_arg(Arg, string) when is_list(Arg) -> Arg;
|
||
format_arg(Arg, string) when is_binary(Arg) -> binary_to_list(Arg);
|
||
format_arg(undefined, binary) -> <<>>;
|
||
format_arg(undefined, string) -> "";
|
||
format_arg(Arg, Format) ->
|
||
?ERROR_MSG("don't know how to format Arg ~p for format ~p", [Arg, Format]),
|
||
throw({invalid_parameter,
|
||
io_lib:format("Arg ~w is not in format ~w",
|
||
[Arg, Format])}).
|
||
|
||
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].
|
||
|
||
format_command_result(Cmd, Auth, Result, Version) ->
|
||
{_, ResultFormat} = ejabberd_commands:get_command_format(Cmd, Auth, Version),
|
||
case {ResultFormat, Result} of
|
||
{{_, rescode}, V} when V == true; V == ok ->
|
||
{200, 0};
|
||
{{_, rescode}, _} ->
|
||
{200, 1};
|
||
{_, {error, ErrorAtom, Code, Msg}} ->
|
||
format_error_result(ErrorAtom, Code, Msg);
|
||
{{_, restuple}, {V, Text}} when V == true; V == ok ->
|
||
{200, iolist_to_binary(Text)};
|
||
{{_, restuple}, {ErrorAtom, Msg}} ->
|
||
format_error_result(ErrorAtom, 0, Msg);
|
||
{{_, {list, _}}, _V} ->
|
||
{_, L} = format_result(Result, ResultFormat),
|
||
{200, L};
|
||
{{_, {tuple, _}}, _V} ->
|
||
{_, T} = format_result(Result, ResultFormat),
|
||
{200, T};
|
||
_ ->
|
||
{200, {[format_result(Result, ResultFormat)]}}
|
||
end.
|
||
|
||
format_result(Atom, {Name, atom}) ->
|
||
{misc:atom_to_binary(Name), misc:atom_to_binary(Atom)};
|
||
|
||
format_result(Int, {Name, integer}) ->
|
||
{misc:atom_to_binary(Name), Int};
|
||
|
||
format_result([String | _] = StringList, {Name, string}) when is_list(String) ->
|
||
Binarized = iolist_to_binary(string:join(StringList, "\n")),
|
||
{misc:atom_to_binary(Name), Binarized};
|
||
|
||
format_result(String, {Name, string}) ->
|
||
{misc:atom_to_binary(Name), iolist_to_binary(String)};
|
||
|
||
format_result(Code, {Name, rescode}) ->
|
||
{misc:atom_to_binary(Name), Code == true orelse Code == ok};
|
||
|
||
format_result({Code, Text}, {Name, restuple}) ->
|
||
{misc:atom_to_binary(Name),
|
||
{[{<<"res">>, Code == true orelse Code == ok},
|
||
{<<"text">>, iolist_to_binary(Text)}]}};
|
||
|
||
format_result(Code, {Name, restuple}) ->
|
||
{misc:atom_to_binary(Name),
|
||
{[{<<"res">>, Code == true orelse Code == ok},
|
||
{<<"text">>, <<"">>}]}};
|
||
|
||
format_result(Els, {Name, {list, {_, {tuple, [{_, atom}, _]}} = Fmt}}) ->
|
||
{misc:atom_to_binary(Name), {[format_result(El, Fmt) || El <- Els]}};
|
||
|
||
format_result(Els, {Name, {list, Def}}) ->
|
||
{misc:atom_to_binary(Name), [element(2, format_result(El, Def)) || El <- Els]};
|
||
|
||
format_result(Tuple, {_Name, {tuple, [{_, atom}, ValFmt]}}) ->
|
||
{Name2, Val} = Tuple,
|
||
{_, Val2} = format_result(Val, ValFmt),
|
||
{misc:atom_to_binary(Name2), Val2};
|
||
|
||
format_result(Tuple, {Name, {tuple, Def}}) ->
|
||
Els = lists:zip(tuple_to_list(Tuple), Def),
|
||
{misc:atom_to_binary(Name), {[format_result(El, ElDef) || {El, ElDef} <- Els]}};
|
||
|
||
format_result(404, {_Name, _}) ->
|
||
"not_found".
|
||
|
||
|
||
format_error_result(conflict, Code, Msg) ->
|
||
{409, Code, iolist_to_binary(Msg)};
|
||
format_error_result(_ErrorAtom, Code, Msg) ->
|
||
{500, Code, iolist_to_binary(Msg)}.
|
||
|
||
unauthorized_response() ->
|
||
json_error(401, 10, <<"You are not authorized to call this command.">>).
|
||
|
||
invalid_token_response() ->
|
||
json_error(401, 10, <<"Oauth Token is invalid or expired.">>).
|
||
|
||
%% outofscope_response() ->
|
||
%% json_error(401, 11, <<"Token does not grant usage to command required scope.">>).
|
||
|
||
badrequest_response() ->
|
||
badrequest_response(<<"400 Bad Request">>).
|
||
badrequest_response(Body) ->
|
||
json_response(400, jiffy:encode(Body)).
|
||
|
||
json_format({Code, Result}) ->
|
||
json_response(Code, jiffy:encode(Result));
|
||
json_format({HTMLCode, JSONErrorCode, Message}) ->
|
||
json_error(HTMLCode, JSONErrorCode, Message).
|
||
|
||
json_response(Code, Body) when is_integer(Code) ->
|
||
{Code, ?HEADER(?CT_JSON), Body}.
|
||
|
||
%% HTTPCode, JSONCode = integers
|
||
%% message is binary
|
||
json_error(HTTPCode, JSONCode, Message) ->
|
||
{HTTPCode, ?HEADER(?CT_JSON),
|
||
jiffy:encode({[{<<"status">>, <<"error">>},
|
||
{<<"code">>, JSONCode},
|
||
{<<"message">>, Message}]})
|
||
}.
|
||
|
||
log(Call, Args, {Addr, Port}) ->
|
||
AddrS = misc:ip_to_list({Addr, Port}),
|
||
?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]).
|
||
|
||
permission_addon() ->
|
||
Access = gen_mod:get_module_opt(global, ?MODULE, admin_ip_access, none),
|
||
Rules = acl:resolve_access(Access, global),
|
||
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.
|
||
|
||
mod_opt_type(admin_ip_access) -> fun acl:access_rules_validator/1;
|
||
mod_opt_type(_) -> [admin_ip_access].
|