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