2019-03-14 18:39:58 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-03-14 18:39:58 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.NotificationView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Notification
|
|
|
|
alias Pleroma.User
|
2020-03-25 17:33:34 +00:00
|
|
|
alias Pleroma.UserRelationship
|
2019-03-14 18:39:58 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
|
|
|
alias Pleroma.Web.MastodonAPI.NotificationView
|
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
|
|
|
|
2020-03-25 17:33:34 +00:00
|
|
|
def render("index.json", %{notifications: notifications, for: reading_user} = opts) do
|
2020-03-24 19:14:26 +00:00
|
|
|
activities = Enum.map(notifications, & &1.activity)
|
|
|
|
|
|
|
|
parent_activities =
|
|
|
|
activities
|
|
|
|
|> Enum.filter(
|
|
|
|
&(Activity.mastodon_notification_type(&1) in [
|
|
|
|
"favourite",
|
|
|
|
"reblog",
|
|
|
|
"pleroma:emoji_reaction"
|
|
|
|
])
|
|
|
|
)
|
|
|
|
|> Enum.map(& &1.data["object"])
|
|
|
|
|> Activity.create_by_object_ap_id()
|
|
|
|
|> Activity.with_preloaded_object(:left)
|
|
|
|
|> Pleroma.Repo.all()
|
|
|
|
|
2020-03-25 17:33:34 +00:00
|
|
|
relationships_opt =
|
2020-03-26 18:54:01 +00:00
|
|
|
cond do
|
|
|
|
Map.has_key?(opts, :relationships) ->
|
|
|
|
opts[:relationships]
|
|
|
|
|
2020-04-02 16:23:30 +00:00
|
|
|
is_nil(reading_user) ->
|
2020-03-26 18:54:01 +00:00
|
|
|
UserRelationship.view_relationships_option(nil, [])
|
|
|
|
|
|
|
|
true ->
|
|
|
|
move_activities_targets =
|
|
|
|
activities
|
|
|
|
|> Enum.filter(&(Activity.mastodon_notification_type(&1) == "move"))
|
|
|
|
|> Enum.map(&User.get_cached_by_ap_id(&1.data["target"]))
|
2020-03-25 17:33:34 +00:00
|
|
|
|
2020-03-26 18:54:01 +00:00
|
|
|
actors =
|
|
|
|
activities
|
|
|
|
|> Enum.map(fn a -> User.get_cached_by_ap_id(a.data["actor"]) end)
|
|
|
|
|> Enum.filter(& &1)
|
|
|
|
|> Kernel.++(move_activities_targets)
|
2020-03-25 17:33:34 +00:00
|
|
|
|
2020-05-09 15:05:44 +00:00
|
|
|
UserRelationship.view_relationships_option(reading_user, actors, source_mutes_only: true)
|
2020-03-25 17:33:34 +00:00
|
|
|
end
|
2020-03-24 19:14:26 +00:00
|
|
|
|
2020-04-01 16:49:09 +00:00
|
|
|
opts =
|
|
|
|
opts
|
|
|
|
|> Map.put(:parent_activities, parent_activities)
|
|
|
|
|> Map.put(:relationships, relationships_opt)
|
2020-03-24 19:14:26 +00:00
|
|
|
|
|
|
|
safe_render_many(notifications, NotificationView, "show.json", opts)
|
2019-03-14 18:39:58 +00:00
|
|
|
end
|
|
|
|
|
2020-03-24 19:14:26 +00:00
|
|
|
def render(
|
|
|
|
"show.json",
|
|
|
|
%{
|
|
|
|
notification: %Notification{activity: activity} = notification,
|
|
|
|
for: reading_user
|
|
|
|
} = opts
|
|
|
|
) do
|
2019-03-14 18:39:58 +00:00
|
|
|
actor = User.get_cached_by_ap_id(activity.data["actor"])
|
2020-03-24 19:14:26 +00:00
|
|
|
|
|
|
|
parent_activity_fn = fn ->
|
|
|
|
if opts[:parent_activities] do
|
|
|
|
Activity.Queries.find_by_object_ap_id(opts[:parent_activities], activity.data["object"])
|
|
|
|
else
|
|
|
|
Activity.get_create_by_object_ap_id(activity.data["object"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-14 18:39:58 +00:00
|
|
|
mastodon_type = Activity.mastodon_notification_type(activity)
|
|
|
|
|
2020-05-09 15:05:44 +00:00
|
|
|
# Note: :relationships contain user mutes (needed for :muted flag in :status)
|
|
|
|
status_render_opts = %{relationships: opts[:relationships]}
|
|
|
|
|
|
|
|
account_render_opts = %{skip_relationships: true}
|
2020-04-01 16:49:09 +00:00
|
|
|
|
2020-03-24 19:14:26 +00:00
|
|
|
with %{id: _} = account <-
|
2020-04-01 16:49:09 +00:00
|
|
|
AccountView.render(
|
|
|
|
"show.json",
|
2020-05-09 15:05:44 +00:00
|
|
|
Map.merge(account_render_opts, %{user: actor, for: reading_user})
|
2020-04-01 16:49:09 +00:00
|
|
|
) do
|
2019-10-04 04:47:36 +00:00
|
|
|
response = %{
|
|
|
|
id: to_string(notification.id),
|
|
|
|
type: mastodon_type,
|
|
|
|
created_at: CommonAPI.Utils.to_masto_date(notification.inserted_at),
|
|
|
|
account: account,
|
|
|
|
pleroma: %{
|
|
|
|
is_seen: notification.seen
|
|
|
|
}
|
2019-03-14 18:39:58 +00:00
|
|
|
}
|
|
|
|
|
2019-10-04 04:47:36 +00:00
|
|
|
case mastodon_type do
|
2020-01-22 19:06:12 +00:00
|
|
|
"mention" ->
|
2020-05-09 15:05:44 +00:00
|
|
|
put_status(response, activity, reading_user, status_render_opts)
|
2020-01-22 19:06:12 +00:00
|
|
|
|
|
|
|
"favourite" ->
|
2020-05-09 15:05:44 +00:00
|
|
|
put_status(response, parent_activity_fn.(), reading_user, status_render_opts)
|
2020-01-22 19:06:12 +00:00
|
|
|
|
|
|
|
"reblog" ->
|
2020-05-09 15:05:44 +00:00
|
|
|
put_status(response, parent_activity_fn.(), reading_user, status_render_opts)
|
2020-01-22 19:06:12 +00:00
|
|
|
|
|
|
|
"move" ->
|
2020-05-09 15:05:44 +00:00
|
|
|
put_target(response, activity, reading_user, account_render_opts)
|
2020-01-22 19:06:12 +00:00
|
|
|
|
|
|
|
"pleroma:emoji_reaction" ->
|
2020-03-24 19:14:26 +00:00
|
|
|
response
|
2020-05-09 15:05:44 +00:00
|
|
|
|> put_status(parent_activity_fn.(), reading_user, status_render_opts)
|
2020-03-24 19:14:26 +00:00
|
|
|
|> put_emoji(activity)
|
2020-01-22 19:06:12 +00:00
|
|
|
|
2020-04-09 12:13:37 +00:00
|
|
|
type when type in ["follow", "follow_request"] ->
|
|
|
|
response
|
|
|
|
|
2020-01-22 19:06:12 +00:00
|
|
|
_ ->
|
|
|
|
nil
|
2019-10-04 04:47:36 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
_ -> nil
|
2019-03-14 18:39:58 +00:00
|
|
|
end
|
|
|
|
end
|
2019-11-26 11:48:56 +00:00
|
|
|
|
2020-01-22 19:06:12 +00:00
|
|
|
defp put_emoji(response, activity) do
|
2020-03-24 19:14:26 +00:00
|
|
|
Map.put(response, :emoji, activity.data["content"])
|
2020-01-22 19:06:12 +00:00
|
|
|
end
|
|
|
|
|
2020-03-24 19:14:26 +00:00
|
|
|
defp put_status(response, activity, reading_user, opts) do
|
|
|
|
status_render_opts = Map.merge(opts, %{activity: activity, for: reading_user})
|
|
|
|
status_render = StatusView.render("show.json", status_render_opts)
|
|
|
|
|
|
|
|
Map.put(response, :status, status_render)
|
2019-11-26 11:48:56 +00:00
|
|
|
end
|
|
|
|
|
2020-03-24 19:14:26 +00:00
|
|
|
defp put_target(response, activity, reading_user, opts) do
|
|
|
|
target_user = User.get_cached_by_ap_id(activity.data["target"])
|
|
|
|
target_render_opts = Map.merge(opts, %{user: target_user, for: reading_user})
|
|
|
|
target_render = AccountView.render("show.json", target_render_opts)
|
|
|
|
|
|
|
|
Map.put(response, :target, target_render)
|
2019-11-26 11:48:56 +00:00
|
|
|
end
|
2019-03-14 18:39:58 +00:00
|
|
|
end
|