1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.MastodonAPI.NotificationView do
9 alias Pleroma.Notification
11 alias Pleroma.UserRelationship
12 alias Pleroma.Web.AdminAPI.Report
13 alias Pleroma.Web.AdminAPI.ReportView
14 alias Pleroma.Web.CommonAPI
15 alias Pleroma.Web.MediaProxy
16 alias Pleroma.Web.MastodonAPI.AccountView
17 alias Pleroma.Web.MastodonAPI.NotificationView
18 alias Pleroma.Web.MastodonAPI.StatusView
20 defp object_id_for(%{data: %{"object" => %{"id" => id}}}) when is_binary(id), do: id
22 defp object_id_for(%{data: %{"object" => id}}) when is_binary(id), do: id
24 @parent_types ~w{Like Announce EmojiReact Update}
26 def render("index.json", %{notifications: notifications, for: reading_user} = opts) do
27 activities = Enum.map(notifications, & &1.activity)
32 %{data: %{"type" => type}} ->
35 |> Enum.map(&object_id_for/1)
36 |> Activity.create_by_object_ap_id()
37 |> Activity.with_preloaded_object(:left)
42 Map.has_key?(opts, :relationships) ->
45 is_nil(reading_user) ->
46 UserRelationship.view_relationships_option(nil, [])
49 move_activities_targets =
51 |> Enum.filter(&(&1.data["type"] == "Move"))
52 |> Enum.map(&User.get_cached_by_ap_id(&1.data["target"]))
57 |> Enum.map(fn a -> User.get_cached_by_ap_id(a.data["actor"]) end)
59 |> Kernel.++(move_activities_targets)
61 UserRelationship.view_relationships_option(reading_user, actors, subset: :source_mutes)
66 |> Map.put(:parent_activities, parent_activities)
67 |> Map.put(:relationships, relationships_opt)
69 safe_render_many(notifications, NotificationView, "show.json", opts)
75 notification: %Notification{activity: activity} = notification,
79 actor = User.get_cached_by_ap_id(activity.data["actor"])
81 parent_activity_fn = fn ->
82 if opts[:parent_activities] do
83 Activity.Queries.find_by_object_ap_id(opts[:parent_activities], object_id_for(activity))
85 Activity.get_create_by_object_ap_id(object_id_for(activity))
89 # Note: :relationships contain user mutes (needed for :muted flag in :status)
90 status_render_opts = %{relationships: opts[:relationships]}
91 account = AccountView.render("show.json", %{user: actor, for: reading_user})
94 id: to_string(notification.id),
95 type: notification.type,
96 created_at: CommonAPI.Utils.to_masto_date(notification.inserted_at),
99 is_muted: User.mutes?(reading_user, actor),
100 is_seen: notification.seen
104 case notification.type do
106 put_status(response, activity, reading_user, status_render_opts)
109 put_status(response, parent_activity_fn.(), reading_user, status_render_opts)
112 put_status(response, parent_activity_fn.(), reading_user, status_render_opts)
115 put_status(response, parent_activity_fn.(), reading_user, status_render_opts)
118 put_target(response, activity, reading_user, %{})
121 put_status(response, activity, reading_user, status_render_opts)
123 "pleroma:emoji_reaction" ->
125 |> put_status(parent_activity_fn.(), reading_user, status_render_opts)
126 |> put_emoji(activity)
129 put_report(response, activity)
131 type when type in ["follow", "follow_request"] ->
136 defp put_report(response, activity) do
137 report_render = ReportView.render("show.json", Report.extract_report_info(activity))
139 Map.put(response, :report, report_render)
142 defp put_emoji(response, activity) do
144 |> Map.put(:emoji, activity.data["content"])
145 |> Map.put(:emoji_url, MediaProxy.url(Pleroma.Emoji.emoji_url(activity.data)))
148 defp put_status(response, activity, reading_user, opts) do
149 status_render_opts = Map.merge(opts, %{activity: activity, for: reading_user})
150 status_render = StatusView.render("show.json", status_render_opts)
152 Map.put(response, :status, status_render)
155 defp put_target(response, activity, reading_user, opts) do
156 target_user = User.get_cached_by_ap_id(activity.data["target"])
157 target_render_opts = Map.merge(opts, %{user: target_user, for: reading_user})
158 target_render = AccountView.render("show.json", target_render_opts)
160 Map.put(response, :target, target_render)