2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 15:44:49 -07:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-05 09:59:19 -06:00
|
|
|
defmodule Pleroma.Plugs.EnsureAuthenticatedPlug do
|
|
|
|
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
|
|
|
|
def perform(%{assigns: %{user: %User{}}} = conn, _) do
|
2018-09-05 09:59:19 -06:00
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2020-04-21 07:29:19 -06:00
|
|
|
def perform(conn, options) do
|
2020-03-09 11:51:44 -06:00
|
|
|
perform =
|
|
|
|
cond do
|
|
|
|
options[:if_func] -> options[:if_func].()
|
|
|
|
options[:unless_func] -> !options[:unless_func].()
|
|
|
|
true -> true
|
|
|
|
end
|
|
|
|
|
|
|
|
if perform do
|
|
|
|
fail(conn)
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def fail(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
|