pleroma/lib/pleroma/object.ex

56 lines
1.2 KiB
Elixir
Raw Normal View History

2017-03-21 09:21:52 +01:00
defmodule Pleroma.Object do
use Ecto.Schema
alias Pleroma.{Repo, Object}
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-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
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)))
end
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
2017-05-01 16:12:20 +02:00
def get_cached_by_ap_id(ap_id) do
2018-03-30 15:01:53 +02:00
if Mix.env() == :test do
2017-05-01 16:12:20 +02:00
get_by_ap_id(ap_id)
else
key = "object:#{ap_id}"
2018-03-30 15:01:53 +02:00
Cachex.fetch!(:user_cache, key, fn _ ->
object = get_by_ap_id(ap_id)
if object do
{:commit, object}
else
{:ignore, object}
end
end)
2017-05-01 16:12:20 +02:00
end
end
def context_mapping(context) do
Object.change(%Object{}, %{data: %{"id" => context}})
end
2017-03-21 09:21:52 +01:00
end