2019-03-14 18:39:58 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# 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
|
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
|
|
|
alias Pleroma.Web.MastodonAPI.NotificationView
|
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
|
|
|
|
|
|
|
def render("index.json", %{notifications: notifications, for: user}) do
|
2019-09-05 05:32:49 +00:00
|
|
|
safe_render_many(notifications, NotificationView, "show.json", %{for: user})
|
2019-03-14 18:39:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def render("show.json", %{
|
|
|
|
notification: %Notification{activity: activity} = notification,
|
|
|
|
for: user
|
|
|
|
}) do
|
|
|
|
actor = User.get_cached_by_ap_id(activity.data["actor"])
|
|
|
|
parent_activity = Activity.get_create_by_object_ap_id(activity.data["object"])
|
|
|
|
mastodon_type = Activity.mastodon_notification_type(activity)
|
|
|
|
|
2019-10-04 04:47:36 +00:00
|
|
|
with %{id: _} = account <- AccountView.render("show.json", %{user: actor, for: user}) do
|
|
|
|
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
|
2019-11-26 11:48:56 +00:00
|
|
|
"mention" -> put_status(response, activity, user)
|
|
|
|
"favourite" -> put_status(response, parent_activity, user)
|
|
|
|
"reblog" -> put_status(response, parent_activity, user)
|
|
|
|
"move" -> put_target(response, activity, user)
|
|
|
|
"follow" -> response
|
|
|
|
_ -> 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
|
|
|
|
|
|
|
defp put_status(response, activity, user) do
|
|
|
|
Map.put(response, :status, StatusView.render("show.json", %{activity: activity, for: user}))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp put_target(response, activity, user) do
|
|
|
|
target = User.get_cached_by_ap_id(activity.data["target"])
|
|
|
|
Map.put(response, :target, AccountView.render("show.json", %{user: target, for: user}))
|
|
|
|
end
|
2019-03-14 18:39:58 +00:00
|
|
|
end
|