1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Plugs.UserFetcherPlug do
7 Assigns `:auth_user` basing on `:auth_credentials`.
9 NOTE: no checks are performed at this step, auth_credentials/username could be easily faked.
19 def call(conn, _options) do
20 with %{auth_credentials: %{username: username}} <- conn.assigns,
21 %User{} = user <- User.get_by_nickname_or_email(username) do
22 assign(conn, :auth_user, user)