summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/pleroma_api/views/scrobble_view.ex
blob: dd2173b0b57c79a24f4cac08b836557b5b513faa (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.PleromaAPI.ScrobbleView do
  use Pleroma.Web, :view

  require Pleroma.Constants

  alias Pleroma.Activity
  alias Pleroma.HTML
  alias Pleroma.Web.CommonAPI
  alias Pleroma.Web.CommonAPI.Utils
  alias Pleroma.Web.MastodonAPI.AccountView

  def render(
        "show.json",
        %{
          activity: %Activity{
            id: id,
            data: %{
              "type" => "Listen",
              "actor" => actor,
              "published" => published,
              "object" => object
            }
          }
        } = opts
      ) do
    user = CommonAPI.get_user(actor)
    created_at = Utils.to_masto_date(published)

    %{
      id: id,
      account: AccountView.render("show.json", %{user: user, for: opts[:for]}),
      created_at: created_at,
      title: object["title"] |> HTML.strip_tags(),
      artist: object["artist"] |> HTML.strip_tags(),
      album: object["album"] |> HTML.strip_tags(),
      length: object["length"]
    }
  end

  def render("index.json", opts) do
    safe_render_many(opts.activities, __MODULE__, "show.json", opts)
  end
end