pleroma/lib/pleroma/object.ex

56 lines
1.1 KiB
Elixir
Raw Normal View History

2017-03-21 03:21:52 -05:00
defmodule Pleroma.Object do
use Ecto.Schema
alias Pleroma.{Repo, Object}
2017-05-09 11:11:51 -05:00
import Ecto.{Query, Changeset}
2017-03-21 03:21:52 -05:00
schema "objects" do
2018-03-30 08:01:53 -05:00
field(:data, :map)
2017-03-21 03:21:52 -05:00
timestamps()
end
2017-05-16 08:31:11 -05:00
def create(data) do
Object.change(%Object{}, %{data: data})
2018-03-30 08:01:53 -05:00
|> Repo.insert()
2017-05-16 08:31:11 -05:00
end
2017-05-09 11:11:51 -05:00
def change(struct, params \\ %{}) do
2017-11-18 19:22:07 -06:00
struct
2017-05-09 11:11:51 -05:00
|> cast(params, [:data])
|> validate_required([:data])
|> unique_constraint(:ap_id, name: :objects_unique_apid_index)
end
2017-10-24 01:39:24 -05:00
def get_by_ap_id(nil), do: nil
2018-03-30 08:01:53 -05:00
def get_by_ap_id(ap_id) do
2018-03-30 08:01:53 -05:00
Repo.one(from(object in Object, where: fragment("(?)->>'id' = ?", object.data, ^ap_id)))
end
2017-05-01 09:12:20 -05:00
def get_cached_by_ap_id(ap_id) do
2018-03-30 08:01:53 -05:00
if Mix.env() == :test do
2017-05-01 09:12:20 -05:00
get_by_ap_id(ap_id)
else
key = "object:#{ap_id}"
2018-03-30 08:01:53 -05: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 08:01:53 -05:00
)
2017-05-01 09:12:20 -05:00
end
end
def context_mapping(context) do
Object.change(%Object{}, %{data: %{"id" => context}})
end
2017-03-21 03:21:52 -05:00
end