From 86d06dc52324037187b78d2e7d72799cddf5777f Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Tue, 22 Jul 2014 20:33:22 +1200 Subject: [PATCH] Extract allowed_methods to simple macro --- lib/httparrot/base64_handler.ex | 11 +---------- lib/httparrot/basic_auth_handler.ex | 10 +--------- lib/httparrot/cache_handler.ex | 11 +---------- lib/httparrot/cookies_handler.ex | 11 +---------- lib/httparrot/cowboy.ex | 15 +++++++++++++++ lib/httparrot/delayed_handler.ex | 11 +---------- lib/httparrot/delete_cookies_handler.ex | 11 +---------- lib/httparrot/delete_handler.ex | 11 +---------- lib/httparrot/deny_handler.ex | 11 +---------- lib/httparrot/get_handler.ex | 11 +---------- lib/httparrot/headers_handler.ex | 10 +--------- lib/httparrot/hidden_basic_auth_handler.ex | 10 +--------- lib/httparrot/image_handler.ex | 11 +---------- lib/httparrot/ip_handler.ex | 11 +---------- lib/httparrot/p_handler.ex | 2 -- lib/httparrot/redirect_handler.ex | 11 +---------- lib/httparrot/redirect_to_handler.ex | 11 +---------- lib/httparrot/relative_redirect_handler.ex | 11 +---------- lib/httparrot/robots_handler.ex | 11 +---------- lib/httparrot/set_cookies_handler.ex | 11 +---------- lib/httparrot/status_code_handler.ex | 11 +---------- lib/httparrot/stream_handler.ex | 11 +---------- lib/httparrot/user_agent_handler.ex | 11 +---------- 23 files changed, 36 insertions(+), 209 deletions(-) create mode 100644 lib/httparrot/cowboy.ex diff --git a/lib/httparrot/base64_handler.ex b/lib/httparrot/base64_handler.ex index ad7a1dc..fc7b5f9 100644 --- a/lib/httparrot/base64_handler.ex +++ b/lib/httparrot/base64_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.Base64Handler do @moduledoc """ Returns urlsafe base64 decoded data. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "octet-stream", []}, :get_binary}], req, state} @@ -39,6 +32,4 @@ defmodule HTTParrot.Base64Handler do def get_binary(req, result) do {result, req, result} end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/basic_auth_handler.ex b/lib/httparrot/basic_auth_handler.ex index d738be1..316fb13 100644 --- a/lib/httparrot/basic_auth_handler.ex +++ b/lib/httparrot/basic_auth_handler.ex @@ -2,13 +2,7 @@ defmodule HTTParrot.BasicAuthHandler do @moduledoc """ Challenges HTTPBasic Auth """ - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def is_authorized(req, state) do {user, req} = :cowboy_req.binding(:user, req) @@ -31,6 +25,4 @@ defmodule HTTParrot.BasicAuthHandler do defp response(user) do [authenticated: true, user: user] |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/cache_handler.ex b/lib/httparrot/cache_handler.ex index 522c8f8..263c77b 100644 --- a/lib/httparrot/cache_handler.ex +++ b/lib/httparrot/cache_handler.ex @@ -3,14 +3,7 @@ defmodule HTTParrot.CacheHandler do Returns 200 unless an If-Modified-Since or If-None-Match header is provided, when it returns a 304. """ alias HTTParrot.GeneralRequestInfo - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def last_modified(req, state) do {{{2012, 9, 21}, {22, 36, 14}}, req, state} @@ -28,6 +21,4 @@ defmodule HTTParrot.CacheHandler do defp response(info) do info |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/cookies_handler.ex b/lib/httparrot/cookies_handler.ex index b78b8f4..fb8a3de 100644 --- a/lib/httparrot/cookies_handler.ex +++ b/lib/httparrot/cookies_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.CookiesHandler do @moduledoc """ Returns cookie data. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "json", []}, :get_json}], req, state} @@ -24,6 +17,4 @@ defmodule HTTParrot.CookiesHandler do defp response(cookies) do [cookies: cookies] |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/cowboy.ex b/lib/httparrot/cowboy.ex new file mode 100644 index 0000000..e96549f --- /dev/null +++ b/lib/httparrot/cowboy.ex @@ -0,0 +1,15 @@ +defmodule HTTParrot.Cowboy do + defmacro __using__(opts) do + methods = Keyword.get(opts, :methods, []) + + quote bind_quoted: [methods: methods] do + def init(_transport, _req, _opts) do + {:upgrade, :protocol, :cowboy_rest} + end + + def allowed_methods(req, state) do + {unquote(methods), req, state} + end + end + end +end diff --git a/lib/httparrot/delayed_handler.ex b/lib/httparrot/delayed_handler.ex index a4104a6..6de872a 100644 --- a/lib/httparrot/delayed_handler.ex +++ b/lib/httparrot/delayed_handler.ex @@ -1,13 +1,6 @@ defmodule HTTParrot.DelayedHandler do alias HTTParrot.GeneralRequestInfo - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def malformed_request(req, state) do {n, req} = :cowboy_req.binding(:n, req) @@ -32,6 +25,4 @@ defmodule HTTParrot.DelayedHandler do defp response(info) do info |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/delete_cookies_handler.ex b/lib/httparrot/delete_cookies_handler.ex index dae3d86..4ab404b 100644 --- a/lib/httparrot/delete_cookies_handler.ex +++ b/lib/httparrot/delete_cookies_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.DeleteCookiesHandler do @moduledoc """ Deletes one or more simple cookies. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def malformed_request(req, state) do {qs_vals, req} = :cowboy_req.qs_vals(req) @@ -32,6 +25,4 @@ defmodule HTTParrot.DeleteCookiesHandler do defp delete_cookie(name, value, req) do :cowboy_req.set_resp_cookie(name, value, [path: "/", max_age: 0], req) end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/delete_handler.ex b/lib/httparrot/delete_handler.ex index a8cb213..866534f 100644 --- a/lib/httparrot/delete_handler.ex +++ b/lib/httparrot/delete_handler.ex @@ -3,14 +3,7 @@ defmodule HTTParrot.DeleteHandler do Returns DELETE data. """ alias HTTParrot.GeneralRequestInfo - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["DELETE"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(DELETE) def delete_resource(req, state) do {info, req} = GeneralRequestInfo.retrieve(req) @@ -21,6 +14,4 @@ defmodule HTTParrot.DeleteHandler do defp response(info) do info |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/deny_handler.ex b/lib/httparrot/deny_handler.ex index 57c1153..7cb664d 100644 --- a/lib/httparrot/deny_handler.ex +++ b/lib/httparrot/deny_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.DenyHandler do @moduledoc """ Returns a simple HTML page. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"text", "plain", []}, :get_plain}], req, state} @@ -30,6 +23,4 @@ defmodule HTTParrot.DenyHandler do def get_plain(req, state) do {@body, req, state} end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/get_handler.ex b/lib/httparrot/get_handler.ex index 5065ea6..43edf7a 100644 --- a/lib/httparrot/get_handler.ex +++ b/lib/httparrot/get_handler.ex @@ -3,14 +3,7 @@ defmodule HTTParrot.GetHandler do Returns GET data. """ alias HTTParrot.GeneralRequestInfo - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "json", []}, :get_json}], req, state} @@ -24,6 +17,4 @@ defmodule HTTParrot.GetHandler do defp response(info) do info |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/headers_handler.ex b/lib/httparrot/headers_handler.ex index ba6f346..69f15b1 100644 --- a/lib/httparrot/headers_handler.ex +++ b/lib/httparrot/headers_handler.ex @@ -1,11 +1,5 @@ defmodule HTTParrot.HeadersHandler do - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "json", []}, :get_json}], req, state} @@ -19,6 +13,4 @@ defmodule HTTParrot.HeadersHandler do defp response(headers) do [headers: headers] |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/hidden_basic_auth_handler.ex b/lib/httparrot/hidden_basic_auth_handler.ex index bfc26b5..dfbb5ca 100644 --- a/lib/httparrot/hidden_basic_auth_handler.ex +++ b/lib/httparrot/hidden_basic_auth_handler.ex @@ -2,13 +2,7 @@ defmodule HTTParrot.HiddenBasicAuthHandler do @moduledoc """ 404'd BasicAuth """ - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) @doc """ This method should be `is_authorized`, but this handler will return 404 if the auth fails @@ -34,6 +28,4 @@ defmodule HTTParrot.HiddenBasicAuthHandler do defp response(user) do [authenticated: true, user: user] |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/image_handler.ex b/lib/httparrot/image_handler.ex index a6fb00a..8c6760d 100644 --- a/lib/httparrot/image_handler.ex +++ b/lib/httparrot/image_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.ImageHandler do @moduledoc """ Returns an image. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"image", "png", []}, :get_png}, @@ -21,6 +14,4 @@ defmodule HTTParrot.ImageHandler do def get_png(req, state), do: {@png, req, state} def get_jpeg(req, state), do: {@jpeg, req, state} - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/ip_handler.ex b/lib/httparrot/ip_handler.ex index 0fb8f95..d2458bb 100644 --- a/lib/httparrot/ip_handler.ex +++ b/lib/httparrot/ip_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.IPHandler do @moduledoc """ Returns Origin IP """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "json", []}, :get_json}], req, state} @@ -24,6 +17,4 @@ defmodule HTTParrot.IPHandler do ip = :inet_parse.ntoa(ip) |> to_string [origin: ip] |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/p_handler.ex b/lib/httparrot/p_handler.ex index 63319c3..32de62c 100644 --- a/lib/httparrot/p_handler.ex +++ b/lib/httparrot/p_handler.ex @@ -57,6 +57,4 @@ defmodule HTTParrot.PHandler do defp response(info, body) do info ++ body |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/redirect_handler.ex b/lib/httparrot/redirect_handler.ex index 99585ad..b3dae12 100644 --- a/lib/httparrot/redirect_handler.ex +++ b/lib/httparrot/redirect_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.RedirectHandler do @moduledoc """ Redirects to the foo URL. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def malformed_request(req, state) do {n, req} = :cowboy_req.binding(:n, req) @@ -29,6 +22,4 @@ defmodule HTTParrot.RedirectHandler do url = if n > 1, do: "/redirect/#{n-1}", else: "/get" {{true, host_url <> url}, req, nil} end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/redirect_to_handler.ex b/lib/httparrot/redirect_to_handler.ex index 1ec7499..9d6d660 100644 --- a/lib/httparrot/redirect_to_handler.ex +++ b/lib/httparrot/redirect_to_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.RedirectToHandler do @moduledoc """ Redirects to the foo URL. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def malformed_request(req, state) do {url, req} = :cowboy_req.qs_val("url", req, nil) @@ -22,6 +15,4 @@ defmodule HTTParrot.RedirectToHandler do def moved_permanently(req, url) do {{true, url}, req, url} end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/relative_redirect_handler.ex b/lib/httparrot/relative_redirect_handler.ex index 163b32c..9373fbc 100644 --- a/lib/httparrot/relative_redirect_handler.ex +++ b/lib/httparrot/relative_redirect_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.RelativeRedirectHandler do @moduledoc """ Redirects to the relative foo URL. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def malformed_request(req, state) do HTTParrot.RedirectHandler.malformed_request(req, state) @@ -22,6 +15,4 @@ defmodule HTTParrot.RelativeRedirectHandler do url = if n > 1, do: "/redirect/#{n-1}", else: "/get" {{true, url}, req, nil} end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/robots_handler.ex b/lib/httparrot/robots_handler.ex index 673a804..7bfc9c4 100644 --- a/lib/httparrot/robots_handler.ex +++ b/lib/httparrot/robots_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.RobotsHandler do @moduledoc """ Returns a robots.txt. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"text", "plain", []}, :get_text}], req, state} @@ -21,6 +14,4 @@ defmodule HTTParrot.RobotsHandler do """ def get_text(req, state), do: {@robots, req, state} - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/set_cookies_handler.ex b/lib/httparrot/set_cookies_handler.ex index d367ac6..e8c2da6 100644 --- a/lib/httparrot/set_cookies_handler.ex +++ b/lib/httparrot/set_cookies_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.SetCookiesHandler do @moduledoc """ Sets one or more simple cookies. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def malformed_request(req, state) do {qs_vals, req} = :cowboy_req.qs_vals(req) @@ -37,6 +30,4 @@ defmodule HTTParrot.SetCookiesHandler do defp set_cookie(name, value, req) do :cowboy_req.set_resp_cookie(name, value, [path: "/"], req) end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/status_code_handler.ex b/lib/httparrot/status_code_handler.ex index b1dca2e..72c1636 100644 --- a/lib/httparrot/status_code_handler.ex +++ b/lib/httparrot/status_code_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.StatusCodeHandler do @moduledoc """ Returns given HTTP Status code. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {~W(GET HEAD OPTIONS), req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "json", []}, :get_json}], req, state} @@ -20,6 +13,4 @@ defmodule HTTParrot.StatusCodeHandler do {:ok, req} = :cowboy_req.reply(code, [], "", req) {:halt, req, state} end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/stream_handler.ex b/lib/httparrot/stream_handler.ex index 6608565..42acdeb 100644 --- a/lib/httparrot/stream_handler.ex +++ b/lib/httparrot/stream_handler.ex @@ -3,14 +3,7 @@ defmodule HTTParrot.StreamHandler do Returns GET data. """ alias HTTParrot.GeneralRequestInfo - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) @doc """ `n` must be an integer between 1-100 @@ -41,6 +34,4 @@ defmodule HTTParrot.StreamHandler do end end end - - def terminate(_, _, _), do: :ok end diff --git a/lib/httparrot/user_agent_handler.ex b/lib/httparrot/user_agent_handler.ex index 5e9645c..158d92f 100644 --- a/lib/httparrot/user_agent_handler.ex +++ b/lib/httparrot/user_agent_handler.ex @@ -2,14 +2,7 @@ defmodule HTTParrot.UserAgentHandler do @moduledoc """ Returns user-agent. """ - - def init(_transport, _req, _opts) do - {:upgrade, :protocol, :cowboy_rest} - end - - def allowed_methods(req, state) do - {["GET"], req, state} - end + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) def content_types_provided(req, state) do {[{{"application", "json", []}, :get_json}], req, state} @@ -24,6 +17,4 @@ defmodule HTTParrot.UserAgentHandler do [{"user-agent", user_agent}] |> JSEX.encode! end - - def terminate(_, _, _), do: :ok end