2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-09-05 16:37:02 +00:00
|
|
|
defmodule Pleroma.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
|