2019-11-02 02:47:18 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-11-02 02:47:18 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-24 06:06:10 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.StaticFEPlug do
|
2019-11-05 06:02:10 +00:00
|
|
|
import Plug.Conn
|
|
|
|
alias Pleroma.Web.StaticFE.StaticFEController
|
2019-11-02 02:47:18 +00:00
|
|
|
|
2019-11-05 06:02:10 +00:00
|
|
|
def init(options), do: options
|
2019-11-03 20:29:17 +00:00
|
|
|
|
2019-11-02 02:47:18 +00:00
|
|
|
def call(conn, _) do
|
2022-12-07 13:35:00 +00:00
|
|
|
if enabled?() and requires_html?(conn) and not_logged_in?(conn) do
|
2019-11-05 06:02:10 +00:00
|
|
|
conn
|
|
|
|
|> StaticFEController.call(:show)
|
|
|
|
|> halt()
|
2019-11-03 20:29:17 +00:00
|
|
|
else
|
2019-11-05 06:02:10 +00:00
|
|
|
conn
|
2019-11-02 02:47:18 +00:00
|
|
|
end
|
|
|
|
end
|
2019-11-05 06:02:10 +00:00
|
|
|
|
2019-11-08 03:31:28 +00:00
|
|
|
defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
|
2019-11-05 06:02:10 +00:00
|
|
|
|
2020-06-26 14:27:39 +00:00
|
|
|
defp requires_html?(conn) do
|
2020-07-06 10:11:10 +00:00
|
|
|
Phoenix.Controller.get_format(conn) == "html"
|
2019-11-05 06:02:10 +00:00
|
|
|
end
|
2022-12-07 13:35:00 +00:00
|
|
|
|
|
|
|
defp not_logged_in?(%{assigns: %{user: %Pleroma.User{}}}), do: false
|
|
|
|
defp not_logged_in?(_), do: true
|
2019-11-02 02:47:18 +00:00
|
|
|
end
|