pleroma/lib/pleroma/activity.ex

52 lines
1.6 KiB
Elixir
Raw Normal View History

2017-03-21 09:21:52 +01:00
defmodule Pleroma.Activity do
use Ecto.Schema
alias Pleroma.{Repo, Activity, Notification}
import Ecto.Query
2017-03-21 09:21:52 +01:00
schema "activities" do
field :data, :map
field :local, :boolean, default: true
2017-11-09 10:41:19 +01:00
field :actor, :string
field :recipients, {:array, :string}
has_many :notifications, Notification, on_delete: :delete_all
2017-03-21 09:21:52 +01:00
timestamps()
end
def get_by_ap_id(ap_id) do
Repo.one(from activity in Activity,
2017-06-20 16:02:17 +02:00
where: fragment("(?)->>'id' = ?", activity.data, ^to_string(ap_id)))
end
2017-10-23 18:30:09 +02:00
# TODO:
# Go through these and fix them everywhere.
# Wrong name, only returns create activities
2017-08-01 17:05:07 +02:00
def all_by_object_ap_id_q(ap_id) do
from activity in Activity,
2017-10-23 18:30:09 +02:00
where: fragment("coalesce((?)->'object'->>'id', (?)->>'object') = ?", activity.data, activity.data, ^to_string(ap_id)),
where: fragment("(?)->>'type' = 'Create'", activity.data)
2017-08-01 17:05:07 +02:00
end
2017-10-23 18:30:09 +02:00
# Wrong name, returns all.
def all_non_create_by_object_ap_id_q(ap_id) do
from activity in Activity,
2017-10-23 18:30:09 +02:00
where: fragment("coalesce((?)->'object'->>'id', (?)->>'object') = ?", activity.data, activity.data, ^to_string(ap_id))
end
2017-10-23 18:30:09 +02:00
# Wrong name plz fix thx
def all_by_object_ap_id(ap_id) do
2017-08-01 17:05:07 +02:00
Repo.all(all_by_object_ap_id_q(ap_id))
end
2018-03-27 18:18:24 +02:00
def create_activity_by_object_id_query(ap_ids) do
from activity in Activity,
where: fragment("coalesce((?)->'object'->>'id', (?)->>'object') = ANY(?)", activity.data, activity.data, ^ap_ids),
where: fragment("(?)->>'type' = 'Create'", activity.data)
end
def get_create_activity_by_object_ap_id(ap_id) do
2018-03-27 18:18:24 +02:00
create_activity_by_object_id_query([ap_id])
|> Repo.one
end
2017-03-21 09:21:52 +01:00
end