2020-06-06 13:33:02 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-09 07:20:55 +00:00
|
|
|
defmodule Pleroma.MigrationHelper.NotificationBackfill do
|
2020-06-06 13:51:08 +00:00
|
|
|
alias Pleroma.Object
|
2020-06-06 13:33:02 +00:00
|
|
|
alias Pleroma.Repo
|
2020-06-06 13:51:08 +00:00
|
|
|
alias Pleroma.User
|
2020-06-06 13:33:02 +00:00
|
|
|
|
|
|
|
import Ecto.Query
|
|
|
|
|
|
|
|
def fill_in_notification_types do
|
|
|
|
query =
|
|
|
|
from(n in Pleroma.Notification,
|
|
|
|
where: is_nil(n.type),
|
|
|
|
preload: :activity
|
|
|
|
)
|
|
|
|
|
|
|
|
query
|
2020-06-16 20:45:59 +00:00
|
|
|
|> Repo.chunk_stream(100)
|
2020-06-06 13:33:02 +00:00
|
|
|
|> Enum.each(fn notification ->
|
|
|
|
type =
|
|
|
|
notification.activity
|
|
|
|
|> type_from_activity()
|
|
|
|
|
|
|
|
notification
|
2020-07-03 09:25:12 +00:00
|
|
|
|> Ecto.Changeset.change(%{type: type})
|
2020-06-06 13:33:02 +00:00
|
|
|
|> Repo.update()
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2020-07-03 09:25:12 +00:00
|
|
|
defp get_by_ap_id(ap_id) do
|
|
|
|
q =
|
|
|
|
from(u in User,
|
|
|
|
select: u.id
|
|
|
|
)
|
|
|
|
|
|
|
|
Repo.get_by(q, ap_id: ap_id)
|
|
|
|
end
|
|
|
|
|
2020-06-06 13:33:02 +00:00
|
|
|
# This is copied over from Notifications to keep this stable.
|
|
|
|
defp type_from_activity(%{data: %{"type" => type}} = activity) do
|
|
|
|
case type do
|
|
|
|
"Follow" ->
|
|
|
|
accepted_function = fn activity ->
|
2020-07-03 09:25:12 +00:00
|
|
|
with %User{} = follower <- get_by_ap_id(activity.data["actor"]),
|
|
|
|
%User{} = followed <- get_by_ap_id(activity.data["object"]) do
|
2020-06-06 13:33:02 +00:00
|
|
|
Pleroma.FollowingRelationship.following?(follower, followed)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if accepted_function.(activity) do
|
|
|
|
"follow"
|
|
|
|
else
|
|
|
|
"follow_request"
|
|
|
|
end
|
|
|
|
|
|
|
|
"Announce" ->
|
|
|
|
"reblog"
|
|
|
|
|
|
|
|
"Like" ->
|
|
|
|
"favourite"
|
|
|
|
|
|
|
|
"Move" ->
|
|
|
|
"move"
|
|
|
|
|
|
|
|
"EmojiReact" ->
|
|
|
|
"pleroma:emoji_reaction"
|
|
|
|
|
|
|
|
# Compatibility with old reactions
|
|
|
|
"EmojiReaction" ->
|
|
|
|
"pleroma:emoji_reaction"
|
|
|
|
|
|
|
|
"Create" ->
|
|
|
|
activity
|
|
|
|
|> type_from_activity_object()
|
|
|
|
|
|
|
|
t ->
|
|
|
|
raise "No notification type for activity type #{t}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp type_from_activity_object(%{data: %{"type" => "Create", "object" => %{}}}), do: "mention"
|
|
|
|
|
|
|
|
defp type_from_activity_object(%{data: %{"type" => "Create"}} = activity) do
|
|
|
|
object = Object.get_by_ap_id(activity.data["object"])
|
|
|
|
|
|
|
|
case object && object.data["type"] do
|
|
|
|
"ChatMessage" -> "pleroma:chat_mention"
|
|
|
|
_ -> "mention"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|