aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_handler_echo_body.erl
blob: 37c207259ded2cbe06f6580d6d05acff8a4b33b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%% Feel free to use, reuse and abuse the code in this file.

-module(http_handler_echo_body).
-behaviour(cowboy_http_handler).
-export([init/3, handle/2, terminate/2]).

init({_, http}, Req, _) ->
	{ok, Req, undefined}.

handle(Req, State) ->
	true = cowboy_req:has_body(Req),
	{ok, Body, Req2} = cowboy_req:body(Req),
	{Size, Req3} = cowboy_req:body_length(Req2),
	Size = byte_size(Body),
	{ok, Req4} = cowboy_req:reply(200, [], Body, Req3),
	{ok, Req4, State}.

terminate(_, _) ->
	ok.