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.Object do
10 alias Pleroma.ObjectTombstone
26 Object.change(%Object{}, %{data: data})
30 def change(struct, params \\ %{}) do
32 |> cast(params, [:data])
33 |> validate_required([:data])
34 |> unique_constraint(:ap_id, name: :objects_unique_apid_index)
37 def get_by_ap_id(nil), do: nil
39 def get_by_ap_id(ap_id) do
40 Repo.one(from(object in Object, where: fragment("(?)->>'id' = ?", object.data, ^ap_id)))
43 # If we pass an Activity to Object.normalize(), we can try to use the preloaded object.
44 # Use this whenever possible, especially when walking graphs in an O(N) loop!
45 def normalize(%Activity{object: %Object{} = object}), do: object
47 # A hack for fake activities
48 def normalize(%Activity{data: %{"object" => %{"fake" => true} = data}}) do
49 %Object{id: "pleroma:fake_object_id", data: data}
52 # Catch and log Object.normalize() calls where the Activity's child object is not
54 def normalize(%Activity{data: %{"object" => %{"id" => ap_id}}}) do
56 "Object.normalize() called without preloaded object (#{ap_id}). Consider preloading the object!"
59 Logger.debug("Backtrace: #{inspect(Process.info(:erlang.self(), :current_stacktrace))}")
64 def normalize(%Activity{data: %{"object" => ap_id}}) do
66 "Object.normalize() called without preloaded object (#{ap_id}). Consider preloading the object!"
69 Logger.debug("Backtrace: #{inspect(Process.info(:erlang.self(), :current_stacktrace))}")
74 # Old way, try fetching the object through cache.
75 def normalize(%{"id" => ap_id}), do: normalize(ap_id)
76 def normalize(ap_id) when is_binary(ap_id), do: get_cached_by_ap_id(ap_id)
77 def normalize(_), do: nil
79 # Owned objects can only be mutated by their owner
80 def authorize_mutation(%Object{data: %{"actor" => actor}}, %User{ap_id: ap_id}),
83 # Legacy objects can be mutated by anybody
84 def authorize_mutation(%Object{}, %User{}), do: true
86 def get_cached_by_ap_id(ap_id) do
87 key = "object:#{ap_id}"
89 Cachex.fetch!(:object_cache, key, fn _ ->
90 object = get_by_ap_id(ap_id)
100 def context_mapping(context) do
101 Object.change(%Object{}, %{data: %{"id" => context}})
104 def make_tombstone(%Object{data: %{"id" => id, "type" => type}}, deleted \\ DateTime.utc_now()) do
113 def swap_object_with_tombstone(object) do
114 tombstone = make_tombstone(object)
117 |> Object.change(%{data: tombstone})
121 def delete(%Object{data: %{"id" => id}} = object) do
122 with {:ok, _obj} = swap_object_with_tombstone(object),
123 deleted_activity = Activity.delete_by_ap_id(id),
124 {:ok, true} <- Cachex.del(:object_cache, "object:#{id}") do
125 {:ok, object, deleted_activity}
129 def set_cache(%Object{data: %{"id" => ap_id}} = object) do
130 Cachex.put(:object_cache, "object:#{ap_id}", object)
134 def update_and_set_cache(changeset) do
135 with {:ok, object} <- Repo.update(changeset) do
142 def increase_replies_count(ap_id) do
144 |> where([o], fragment("?->>'id' = ?::text", o.data, ^to_string(ap_id)))
150 jsonb_set(?, '{repliesCount}',
151 (coalesce((?->>'repliesCount')::int, 0) + 1)::varchar::jsonb, true)
158 |> Repo.update_all([])
160 {1, [object]} -> set_cache(object)
161 _ -> {:error, "Not found"}
165 def decrease_replies_count(ap_id) do
167 |> where([o], fragment("?->>'id' = ?::text", o.data, ^to_string(ap_id)))
173 jsonb_set(?, '{repliesCount}',
174 (greatest(0, (?->>'repliesCount')::int - 1))::varchar::jsonb, true)
181 |> Repo.update_all([])
183 {1, [object]} -> set_cache(object)
184 _ -> {:error, "Not found"}