pleroma/lib/pleroma/plugs/static_fe_plug.ex

27 lines
635 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2020-03-03 23:44:49 +01:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Plugs.StaticFEPlug do
import Plug.Conn
alias Pleroma.Web.StaticFE.StaticFEController
def init(options), do: options
def call(conn, _) do
2020-06-26 16:27:39 +02:00
if enabled?() and requires_html?(conn) do
conn
|> StaticFEController.call(:show)
|> halt()
else
conn
end
end
defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
2020-06-26 16:27:39 +02:00
defp requires_html?(conn) do
Phoenix.Controller.get_format(conn) == "html"
end
end