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

The signature of parse_header, body_qs, multipart_data and the set_resp_* functions has changed. See the cowboy_req module edoc for more details.
24 lines
840 B
Erlang
24 lines
840 B
Erlang
%% Feel free to use, reuse and abuse the code in this file.
|
|
|
|
-module(http_handler_stream_body).
|
|
-behaviour(cowboy_http_handler).
|
|
-export([init/3, handle/2, terminate/2]).
|
|
|
|
-record(state, {headers, body, reply}).
|
|
|
|
init({_Transport, http}, Req, Opts) ->
|
|
Headers = proplists:get_value(headers, Opts, []),
|
|
Body = proplists:get_value(body, Opts, "http_handler_stream_body"),
|
|
Reply = proplists:get_value(reply, Opts),
|
|
{ok, Req, #state{headers=Headers, body=Body, reply=Reply}}.
|
|
|
|
handle(Req, State=#state{headers=_Headers, body=Body, reply=set_resp}) ->
|
|
{ok, Transport, Socket} = cowboy_req:transport(Req),
|
|
SFun = fun() -> Transport:send(Socket, Body), sent end,
|
|
SLen = iolist_size(Body),
|
|
Req2 = cowboy_req:set_resp_body_fun(SLen, SFun, Req),
|
|
{ok, Req3} = cowboy_req:reply(200, Req2),
|
|
{ok, Req3, State}.
|
|
|
|
terminate(_Req, _State) ->
|
|
ok.
|