forked from AkkomaGang/akkoma
Static FE plug should only respond to text/html requests.
This commit is contained in:
parent
dc3b87d153
commit
e8bee35578
1 changed files with 7 additions and 2 deletions
|
@ -5,9 +5,14 @@
|
||||||
defmodule Pleroma.Plugs.StaticFEPlug do
|
defmodule Pleroma.Plugs.StaticFEPlug do
|
||||||
def init(options), do: options
|
def init(options), do: options
|
||||||
|
|
||||||
|
def accepts_html?({"accept", a}), do: String.contains?(a, "text/html")
|
||||||
|
def accepts_html?({_, _}), do: false
|
||||||
|
|
||||||
def call(conn, _) do
|
def call(conn, _) do
|
||||||
case Pleroma.Config.get([:instance, :static_fe], false) do
|
with true <- Pleroma.Config.get([:instance, :static_fe], false),
|
||||||
true -> Pleroma.Web.StaticFE.StaticFEController.call(conn, :show)
|
{_, _} <- Enum.find(conn.req_headers, &accepts_html?/1) do
|
||||||
|
Pleroma.Web.StaticFE.StaticFEController.call(conn, :show)
|
||||||
|
else
|
||||||
_ -> conn
|
_ -> conn
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue