pleroma/lib/pleroma/web/plugs/user_fetcher_plug.ex

28 lines
712 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2020-03-03 23:44:49 +01:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-24 08:00:44 +02:00
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
2018-09-05 17:44:38 +02:00
import Plug.Conn
def init(options) do
options
end
2018-12-09 10:12:48 +01:00
def call(conn, _options) do
2018-09-05 17:44:38 +02:00
with %{auth_credentials: %{username: username}} <- conn.assigns,
%User{} = user <- User.get_by_nickname_or_email(username) do
assign(conn, :auth_user, user)
2018-09-05 17:44:38 +02:00
else
_ -> conn
end
end
end