Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21841516
ensure_public_or_authenticated_plug.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
746 B
Referenced Files
None
Subscribers
None
ensure_public_or_authenticated_plug.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug
do
import
Pleroma.Web.TranslationHelpers
import
Plug.Conn
alias
Pleroma.Config
alias
Pleroma.User
use
Pleroma.Web
,
:plug
def
init
(
options
)
do
options
end
@impl
true
def
perform
(
conn
,
_
)
do
public?
=
Config
.
get!
([
:instance
,
:public
])
case
{
public?
,
conn
}
do
{
true
,
_
}
->
conn
{
false
,
%{
assigns
:
%{
user
:
%
User
{}}}}
->
conn
{
false
,
_
}
->
conn
|>
render_error
(
:forbidden
,
"This resource requires authentication."
)
|>
halt
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sat, Dec 27, 11:50 PM (1 d, 22 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
799311
Default Alt Text
ensure_public_or_authenticated_plug.ex (746 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment