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
|
|
|
|
field :data, :map
|
2017-05-02 08:43:35 +00:00
|
|
|
field :local, :boolean, default: true
|
2017-09-11 14:15:28 +00:00
|
|
|
has_many :notifications, Notification
|
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
|
|
|
|
Repo.one(from activity in Activity,
|
2017-06-20 14:02:17 +00:00
|
|
|
where: fragment("(?)->>'id' = ?", activity.data, ^to_string(ap_id)))
|
2017-04-13 13:49:42 +00:00
|
|
|
end
|
|
|
|
|
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
|
|
|
|
from activity in Activity,
|
|
|
|
where: fragment("(?)->'object'->>'id' = ?", activity.data, ^to_string(ap_id))
|
|
|
|
end
|
|
|
|
|
2017-08-16 14:29:25 +00:00
|
|
|
def all_non_create_by_object_ap_id_q(ap_id) do
|
|
|
|
from activity in Activity,
|
|
|
|
where: fragment("(?)->>'object' = ?", activity.data, ^to_string(ap_id))
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
|
|
|
def get_create_activity_by_object_ap_id(ap_id) do
|
|
|
|
Repo.one(from activity in Activity,
|
2017-06-20 14:18:42 +00:00
|
|
|
where: fragment("(?)->'object'->>'id' = ?", activity.data, ^to_string(ap_id))
|
|
|
|
and fragment("(?)->>'type' = 'Create'", activity.data))
|
2017-04-30 09:16:41 +00:00
|
|
|
end
|
2017-03-21 08:21:52 +00:00
|
|
|
end
|