2019-05-14 02:21:44 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-05-14 02:21:44 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug do
|
2019-07-10 11:25:58 +02:00
|
|
|
import Pleroma.Web.TranslationHelpers
|
2019-05-14 02:21:44 +02:00
|
|
|
import Plug.Conn
|
2020-04-21 15:29:19 +02:00
|
|
|
|
2019-05-14 02:21:44 +02:00
|
|
|
alias Pleroma.Config
|
|
|
|
alias Pleroma.User
|
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
use Pleroma.Web, :plug
|
|
|
|
|
2019-05-14 02:21:44 +02:00
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
@impl true
|
|
|
|
def perform(conn, _) do
|
2019-05-14 02:21:44 +02:00
|
|
|
public? = Config.get!([:instance, :public])
|
|
|
|
|
|
|
|
case {public?, conn} do
|
|
|
|
{true, _} ->
|
|
|
|
conn
|
|
|
|
|
|
|
|
{false, %{assigns: %{user: %User{}}}} ->
|
|
|
|
conn
|
|
|
|
|
|
|
|
{false, _} ->
|
|
|
|
conn
|
2019-07-10 11:25:58 +02:00
|
|
|
|> render_error(:forbidden, "This resource requires authentication.")
|
2019-05-14 02:21:44 +02:00
|
|
|
|> halt
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|