Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21907733
session_authentication_plug.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
521 B
Referenced Files
None
Subscribers
None
session_authentication_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.Web.Plugs.SessionAuthenticationPlug
do
import
Plug.Conn
def
init
(
options
)
do
options
end
def
call
(
conn
,
_
)
do
with
saved_user_id
<-
get_session
(
conn
,
:user_id
),
%{
auth_user
:
%{
id
:
^
saved_user_id
}}
<-
conn
.
assigns
do
conn
|>
assign
(
:user
,
conn
.
assigns
.
auth_user
)
else
_
->
conn
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Sun, Dec 28, 1:42 AM (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
816029
Default Alt Text
session_authentication_plug.ex (521 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment