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

Add /robots.txt route

This commit is contained in:
Eduardo Gurgel 2014-01-26 12:09:49 -03:00
parent 4f37f29482
commit 38e4fecb72
2 changed files with 27 additions and 0 deletions

View file

@ -24,6 +24,7 @@ defmodule HTTParrot do
{'/delay/:n', HTTParrot.DelayedHandler, []},
{'/html', :cowboy_static, {:priv_file, :httparrot, "html.html"}},
{'/deny', HTTParrot.DenyHandler, []},
{'/robots.txt', HTTParrot.RobotsHandler, []},
{'/base64/:value', HTTParrot.Base64Handler, []} ] }
])
{:ok, http_port} = :application.get_env(:httparrot, :http_port)

View file

@ -0,0 +1,26 @@
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
{["GET", "HEAD", "OPTIONS"], req, state}
end
def content_types_provided(req, state) do
{[{{"text", "plain", []}, :get_text}], req, state}
end
@robots """
User-agent: *
Disallow: /deny
"""
def get_text(req, state), do: {@robots, req, state}
def terminate(_, _, _), do: :ok
end