1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Activity do
9 alias Pleroma.Activity.Queries
10 alias Pleroma.ActivityExpiration
11 alias Pleroma.Bookmark
12 alias Pleroma.Notification
15 alias Pleroma.ThreadMute
21 @type t :: %__MODULE__{}
22 @type actor :: String.t()
24 @primary_key {:id, Pleroma.FlakeId, autogenerate: true}
26 # https://github.com/tootsuite/mastodon/blob/master/app/models/notification.rb#L19
27 @mastodon_notification_types %{
28 "Create" => "mention",
30 "Announce" => "reblog",
34 @mastodon_to_ap_notification_types for {k, v} <- @mastodon_notification_types,
38 schema "activities" do
40 field(:local, :boolean, default: true)
41 field(:actor, :string)
42 field(:recipients, {:array, :string}, default: [])
43 field(:thread_muted?, :boolean, virtual: true)
44 # This is a fake relation, do not use outside of with_preloaded_bookmark/get_bookmark
45 has_one(:bookmark, Bookmark)
46 has_many(:notifications, Notification, on_delete: :delete_all)
48 # Attention: this is a fake relation, don't try to preload it blindly and expect it to work!
49 # The foreign key is embedded in a jsonb field.
51 # To use it, you probably want to do an inner join and a preload:
54 # |> join(:inner, [activity], o in Object,
55 # on: fragment("(?->>'id') = COALESCE((?)->'object'->> 'id', (?)->>'object')",
56 # o.data, activity.data, activity.data))
57 # |> preload([activity, object], [object: object])
60 # As a convenience, Activity.with_preloaded_object() sets up an inner join and preload for the
62 has_one(:object, Object, on_delete: :nothing, foreign_key: :id)
64 has_one(:expiration, ActivityExpiration, on_delete: :delete_all)
69 def with_joined_object(query, join_type \\ :inner) do
70 join(query, join_type, [activity], o in Object,
73 "(?->>'id') = COALESCE(?->'object'->>'id', ?->>'object')",
82 def with_preloaded_object(query, join_type \\ :inner) do
84 |> has_named_binding?(:object)
85 |> if(do: query, else: with_joined_object(query, join_type))
86 |> preload([activity, object: object], object: object)
89 def with_preloaded_bookmark(query, %User{} = user) do
91 left_join: b in Bookmark,
92 on: b.user_id == ^user.id and b.activity_id == a.id,
93 preload: [bookmark: b]
97 def with_preloaded_bookmark(query, _), do: query
99 def with_set_thread_muted_field(query, %User{} = user) do
101 left_join: tm in ThreadMute,
102 on: tm.user_id == ^user.id and tm.context == fragment("?->>'context'", a.data),
104 select: %Activity{a | thread_muted?: not is_nil(tm.id)}
108 def with_set_thread_muted_field(query, _), do: query
110 def get_by_ap_id(ap_id) do
112 |> Queries.by_ap_id()
116 def get_bookmark(%Activity{} = activity, %User{} = user) do
117 if Ecto.assoc_loaded?(activity.bookmark) do
120 Bookmark.get(user.id, activity.id)
124 def get_bookmark(_, _), do: nil
126 def change(struct, params \\ %{}) do
128 |> cast(params, [:data, :recipients])
129 |> validate_required([:data])
130 |> unique_constraint(:ap_id, name: :activities_unique_apid_index)
133 def get_by_ap_id_with_object(ap_id) do
135 |> Queries.by_ap_id()
136 |> with_preloaded_object(:left)
142 |> where([a], a.id == ^id)
143 |> restrict_deactivated_users()
147 def get_by_id_with_object(id) do
150 |> with_preloaded_object()
154 def all_by_ids_with_object(ids) do
156 |> where([a], a.id in ^ids)
157 |> with_preloaded_object()
162 Accepts `ap_id` or list of `ap_id`.
165 @spec create_by_object_ap_id(String.t() | [String.t()]) :: Ecto.Queryable.t()
166 def create_by_object_ap_id(ap_id) do
168 |> Queries.by_object_id()
169 |> Queries.by_type("Create")
172 def get_all_create_by_object_ap_id(ap_id) do
174 |> create_by_object_ap_id()
178 def get_create_by_object_ap_id(ap_id) when is_binary(ap_id) do
179 create_by_object_ap_id(ap_id)
180 |> restrict_deactivated_users()
184 def get_create_by_object_ap_id(_), do: nil
187 Accepts `ap_id` or list of `ap_id`.
190 @spec create_by_object_ap_id_with_object(String.t() | [String.t()]) :: Ecto.Queryable.t()
191 def create_by_object_ap_id_with_object(ap_id) do
193 |> create_by_object_ap_id()
194 |> with_preloaded_object()
197 def get_create_by_object_ap_id_with_object(ap_id) when is_binary(ap_id) do
199 |> create_by_object_ap_id_with_object()
203 def get_create_by_object_ap_id_with_object(_), do: nil
205 defp get_in_reply_to_activity_from_object(%Object{data: %{"inReplyTo" => ap_id}}) do
206 get_create_by_object_ap_id_with_object(ap_id)
209 defp get_in_reply_to_activity_from_object(_), do: nil
211 def get_in_reply_to_activity(%Activity{} = activity) do
212 get_in_reply_to_activity_from_object(Object.normalize(activity))
215 def normalize(obj) when is_map(obj), do: get_by_ap_id_with_object(obj["id"])
216 def normalize(ap_id) when is_binary(ap_id), do: get_by_ap_id_with_object(ap_id)
217 def normalize(_), do: nil
219 def delete_by_ap_id(id) when is_binary(id) do
221 |> Queries.by_object_id()
226 %{data: %{"type" => "Create", "object" => ap_id}} when is_binary(ap_id) -> ap_id == id
227 %{data: %{"type" => "Create", "object" => %{"id" => ap_id}}} -> ap_id == id
230 |> purge_web_resp_cache()
233 def delete_by_ap_id(_), do: nil
235 defp purge_web_resp_cache(%Activity{} = activity) do
236 %{path: path} = URI.parse(activity.data["id"])
237 Cachex.del(:web_resp_cache, path)
241 defp purge_web_resp_cache(nil), do: nil
243 for {ap_type, type} <- @mastodon_notification_types do
244 def mastodon_notification_type(%Activity{data: %{"type" => unquote(ap_type)}}),
248 def mastodon_notification_type(%Activity{}), do: nil
250 def from_mastodon_notification_type(type) do
251 Map.get(@mastodon_to_ap_notification_types, type)
254 def all_by_actor_and_id(actor, status_ids \\ [])
255 def all_by_actor_and_id(_actor, []), do: []
257 def all_by_actor_and_id(actor, status_ids) do
259 |> where([s], s.id in ^status_ids)
260 |> where([s], s.actor == ^actor)
264 def follow_requests_for_actor(%Pleroma.User{ap_id: ap_id}) do
266 |> Queries.by_object_id()
267 |> Queries.by_type("Follow")
268 |> where([a], fragment("? ->> 'state' = 'pending'", a.data))
271 def restrict_deactivated_users(query) do
273 from(u in User.Query.build(deactivated: true), select: u.ap_id)
276 from(activity in query,
277 where: activity.actor not in ^deactivated_users
281 defdelegate search(user, query, options \\ []), to: Pleroma.Activity.Search