| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- %%--------------------------------------------------------------------
- %% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved.
- %%
- %% Licensed under the Apache License, Version 2.0 (the "License");
- %% you may not use this file except in compliance with the License.
- %% You may obtain a copy of the License at
- %%
- %% http://www.apache.org/licenses/LICENSE-2.0
- %%
- %% Unless required by applicable law or agreed to in writing, software
- %% distributed under the License is distributed on an "AS IS" BASIS,
- %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- %% See the License for the specific language governing permissions and
- %% limitations under the License.
- %%--------------------------------------------------------------------
- -module(emqx_authz_http_test_server).
- -behaviour(supervisor).
- -behaviour(cowboy_handler).
- % cowboy_server callbacks
- -export([init/2]).
- % supervisor callbacks
- -export([init/1]).
- % API
- -export([
- start_link/2,
- stop/0,
- set_handler/1
- ]).
- %%------------------------------------------------------------------------------
- %% API
- %%------------------------------------------------------------------------------
- start_link(Port, Path) ->
- supervisor:start_link({local, ?MODULE}, ?MODULE, [Port, Path]).
- stop() ->
- gen_server:stop(?MODULE).
- set_handler(F) when is_function(F, 2) ->
- true = ets:insert(?MODULE, {handler, F}),
- ok.
- %%------------------------------------------------------------------------------
- %% supervisor API
- %%------------------------------------------------------------------------------
- init([Port, Path]) ->
- Dispatch = cowboy_router:compile(
- [
- {'_', [{Path, ?MODULE, []}]}
- ]
- ),
- TransOpts = #{
- socket_opts => [{port, Port}],
- connection_type => supervisor
- },
- ProtoOpts = #{env => #{dispatch => Dispatch}},
- Tab = ets:new(?MODULE, [set, named_table, public]),
- ets:insert(Tab, {handler, fun default_handler/2}),
- ChildSpec = ranch:child_spec(?MODULE, ranch_tcp, TransOpts, cowboy_clear, ProtoOpts),
- {ok, {{one_for_one, 10, 10}, [ChildSpec]}}.
- %%------------------------------------------------------------------------------
- %% cowboy_server API
- %%------------------------------------------------------------------------------
- init(Req, State) ->
- [{handler, Handler}] = ets:lookup(?MODULE, handler),
- Handler(Req, State).
- %%------------------------------------------------------------------------------
- %% Internal functions
- %%------------------------------------------------------------------------------
- default_handler(Req0, State) ->
- Req = cowboy_req:reply(
- 400,
- #{<<"content-type">> => <<"text/plain">>},
- <<"">>,
- Req0
- ),
- {ok, Req, State}.
|