0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/test/http_SUITE_data/http_multipart.erl
Loïc Hoguin aa6f2ab5a4 Update the multipart reading interface
Now named read_part/read_part_body, with a verb indicating action.
2016-08-10 15:09:04 +02:00

18 lines
483 B
Erlang

%% Feel free to use, reuse and abuse the code in this file.
-module(http_multipart).
-export([init/2]).
init(Req, Opts) ->
{Result, Req2} = acc_multipart(Req, []),
{ok, cowboy_req:reply(200, #{}, term_to_binary(Result), Req2), Opts}.
acc_multipart(Req, Acc) ->
case cowboy_req:read_part(Req) of
{ok, Headers, Req2} ->
{ok, Body, Req3} = cowboy_req:read_part_body(Req2),
acc_multipart(Req3, [{Headers, Body}|Acc]);
{done, Req2} ->
{lists:reverse(Acc), Req2}
end.