2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-05 15:59:19 +00:00
|
|
|
defmodule Pleroma.Plugs.EnsureAuthenticatedPlug do
|
|
|
|
import Plug.Conn
|
2019-07-10 09:25:58 +00:00
|
|
|
import Pleroma.Web.TranslationHelpers
|
2018-09-05 15:59:19 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(%{assigns: %{user: %User{}}} = conn, _) do
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
def call(conn, options) do
|
|
|
|
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 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
|