1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Plugs.StaticFEPlug do
7 alias Pleroma.Web.StaticFE.StaticFEController
9 def init(options), do: options
12 if enabled?() and accepts_html?(conn) do
14 |> StaticFEController.call(:show)
21 defp enabled?, do: Pleroma.Config.get([:instance, :static_fe], false)
23 defp accepts_html?(conn) do
24 conn |> get_req_header("accept") |> List.first() |> String.contains?("text/html")