2011-12-28 18:00:27 +01:00
|
|
|
%% 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}}.
|
|
|
|
|
2013-01-05 23:35:30 +01:00
|
|
|
handle(Req, State=#state{headers=_Headers, body=Body, reply=Reply}) ->
|
2013-01-05 20:19:43 +01:00
|
|
|
SFun = fun(Socket, Transport) -> Transport:send(Socket, Body) end,
|
2013-01-05 23:35:30 +01:00
|
|
|
Req2 = case Reply of
|
|
|
|
set_resp ->
|
|
|
|
SLen = iolist_size(Body),
|
|
|
|
cowboy_req:set_resp_body_fun(SLen, SFun, Req);
|
|
|
|
set_resp_close ->
|
|
|
|
cowboy_req:set_resp_body_fun(SFun, Req)
|
|
|
|
end,
|
2012-08-27 13:28:57 +02:00
|
|
|
{ok, Req3} = cowboy_req:reply(200, Req2),
|
2011-12-28 18:00:27 +01:00
|
|
|
{ok, Req3, State}.
|
|
|
|
|
|
|
|
terminate(_Req, _State) ->
|
|
|
|
ok.
|