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