2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-24 08:16:09 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.AuthenticationPlug do
|
2020-10-31 10:38:35 +00:00
|
|
|
@moduledoc "Password authentication plug."
|
|
|
|
|
|
|
|
alias Pleroma.Helpers.AuthHelper
|
2017-05-16 13:31:11 +00:00
|
|
|
alias Pleroma.User
|
2022-12-30 02:46:58 +00:00
|
|
|
alias Pleroma.Password
|
2020-04-17 18:21:10 +00:00
|
|
|
|
|
|
|
import Plug.Conn
|
|
|
|
|
2019-07-14 16:48:42 +00:00
|
|
|
require Logger
|
2017-03-20 16:45:47 +00:00
|
|
|
|
2019-07-18 20:29:51 +00:00
|
|
|
def init(options), do: options
|
2017-03-20 16:45:47 +00:00
|
|
|
|
2020-10-31 10:38:35 +00:00
|
|
|
def call(%{assigns: %{user: %User{}}} = conn, _), do: conn
|
|
|
|
|
|
|
|
def call(
|
|
|
|
%{
|
|
|
|
assigns: %{
|
|
|
|
auth_user: %{password_hash: password_hash} = auth_user,
|
|
|
|
auth_credentials: %{password: password}
|
|
|
|
}
|
|
|
|
} = conn,
|
|
|
|
_
|
|
|
|
) do
|
2022-12-30 02:46:58 +00:00
|
|
|
if Password.checkpw(password, password_hash) do
|
|
|
|
{:ok, auth_user} = Password.maybe_update_password(auth_user, password)
|
2020-10-31 10:38:35 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> assign(:user, auth_user)
|
|
|
|
|> AuthHelper.skip_oauth()
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _), do: conn
|
|
|
|
|
2022-12-30 02:46:58 +00:00
|
|
|
@spec checkpw(String.t(), String.t()) :: boolean
|
|
|
|
defdelegate checkpw(password, hash), to: Password
|
2017-03-20 16:45:47 +00:00
|
|
|
end
|