From fa1cccdbf1338179dc811cde7524e731ea93346b Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Fri, 17 Jan 2014 09:27:06 -0300 Subject: [PATCH] Add '/deny' --- lib/httparrot.ex | 3 ++- lib/httparrot/deny_handler.ex | 36 +++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 lib/httparrot/deny_handler.ex diff --git a/lib/httparrot.ex b/lib/httparrot.ex index 03782c8..819384c 100644 --- a/lib/httparrot.ex +++ b/lib/httparrot.ex @@ -21,7 +21,8 @@ defmodule HTTParrot do {'/hidden-basic-auth/:user/:passwd', HTTParrot.HiddenBasicAuthHandler, []}, {'/stream/:n', HTTParrot.StreamHandler, []}, {'/delay/:n', HTTParrot.DelayedHandler, []}, - {'/html', :cowboy_static, {:priv_file, :httparrot, "html.html"}} ] } + {'/html', :cowboy_static, {:priv_file, :httparrot, "html.html"}}, + {'/deny', HTTParrot.DenyHandler, []} ] } ]) {:ok, http_port} = :application.get_env(:httparrot, :http_port) {:ok, https_port} = :application.get_env(:httparrot, :https_port) diff --git a/lib/httparrot/deny_handler.ex b/lib/httparrot/deny_handler.ex new file mode 100644 index 0000000..d8bc664 --- /dev/null +++ b/lib/httparrot/deny_handler.ex @@ -0,0 +1,36 @@ +defmodule HTTParrot.DenyHandler do + @moduledoc """ + Returns GET data. + """ + alias HTTParrot.GeneralRequestInfo + + def init(_transport, _req, _opts) do + {:upgrade, :protocol, :cowboy_rest} + end + + def allowed_methods(req, state) do + {["GET", "HEAD", "OPTIONS"], req, state} + end + + def content_types_provided(req, state) do + {[{{"text", "plain", []}, :get_plain}], req, state} + end + + @body """ + .-''''''-. + .' _ _ '. + / O O \\ + : : + | | + : __ : + \ .-"` `"-. / + '. .' + '-......-' + YOU SHOUDN'T BE HERE + """ + def get_plain(req, state) do + {@body, req, state} + end + + def terminate(_, _, _), do: :ok +end