From 86cb105679ff80214bfc9d979afa27b1eb747307 Mon Sep 17 00:00:00 2001 From: Herman Singh Date: Fri, 7 Sep 2018 13:48:43 -0400 Subject: Rename handler modules to _h --- examples/upload/src/upload_app.erl | 2 +- examples/upload/src/upload_h.erl | 15 +++++++++++++++ examples/upload/src/upload_handler.erl | 15 --------------- 3 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 examples/upload/src/upload_h.erl delete mode 100644 examples/upload/src/upload_handler.erl (limited to 'examples/upload/src') diff --git a/examples/upload/src/upload_app.erl b/examples/upload/src/upload_app.erl index 37929cd..2ed5804 100644 --- a/examples/upload/src/upload_app.erl +++ b/examples/upload/src/upload_app.erl @@ -13,7 +13,7 @@ start(_Type, _Args) -> Dispatch = cowboy_router:compile([ {'_', [ {"/", cowboy_static, {priv_file, upload, "index.html"}}, - {"/upload", upload_handler, []} + {"/upload", upload_h, []} ]} ]), {ok, _} = cowboy:start_clear(http, [{port, 8080}], #{ 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}. diff --git a/examples/upload/src/upload_handler.erl b/examples/upload/src/upload_handler.erl deleted file mode 100644 index 5dbf08f..0000000 --- a/examples/upload/src/upload_handler.erl +++ /dev/null @@ -1,15 +0,0 @@ -%% Feel free to use, reuse and abuse the code in this file. - -%% @doc Upload handler. --module(upload_handler). - --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}. -- cgit v1.2.3