pleroma/lib/pleroma/object.ex

58 lines
1.1 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
2018-05-23 09:04:16 +02:00
@testing Mix.env() == :test
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
2017-05-01 16:12:20 +02:00
def get_cached_by_ap_id(ap_id) do
2018-05-23 09:04:16 +02:00
if @testing 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.get!(
:user_cache,
key,
fallback: fn _ ->
object = get_by_ap_id(ap_id)
if object do
{:commit, object}
else
{:ignore, object}
end
end
2018-03-30 15:01:53 +02:00
)
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