2017-03-20 16:45:47 +00:00
|
|
|
defmodule Pleroma.Plugs.AuthenticationPlug do
|
2017-04-27 13:18:50 +00:00
|
|
|
alias Comeonin.Pbkdf2
|
2017-03-20 16:45:47 +00:00
|
|
|
import Plug.Conn
|
2017-05-16 13:31:11 +00:00
|
|
|
alias Pleroma.User
|
2017-03-20 16:45:47 +00:00
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
def call(%{assigns: %{user: %User{}}} = conn, _), do: conn
|
|
|
|
|
2018-09-05 16:53:38 +00:00
|
|
|
def call(
|
|
|
|
%{
|
|
|
|
assigns: %{
|
|
|
|
auth_user: %{password_hash: password_hash} = auth_user,
|
|
|
|
auth_credentials: %{password: password}
|
|
|
|
}
|
|
|
|
} = conn,
|
|
|
|
_
|
|
|
|
) do
|
|
|
|
if Pbkdf2.checkpw(password, password_hash) do
|
2017-03-30 13:29:49 +00:00
|
|
|
conn
|
2018-09-05 16:53:38 +00:00
|
|
|
|> assign(:user, auth_user)
|
2017-03-20 16:45:47 +00:00
|
|
|
else
|
2018-09-05 16:53:38 +00:00
|
|
|
conn
|
2017-03-20 16:45:47 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-05 16:53:38 +00:00
|
|
|
def call(
|
|
|
|
%{
|
|
|
|
assigns: %{
|
|
|
|
auth_credentials: %{password: password}
|
|
|
|
}
|
|
|
|
} = conn,
|
|
|
|
_
|
|
|
|
) do
|
2018-03-30 13:01:53 +00:00
|
|
|
Pbkdf2.dummy_checkpw()
|
2017-03-20 16:45:47 +00:00
|
|
|
conn
|
|
|
|
end
|
2018-09-05 17:06:28 +00:00
|
|
|
|
|
|
|
def call(conn, _), do: conn
|
2017-03-20 16:45:47 +00:00
|
|
|
end
|