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

-module(http_multipart).

-export([init/2]).
-export([handle/2]).

init(Req, Opts) ->
	{http, Req, Opts}.

handle(Req, State) ->
	{Result, Req2} = acc_multipart(Req, []),
	{ok, cowboy_req:reply(200, [], term_to_binary(Result), Req2), State}.

acc_multipart(Req, Acc) ->
	case cowboy_req:part(Req) of
		{ok, Headers, Req2} ->
			{ok, Body, Req3} = cowboy_req:part_body(Req2),
			acc_multipart(Req3, [{Headers, Body}|Acc]);
		{done, Req2} ->
			{lists:reverse(Acc), Req2}
	end.