mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00

The Opts value is put last, to be more consistent with the rest of the cowboy_req module. Additionally a test handler was fixed which reduced the number of errors in http_SUITE.
25 lines
806 B
Erlang
25 lines
806 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
-module(http_set_resp).
|
|
|
|
-export([init/2]).
|
|
|
|
init(Req, Opts) ->
|
|
Headers = proplists:get_value(headers, Opts, #{}),
|
|
Body = proplists:get_value(body, Opts, <<"http_handler_set_resp">>),
|
|
Req2 = lists:foldl(fun({Name, Value}, R) ->
|
|
cowboy_req:set_resp_header(Name, Value, R)
|
|
end, Req, maps:to_list(Headers)),
|
|
Req3 = cowboy_req:set_resp_body(Body, Req2),
|
|
Req4 = cowboy_req:set_resp_header(<<"x-cowboy-test">>, <<"ok">>, Req3),
|
|
Req5 = cowboy_req:set_resp_cookie(<<"cake">>, <<"lie">>, Req4),
|
|
case cowboy_req:has_resp_header(<<"x-cowboy-test">>, Req5) of
|
|
false -> {ok, Req5, Opts};
|
|
true ->
|
|
case cowboy_req:has_resp_body(Req5) of
|
|
false ->
|
|
{ok, Req5, Opts};
|
|
true ->
|
|
{ok, cowboy_req:reply(200, Req5), Opts}
|
|
end
|
|
end.
|