Add LegacyAuthenticationPlug
This commit is contained in:
parent
3cf17dc402
commit
a3f54fca4d
2 changed files with 103 additions and 0 deletions
31
lib/pleroma/plugs/legacy_authentication_plug.ex
Normal file
31
lib/pleroma/plugs/legacy_authentication_plug.ex
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
defmodule Pleroma.Plugs.LegacyAuthenticationPlug do
|
||||
import Plug.Conn
|
||||
alias Pleroma.User
|
||||
|
||||
def init(options) do
|
||||
options
|
||||
end
|
||||
|
||||
def call(%{assigns: %{user: %User{}}} = conn, _), do: conn
|
||||
|
||||
def call(
|
||||
%{
|
||||
assigns: %{
|
||||
auth_user: %{password_hash: "$6$" <> _ = password_hash} = auth_user,
|
||||
auth_credentials: %{password: password}
|
||||
}
|
||||
} = conn,
|
||||
_
|
||||
) do
|
||||
if :crypt.crypt(password, password_hash) == password_hash do
|
||||
conn
|
||||
|> assign(:user, auth_user)
|
||||
else
|
||||
conn
|
||||
end
|
||||
end
|
||||
|
||||
def call(conn, _) do
|
||||
conn
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue