1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/lib/pleroma/plugs/authentication_plug.ex

40 lines
870 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-03-20 16:45:47 +00:00
defmodule Pleroma.Plugs.AuthenticationPlug do
alias Comeonin.Pbkdf2
2017-03-20 16:45:47 +00:00
import Plug.Conn
2017-05-16 14:31:11 +01:00
alias Pleroma.User
2017-03-20 16:45:47 +00:00
def init(options) do
options
end
2017-05-16 14:31:11 +01:00
def call(%{assigns: %{user: %User{}}} = conn, _), do: conn
2018-09-05 17:53:38 +01: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
conn
2018-09-05 17:53:38 +01:00
|> assign(:user, auth_user)
2017-03-20 16:45:47 +00:00
else
2018-09-05 17:53:38 +01:00
conn
2017-03-20 16:45:47 +00:00
end
end
2018-12-09 09:12:48 +00:00
def call(%{assigns: %{auth_credentials: %{password: _}}} = conn, _) do
2018-03-30 14:01:53 +01:00
Pbkdf2.dummy_checkpw()
2017-03-20 16:45:47 +00:00
conn
end
2018-09-05 18:06:28 +01:00
def call(conn, _), do: conn
2017-03-20 16:45:47 +00:00
end