Page MenuHomePhorge

ensure_public_or_authenticated_plug.ex
No OneTemporary

Size
907 B
Referenced Files
None
Subscribers
None

ensure_public_or_authenticated_plug.ex

# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Plugs.EnsurePublicOrAuthenticatedPlug do
@moduledoc """
Ensures instance publicity or _user_ authentication
(app-bound user-unbound tokens are accepted only if the instance is public).
"""
import Pleroma.Web.TranslationHelpers
import Plug.Conn
alias Pleroma.Config
alias Pleroma.User
use Pleroma.Web, :plug
def init(options) do
options
end
@impl true
def perform(conn, _) do
public? = Config.get!([:instance, :public])
case {public?, conn} do
{true, _} ->
conn
{false, %{assigns: %{user: %User{}}}} ->
conn
{false, _} ->
conn
|> render_error(:forbidden, "This resource requires authentication.")
|> halt
end
end
end

File Metadata

Mime Type
text/x-ruby
Expires
Thu, Jun 4, 7:16 PM (14 h, 5 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1537006
Default Alt Text
ensure_public_or_authenticated_plug.ex (907 B)

Event Timeline