1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Add '/deny'

This commit is contained in:
Eduardo Gurgel 2014-01-17 09:27:06 -03:00
parent 419b5223c9
commit fa1cccdbf1
2 changed files with 38 additions and 1 deletions

View file

@ -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)

View file

@ -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