aboutsummaryrefslogtreecommitdiffstats
path: root/examples/upload/src/upload_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/upload/src/upload_h.erl')
-rw-r--r--examples/upload/src/upload_h.erl15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/upload/src/upload_h.erl b/examples/upload/src/upload_h.erl
new file mode 100644
index 0000000..45db8e1
--- /dev/null
+++ b/examples/upload/src/upload_h.erl
@@ -0,0 +1,15 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+%% @doc Upload handler.
+-module(upload_h).
+
+-export([init/2]).
+
+init(Req, Opts) ->
+ {ok, Headers, Req2} = cowboy_req:read_part(Req),
+ {ok, Data, Req3} = cowboy_req:read_part_body(Req2),
+ {file, <<"inputfile">>, Filename, ContentType}
+ = cow_multipart:form_data(Headers),
+ io:format("Received file ~p of content-type ~p as follow:~n~p~n~n",
+ [Filename, ContentType, Data]),
+ {ok, Req3, Opts}.