2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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
|
|
|
|
2018-12-29 09:48:54 +00:00
|
|
|
@type t :: %__MODULE__{}
|
|
|
|
|
2018-12-10 14:50:10 +00:00
|
|
|
# https://github.com/tootsuite/mastodon/blob/master/app/models/notification.rb#L19
|
|
|
|
@mastodon_notification_types %{
|
|
|
|
"Create" => "mention",
|
|
|
|
"Follow" => "follow",
|
|
|
|
"Announce" => "reblog",
|
|
|
|
"Like" => "favourite"
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2018-06-03 17:11:22 +00:00
|
|
|
def get_create_activity_by_object_ap_id(ap_id) when is_binary(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
|
2018-06-03 17:11:22 +00:00
|
|
|
|
|
|
|
def get_create_activity_by_object_ap_id(_), do: nil
|
2018-06-18 20:54:59 +00:00
|
|
|
|
|
|
|
def normalize(obj) when is_map(obj), do: Activity.get_by_ap_id(obj["id"])
|
|
|
|
def normalize(ap_id) when is_binary(ap_id), do: Activity.get_by_ap_id(ap_id)
|
|
|
|
def normalize(_), do: nil
|
2018-10-25 02:47:55 +00:00
|
|
|
|
|
|
|
def get_in_reply_to_activity(%Activity{data: %{"object" => %{"inReplyTo" => ap_id}}}) do
|
|
|
|
get_create_activity_by_object_ap_id(ap_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_in_reply_to_activity(_), do: nil
|
2018-12-10 14:50:10 +00:00
|
|
|
|
|
|
|
for {ap_type, type} <- @mastodon_notification_types do
|
|
|
|
def mastodon_notification_type(%Activity{data: %{"type" => unquote(ap_type)}}),
|
|
|
|
do: unquote(type)
|
|
|
|
end
|
|
|
|
|
|
|
|
def mastodon_notification_type(%Activity{}), do: nil
|
2017-03-21 08:21:52 +00:00
|
|
|
end
|