0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
cowboy/test/http_handler_echo_body.erl
Loïc Hoguin 95e05d822f Add chunked transfer encoding support and rework the body reading API
Introduces 3 low level functions and updates the existing higher
levels functions. The new primitives are has_body/1, body_length/1
and stream_body/1. In addition to that, a helper function
init_stream/4 has been added.

Streaming a body implies to decode the Transfer-Encoding and
Content-Encoding used for the body. By default, Cowboy will try
to figure out what was used and decode them properly. You can
override this if you want to disable this behavior or simply
support more encodings by calling the init_stream/4 function
before you start streaming the body.
2012-04-01 21:25:55 +02:00

19 lines
517 B
Erlang

%% 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, Req1} = cowboy_http_req:has_body(Req),
{ok, Body, Req2} = cowboy_http_req:body(Req1),
{Size, Req3} = cowboy_http_req:body_length(Req2),
Size = byte_size(Body),
{ok, Req4} = cowboy_http_req:reply(200, [], Body, Req3),
{ok, Req4, State}.
terminate(_, _) ->
ok.