summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/preload/providers/user.ex
blob: b3d2e9b8dd25efa6f2d90e3fef4a6a7ec8c8a085 (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
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.Preload.Providers.User do
  alias Pleroma.User
  alias Pleroma.Web.MastodonAPI.AccountView
  alias Pleroma.Web.Preload.Providers.Provider

  @behaviour Provider
  @account_url_base "/api/v1/accounts"

  @impl Provider
  def generate_terms(%{user: user}) do
    build_accounts_tag(%{}, user)
  end

  def generate_terms(_params), do: %{}

  def build_accounts_tag(acc, %User{} = user) do
    account_data = AccountView.render("show.json", %{user: user, for: user})
    Map.put(acc, "#{@account_url_base}/#{user.id}", account_data)
  end

  def build_accounts_tag(acc, _), do: acc
end