mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
Add '/deny'
This commit is contained in:
parent
419b5223c9
commit
fa1cccdbf1
2 changed files with 38 additions and 1 deletions
|
@ -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)
|
||||
|
|
36
lib/httparrot/deny_handler.ex
Normal file
36
lib/httparrot/deny_handler.ex
Normal 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
|
Loading…
Add table
Reference in a new issue