1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00
httparrot/lib/httparrot/hidden_basic_auth_handler.ex
2019-06-28 09:34:36 +03:00

32 lines
821 B
Elixir

defmodule HTTParrot.HiddenBasicAuthHandler do
@moduledoc """
404'd BasicAuth
"""
use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS)
@doc """
This method should be `is_authorized`, but this handler will return 404 if the auth fails
"""
def resource_exists(req, state) do
user = :cowboy_req.binding(:user, req)
passwd = :cowboy_req.binding(:passwd, req)
auth = :cowboy_req.parse_header("authorization", req)
case auth do
{:basic, ^user, ^passwd} -> {true, req, user}
_ -> {false, 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] |> JSX.encode!()
end
end