Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33103350
static_fe_plug.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
639 B
Referenced Files
None
Subscribers
None
static_fe_plug.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Web.Plugs.StaticFEPlug
do
import
Plug.Conn
alias
Pleroma.Web.StaticFE.StaticFEController
def
init
(
options
),
do
:
options
def
call
(
conn
,
_
)
do
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
)
defp
requires_html?
(
conn
)
do
Phoenix.Controller
.
get_format
(
conn
)
==
"html"
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Tue, Jan 20, 1:42 PM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
930827
Default Alt Text
static_fe_plug.ex (639 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment