1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-10 04:02:28 -04:00
httparrot/lib/httparrot/basic_auth_handler.ex
2014-07-22 20:33:22 +12:00

28 lines
773 B
Elixir

defmodule HTTParrot.BasicAuthHandler do
@moduledoc """
Challenges HTTPBasic Auth
"""
use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS)
def is_authorized(req, state) do
{user, req} = :cowboy_req.binding(:user, req)
{passwd, req} = :cowboy_req.binding(:passwd, req)
{:ok, auth, req} = :cowboy_req.parse_header("authorization", req)
case auth do
{"basic", {^user, ^passwd}} -> {true, req, user}
_ -> {{false, "Basic realm=\"Fake Realm\""}, req, state}
end
end
def content_types_provided(req, state) do
{[{{"application", "json", []}, :get_json}], req, state}
end
def get_json(req, user) do
{response(user), req, nil}
end
defp response(user) do
[authenticated: true, user: user] |> JSEX.encode!
end
end