summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/plugs/user_fetcher_plug.ex
blob: 707df9bfd842727b87d4dcd02c7df60e57a229f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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.UserFetcherPlug do
  @moduledoc """
  Assigns `:auth_user` basing on `:auth_credentials`.

  NOTE: no checks are performed at this step, auth_credentials/username could be easily faked.
  """

  alias Pleroma.User
  import Plug.Conn

  def init(options) do
    options
  end

  def call(conn, _options) do
    with %{auth_credentials: %{username: username}} <- conn.assigns,
         %User{} = user <- User.get_by_nickname_or_email(username) do
      assign(conn, :auth_user, user)
    else
      _ -> conn
    end
  end
end