summaryrefslogtreecommitdiff
path: root/lib/pleroma/plugs/session_authentication_plug.ex
blob: 0f83a5e532d4947e7f66f051a5680dba1b87a2d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

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