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

defmodule Pleroma.Web.Plugs.SetUserSessionIdPlug do
  alias Pleroma.Helpers.AuthHelper
  alias Pleroma.Web.OAuth.Token

  def init(opts) do
    opts
  end

  def call(%{assigns: %{token: %Token{} = oauth_token}} = conn, _) do
    AuthHelper.put_session_token(conn, oauth_token.token)
  end

  def call(conn, _), do: conn
end