1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Activity do
7 alias Pleroma.{Repo, Activity, Notification}
10 @type t :: %__MODULE__{}
12 # https://github.com/tootsuite/mastodon/blob/master/app/models/notification.rb#L19
13 @mastodon_notification_types %{
14 "Create" => "mention",
16 "Announce" => "reblog",
20 schema "activities" do
22 field(:local, :boolean, default: true)
23 field(:actor, :string)
24 field(:recipients, {:array, :string})
25 has_many(:notifications, Notification, on_delete: :delete_all)
30 def get_by_ap_id(ap_id) do
34 where: fragment("(?)->>'id' = ?", activity.data, ^to_string(ap_id))
40 # Go through these and fix them everywhere.
41 # Wrong name, only returns create activities
42 def all_by_object_ap_id_q(ap_id) do
47 "coalesce((?)->'object'->>'id', (?)->>'object') = ?",
52 where: fragment("(?)->>'type' = 'Create'", activity.data)
56 # Wrong name, returns all.
57 def all_non_create_by_object_ap_id_q(ap_id) do
62 "coalesce((?)->'object'->>'id', (?)->>'object') = ?",
70 # Wrong name plz fix thx
71 def all_by_object_ap_id(ap_id) do
72 Repo.all(all_by_object_ap_id_q(ap_id))
75 def create_activity_by_object_id_query(ap_ids) do
80 "coalesce((?)->'object'->>'id', (?)->>'object') = ANY(?)",
85 where: fragment("(?)->>'type' = 'Create'", activity.data)
89 def get_create_activity_by_object_ap_id(ap_id) when is_binary(ap_id) do
90 create_activity_by_object_id_query([ap_id])
94 def get_create_activity_by_object_ap_id(_), do: nil
96 def normalize(obj) when is_map(obj), do: Activity.get_by_ap_id(obj["id"])
97 def normalize(ap_id) when is_binary(ap_id), do: Activity.get_by_ap_id(ap_id)
98 def normalize(_), do: nil
100 def get_in_reply_to_activity(%Activity{data: %{"object" => %{"inReplyTo" => ap_id}}}) do
101 get_create_activity_by_object_ap_id(ap_id)
104 def get_in_reply_to_activity(_), do: nil
106 for {ap_type, type} <- @mastodon_notification_types do
107 def mastodon_notification_type(%Activity{data: %{"type" => unquote(ap_type)}}),
111 def mastodon_notification_type(%Activity{}), do: nil