2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-21 09:21:52 +01:00
|
|
|
defmodule Pleroma.Object do
|
|
|
|
use Ecto.Schema
|
2018-12-25 01:00:06 +01:00
|
|
|
alias Pleroma.{Repo, Object, User, Activity, ObjectTombstone}
|
2017-05-09 18:11:51 +02:00
|
|
|
import Ecto.{Query, Changeset}
|
2017-03-21 09:21:52 +01:00
|
|
|
|
|
|
|
schema "objects" do
|
2018-03-30 15:01:53 +02:00
|
|
|
field(:data, :map)
|
2017-03-21 09:21:52 +01:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
2017-03-30 18:07:01 +02:00
|
|
|
|
2017-05-16 15:31:11 +02:00
|
|
|
def create(data) do
|
|
|
|
Object.change(%Object{}, %{data: data})
|
2018-03-30 15:01:53 +02:00
|
|
|
|> Repo.insert()
|
2017-05-16 15:31:11 +02:00
|
|
|
end
|
|
|
|
|
2017-05-09 18:11:51 +02:00
|
|
|
def change(struct, params \\ %{}) do
|
2017-11-19 02:22:07 +01:00
|
|
|
struct
|
2017-05-09 18:11:51 +02:00
|
|
|
|> cast(params, [:data])
|
|
|
|
|> validate_required([:data])
|
|
|
|
|> unique_constraint(:ap_id, name: :objects_unique_apid_index)
|
|
|
|
end
|
|
|
|
|
2017-10-24 08:39:24 +02:00
|
|
|
def get_by_ap_id(nil), do: nil
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2017-03-30 18:07:01 +02:00
|
|
|
def get_by_ap_id(ap_id) do
|
2018-03-30 15:01:53 +02:00
|
|
|
Repo.one(from(object in Object, where: fragment("(?)->>'id' = ?", object.data, ^ap_id)))
|
2017-03-30 18:07:01 +02:00
|
|
|
end
|
2017-04-30 13:53:26 +02:00
|
|
|
|
2018-06-18 07:23:54 +02:00
|
|
|
def normalize(obj) when is_map(obj), do: Object.get_by_ap_id(obj["id"])
|
|
|
|
def normalize(ap_id) when is_binary(ap_id), do: Object.get_by_ap_id(ap_id)
|
|
|
|
def normalize(_), do: nil
|
|
|
|
|
2018-12-06 08:26:17 +01:00
|
|
|
# Owned objects can only be mutated by their owner
|
|
|
|
def authorize_mutation(%Object{data: %{"actor" => actor}}, %User{ap_id: ap_id}),
|
|
|
|
do: actor == ap_id
|
|
|
|
|
|
|
|
# Legacy objects can be mutated by anybody
|
|
|
|
def authorize_mutation(%Object{}, %User{}), do: true
|
|
|
|
|
2018-11-16 21:35:08 +01:00
|
|
|
if Mix.env() == :test do
|
|
|
|
def get_cached_by_ap_id(ap_id) do
|
2017-05-01 16:12:20 +02:00
|
|
|
get_by_ap_id(ap_id)
|
2018-11-16 21:35:08 +01:00
|
|
|
end
|
|
|
|
else
|
|
|
|
def get_cached_by_ap_id(ap_id) do
|
2017-05-01 16:12:20 +02:00
|
|
|
key = "object:#{ap_id}"
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2018-11-01 09:30:10 +01:00
|
|
|
Cachex.fetch!(:object_cache, key, fn _ ->
|
2018-05-20 18:05:34 +02:00
|
|
|
object = get_by_ap_id(ap_id)
|
|
|
|
|
|
|
|
if object do
|
|
|
|
{:commit, object}
|
|
|
|
else
|
|
|
|
{:ignore, object}
|
2017-05-01 16:28:40 +02:00
|
|
|
end
|
2018-05-20 18:05:34 +02:00
|
|
|
end)
|
2017-05-01 16:12:20 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-30 13:53:26 +02:00
|
|
|
def context_mapping(context) do
|
2017-06-20 09:50:22 +02:00
|
|
|
Object.change(%Object{}, %{data: %{"id" => context}})
|
2017-04-30 13:53:26 +02:00
|
|
|
end
|
2018-11-01 08:28:48 +01:00
|
|
|
|
2018-12-25 01:00:06 +01:00
|
|
|
def make_tombstone(%Object{data: %{"id" => id, "type" => type}}, deleted \\ DateTime.utc_now()) do
|
|
|
|
%ObjectTombstone{
|
|
|
|
id: id,
|
|
|
|
formerType: type,
|
2018-12-24 00:25:36 +01:00
|
|
|
deleted: deleted
|
|
|
|
}
|
2018-12-25 01:00:06 +01:00
|
|
|
|> Map.from_struct()
|
2018-12-24 00:25:36 +01:00
|
|
|
end
|
|
|
|
|
2018-12-25 01:00:06 +01:00
|
|
|
def swap_object_with_tombstone(object) do
|
|
|
|
tombstone = make_tombstone(object)
|
2018-12-24 00:25:36 +01:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Object.change(%{data: tombstone})
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
2018-11-01 08:28:48 +01:00
|
|
|
def delete(%Object{data: %{"id" => id}} = object) do
|
2018-12-25 01:00:06 +01:00
|
|
|
with {:ok, _obj} = swap_object_with_tombstone(object),
|
2019-01-21 06:15:05 +01:00
|
|
|
Repo.delete_all(Activity.by_object_ap_id(id)),
|
2018-11-01 09:30:10 +01:00
|
|
|
{:ok, true} <- Cachex.del(:object_cache, "object:#{id}") do
|
2018-11-01 08:47:50 +01:00
|
|
|
{:ok, object}
|
2018-11-01 08:28:48 +01:00
|
|
|
end
|
|
|
|
end
|
2017-03-21 09:21:52 +01:00
|
|
|
end
|