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 07:55:56 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.EnsureAuthenticatedPlug do
|
2021-02-11 12:02:50 +00:00
|
|
|
@moduledoc """
|
|
|
|
Ensures _user_ authentication (app-bound user-unbound tokens are not accepted).
|
|
|
|
"""
|
|
|
|
|
2018-09-05 15:59:19 +00:00
|
|
|
import Plug.Conn
|
2019-07-10 09:25:58 +00:00
|
|
|
import Pleroma.Web.TranslationHelpers
|
2020-04-21 13:29:19 +00:00
|
|
|
|
2018-09-05 15:59:19 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
use Pleroma.Web, :plug
|
|
|
|
|
2018-09-05 15:59:19 +00:00
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
@impl true
|
2020-05-07 08:14:54 +00:00
|
|
|
def perform(
|
|
|
|
%{
|
|
|
|
assigns: %{
|
|
|
|
auth_credentials: %{password: _},
|
|
|
|
user: %User{multi_factor_authentication_settings: %{enabled: true}}
|
|
|
|
}
|
|
|
|
} = conn,
|
|
|
|
_
|
|
|
|
) do
|
|
|
|
conn
|
|
|
|
|> render_error(:forbidden, "Two-factor authentication enabled, you must use a access token.")
|
|
|
|
|> halt()
|
|
|
|
end
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
def perform(%{assigns: %{user: %User{}}} = conn, _) do
|
2018-09-05 15:59:19 +00:00
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2020-04-30 15:19:51 +00:00
|
|
|
def perform(conn, _) do
|
2018-09-05 15:59:19 +00:00
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> render_error(:forbidden, "Invalid credentials.")
|
2020-03-09 17:51:44 +00:00
|
|
|
|> halt()
|
2018-09-05 15:59:19 +00:00
|
|
|
end
|
|
|
|
end
|