1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 14:49:15 +00:00
akkoma/lib/pleroma/plugs/user_fetcher_plug.ex

22 lines
534 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-09-05 17:44:38 +02:00
defmodule Pleroma.Plugs.UserFetcherPlug do
alias Pleroma.User
2018-09-05 17:44:38 +02:00
import Plug.Conn
def init(options) do
options
end
2018-12-09 12:12:48 +03: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