0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/test/handlers/create_resource_h.erl
Martin Björklund 8795233c57
AcceptCallback may now return created/see_other tuples for POST
They replace and deprecate the {true,URI} return value.
2020-11-27 16:17:43 +01:00

28 lines
646 B
Erlang

-module(create_resource_h).
-export([init/2]).
-export([allowed_methods/2]).
-export([resource_exists/2]).
-export([content_types_accepted/2]).
-export([from_text/2]).
init(Req, Opts) ->
{cowboy_rest, Req, Opts}.
allowed_methods(Req, State) ->
{[<<"POST">>], Req, State}.
resource_exists(Req, State) ->
{true, Req, State}.
content_types_accepted(Req, State) ->
{[{{<<"application">>, <<"text">>, []}, from_text}], Req, State}.
from_text(Req=#{qs := Qs}, State) ->
NewURI = [cowboy_req:uri(Req), "/foo"],
case Qs of
<<"created">> ->
{{created, NewURI}, Req, State};
<<"see_other">> ->
{{see_other, NewURI}, Req, State}
end.