2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-12 23:49:20 -07:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-24 01:55:56 -06:00
|
|
|
defmodule Pleroma.Web.Plugs.EnsureAuthenticatedPlug do
|
2021-02-11 05:02:50 -07:00
|
|
|
@moduledoc """
|
|
|
|
Ensures _user_ authentication (app-bound user-unbound tokens are not accepted).
|
|
|
|
"""
|
|
|
|
|
2018-09-05 09:59:19 -06:00
|
|
|
import Plug.Conn
|
2019-07-10 03:25:58 -06:00
|
|
|
import Pleroma.Web.TranslationHelpers
|
2020-04-21 07:29:19 -06:00
|
|
|
|
2018-09-05 09:59:19 -06:00
|
|
|
alias Pleroma.User
|
|
|
|
|
2020-04-21 07:29:19 -06:00
|
|
|
use Pleroma.Web, :plug
|
|
|
|
|
2018-09-05 09:59:19 -06:00
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2020-04-21 07:29:19 -06:00
|
|
|
@impl true
|
2020-05-07 02:14:54 -06: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 07:29:19 -06:00
|
|
|
def perform(%{assigns: %{user: %User{}}} = conn, _) do
|
2018-09-05 09:59:19 -06:00
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2020-04-30 09:19:51 -06:00
|
|
|
def perform(conn, _) do
|
2018-09-05 09:59:19 -06:00
|
|
|
conn
|
2019-07-10 03:25:58 -06:00
|
|
|
|> render_error(:forbidden, "Invalid credentials.")
|
2020-03-09 11:51:44 -06:00
|
|
|
|> halt()
|
2018-09-05 09:59:19 -06:00
|
|
|
end
|
|
|
|
end
|