9ba9dc5ffbba66a235472d93a596c7dc01980b16
[akkoma] / lib / pleroma / web / plugs / static_fe_plug.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.Plugs.StaticFEPlug do
6 import Plug.Conn
7 alias Pleroma.Web.StaticFE.StaticFEController
8
9 def init(options), do: options
10
11 def call(conn, _) do
12 if enabled?() and requires_html?(conn) do
13 conn
14 |> StaticFEController.call(:show)
15 |> halt()
16 else
17 conn
18 end
19 end
20
21 defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
22
23 defp requires_html?(conn) do
24 Phoenix.Controller.get_format(conn) == "html"
25 end
26 end