2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-24 06:00:44 +00:00
|
|
|
defmodule Pleroma.Web.Plugs.UserFetcherPlug do
|
2020-10-31 10:38:35 +00:00
|
|
|
@moduledoc """
|
|
|
|
Assigns `:auth_user` basing on `:auth_credentials`.
|
|
|
|
|
|
|
|
NOTE: no checks are performed at this step, auth_credentials/username could be easily faked.
|
|
|
|
"""
|
|
|
|
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2018-09-05 15:44:38 +00:00
|
|
|
import Plug.Conn
|
|
|
|
|
|
|
|
def init(options) do
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def call(conn, _options) do
|
2018-09-05 15:44:38 +00:00
|
|
|
with %{auth_credentials: %{username: username}} <- conn.assigns,
|
2019-04-02 10:47:02 +00:00
|
|
|
%User{} = user <- User.get_by_nickname_or_email(username) do
|
|
|
|
assign(conn, :auth_user, user)
|
2018-09-05 15:44:38 +00:00
|
|
|
else
|
|
|
|
_ -> conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|