X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fobject.ex;h=558e151b093bac8a48f972cf2c81e2e9fa3404a3;hb=2d775bf1be5ddf0a8c5553ef15dde55c2483c1d4;hp=168843bd97a34e601594cc413e5c7f9172b9493a;hpb=f169de34544a12c174c454da59781a694b8c2387;p=akkoma diff --git a/lib/pleroma/object.ex b/lib/pleroma/object.ex index 168843bd9..558e151b0 100644 --- a/lib/pleroma/object.ex +++ b/lib/pleroma/object.ex @@ -1,29 +1,55 @@ defmodule Pleroma.Object do use Ecto.Schema alias Pleroma.{Repo, Object} - import Ecto.Query + import Ecto.{Query, Changeset} schema "objects" do - field :data, :map + field(:data, :map) timestamps() end + def create(data) do + Object.change(%Object{}, %{data: data}) + |> Repo.insert() + end + + def change(struct, params \\ %{}) do + struct + |> cast(params, [:data]) + |> validate_required([:data]) + |> unique_constraint(:ap_id, name: :objects_unique_apid_index) + end + + def get_by_ap_id(nil), do: nil + def get_by_ap_id(ap_id) do - Repo.one(from object in Object, - where: fragment("? @> ?", object.data, ^%{id: ap_id})) + Repo.one(from(object in Object, where: fragment("(?)->>'id' = ?", object.data, ^ap_id))) end def get_cached_by_ap_id(ap_id) do - if Mix.env == :test do + if Mix.env() == :test do get_by_ap_id(ap_id) else key = "object:#{ap_id}" - Cachex.get!(:user_cache, key, fallback: fn(_) -> get_by_ap_id(ap_id) end) + + Cachex.get!( + :user_cache, + key, + fallback: fn _ -> + object = get_by_ap_id(ap_id) + + if object do + {:commit, object} + else + {:ignore, object} + end + end + ) end end def context_mapping(context) do - %Object{data: %{"id" => context}} + Object.change(%Object{}, %{data: %{"id" => context}}) end end