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

This set of changes is the first step to simplify the writing of handlers, by removing some extraneous callbacks and making others optional. init/3 is now init/2, its first argument being removed. rest_init/2 and rest_terminate/2 have been removed. websocket_init/3 and websocket_terminate/3 have been removed. terminate/3 is now optional. It is called regardless of the type of handler, including rest and websocket. The return value of init/2 changed. It now returns {Mod, Req, Opts} with Mod being either one of the four handler type or a custom module. It can also return extra timeout and hibernate options. The signature for sub protocols has changed, they now receive these extra timeout and hibernate options. Loop handlers are now implemented in cowboy_long_polling, and will be renamed throughout the project in a future commit.
33 lines
883 B
Erlang
33 lines
883 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
%% @doc POST echo handler.
|
|
-module(toppage_handler).
|
|
|
|
-export([init/2]).
|
|
-export([handle/2]).
|
|
|
|
init(Req, Opts) ->
|
|
{http, Req, Opts}.
|
|
|
|
handle(Req, State) ->
|
|
Method = cowboy_req:method(Req),
|
|
HasBody = cowboy_req:has_body(Req),
|
|
Req2 = maybe_echo(Method, HasBody, Req),
|
|
{ok, Req2, State}.
|
|
|
|
maybe_echo(<<"POST">>, true, Req) ->
|
|
{ok, PostVals, Req2} = cowboy_req:body_qs(Req),
|
|
Echo = proplists:get_value(<<"echo">>, PostVals),
|
|
echo(Echo, Req2);
|
|
maybe_echo(<<"POST">>, false, Req) ->
|
|
cowboy_req:reply(400, [], <<"Missing body.">>, Req);
|
|
maybe_echo(_, _, Req) ->
|
|
%% Method not allowed.
|
|
cowboy_req:reply(405, Req).
|
|
|
|
echo(undefined, Req) ->
|
|
cowboy_req:reply(400, [], <<"Missing echo parameter.">>, Req);
|
|
echo(Echo, Req) ->
|
|
cowboy_req:reply(200, [
|
|
{<<"content-type">>, <<"text/plain; charset=utf-8">>}
|
|
], Echo, Req).
|