mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
Add '/hidden-basic-auth/:user/:passwd'
This commit is contained in:
parent
869a8bd752
commit
3dba102498
3 changed files with 82 additions and 0 deletions
|
@ -17,6 +17,7 @@ defmodule HTTParrot do
|
|||
{'/cookies/set', HTTParrot.SetCookiesHandler, []},
|
||||
{'/cookies/delete', HTTParrot.DeleteCookiesHandler, []},
|
||||
{'/basic-auth/:user/:passwd', HTTParrot.BasicAuthHandler, []},
|
||||
{'/hidden-basic-auth/:user/:passwd', HTTParrot.HiddenBasicAuthHandler, []},
|
||||
{'/html', :cowboy_static, {:priv_file, :httparrot, "html.html"}} ] }
|
||||
])
|
||||
{:ok, port} = :application.get_env(:httparrot, :port)
|
||||
|
|
36
lib/httparrot/hidden_basic_auth_handler.ex
Normal file
36
lib/httparrot/hidden_basic_auth_handler.ex
Normal file
|
@ -0,0 +1,36 @@
|
|||
defmodule HTTParrot.HiddenBasicAuthHandler do
|
||||
def init(_transport, _req, _opts) do
|
||||
{:upgrade, :protocol, :cowboy_rest}
|
||||
end
|
||||
|
||||
def allowed_methods(req, state) do
|
||||
{["GET"], req, state}
|
||||
end
|
||||
|
||||
@doc """
|
||||
This method should be `is_authorized`, but this handler will return 404 if the auth fails
|
||||
"""
|
||||
def resource_exists(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, 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
|
||||
|
||||
def terminate(_, _, _), do: :ok
|
||||
end
|
45
test/hidden_basic_auth_handler_test.exs
Normal file
45
test/hidden_basic_auth_handler_test.exs
Normal file
|
@ -0,0 +1,45 @@
|
|||
defmodule HTTParrot.HiddenBasicAuthHandlerTest do
|
||||
use ExUnit.Case
|
||||
import :meck
|
||||
import HTTParrot.HiddenBasicAuthHandler
|
||||
|
||||
setup do
|
||||
new :cowboy_req
|
||||
new JSEX
|
||||
end
|
||||
|
||||
teardown do
|
||||
unload :cowboy_req
|
||||
unload JSEX
|
||||
end
|
||||
|
||||
test "resource_exists returns true if user and passwd match" do
|
||||
expect(:cowboy_req, :binding, [{[:user, :req1], {:user, :req2}},
|
||||
{[:passwd, :req2], {:passwd, :req3}}])
|
||||
expect(:cowboy_req, :parse_header, [{["authorization", :req3], {:ok, {"basic", {:user, :passwd}}, :req4}}])
|
||||
|
||||
assert resource_exists(:req1, :state) == {true, :req4, :user}
|
||||
|
||||
assert validate :cowboy_req
|
||||
assert validate JSEX
|
||||
end
|
||||
|
||||
test "resource_exists returns false if user and passwd doesnt match" do
|
||||
expect(:cowboy_req, :binding, [{[:user, :req1], {:user, :req2}},
|
||||
{[:passwd, :req2], {:passwd, :req3}}])
|
||||
expect(:cowboy_req, :parse_header, [{["authorization", :req3], {:ok, {"basic", {:not_the_user, :passwd}}, :req4}}])
|
||||
|
||||
assert resource_exists(:req1, :state) == {false, :req4, :state}
|
||||
|
||||
assert validate :cowboy_req
|
||||
assert validate JSEX
|
||||
end
|
||||
|
||||
test "returns user and if it's authenticated" do
|
||||
expect(JSEX, :encode!, [{[[authenticated: true, user: :user]], :json}])
|
||||
|
||||
assert get_json(:req1, :user) == {:json, :req1, nil}
|
||||
|
||||
assert validate JSEX
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue