social.metadata.moe/lib/pleroma/object.ex

56 lines
1.2 KiB
Elixir
Raw Normal View History

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