mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 19:29:11 +00:00
23 lines
566 B
Elixir
23 lines
566 B
Elixir
|
defmodule Pleroma.Web.Authenticator do
|
||
|
alias Pleroma.User
|
||
|
alias Comeonin.Pbkdf2
|
||
|
|
||
|
@behaviour Pleroma.Web.AuthenticatorAdapter
|
||
|
|
||
|
def get_user(%Plug.Conn{} = conn) do
|
||
|
%{"authorization" => %{"name" => name, "password" => password}} = conn.params
|
||
|
|
||
|
with {_, %User{} = user} <- {:user, User.get_by_nickname_or_email(name)},
|
||
|
{_, true} <- {:checkpw, Pbkdf2.checkpw(password, user.password_hash)} do
|
||
|
{:ok, user}
|
||
|
else
|
||
|
error ->
|
||
|
{:error, error}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def handle_error(%Plug.Conn{} = _conn, error) do
|
||
|
error
|
||
|
end
|
||
|
end
|