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
|
2019-02-09 15:16:26 +00:00
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Notification
|
2019-03-22 23:34:47 +00:00
|
|
|
alias Pleroma.Object
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Repo
|
2019-02-09 15:16:26 +00:00
|
|
|
|
2019-04-17 09:22:32 +00:00
|
|
|
import Ecto.Changeset
|
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__{}
|
2019-01-09 15:08:24 +00:00
|
|
|
@primary_key {:id, Pleroma.FlakeId, autogenerate: true}
|
2018-12-29 09:48:54 +00:00
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2019-03-18 01:32:23 +00:00
|
|
|
@mastodon_to_ap_notification_types for {k, v} <- @mastodon_notification_types,
|
|
|
|
into: %{},
|
|
|
|
do: {v, k}
|
|
|
|
|
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)
|
2019-03-30 09:58:40 +00:00
|
|
|
field(:recipients, {:array, :string}, default: [])
|
2018-03-30 13:01:53 +00:00
|
|
|
has_many(:notifications, Notification, on_delete: :delete_all)
|
2017-03-21 08:21:52 +00:00
|
|
|
|
2019-03-22 23:34:47 +00:00
|
|
|
# Attention: this is a fake relation, don't try to preload it blindly and expect it to work!
|
|
|
|
# The foreign key is embedded in a jsonb field.
|
|
|
|
#
|
|
|
|
# To use it, you probably want to do an inner join and a preload:
|
|
|
|
#
|
|
|
|
# ```
|
|
|
|
# |> join(:inner, [activity], o in Object,
|
2019-03-25 03:32:19 +00:00
|
|
|
# on: fragment("(?->>'id') = COALESCE((?)->'object'->> 'id', (?)->>'object')",
|
|
|
|
# o.data, activity.data, activity.data))
|
2019-03-22 23:34:47 +00:00
|
|
|
# |> preload([activity, object], [object: object])
|
|
|
|
# ```
|
2019-03-23 00:09:56 +00:00
|
|
|
#
|
|
|
|
# As a convenience, Activity.with_preloaded_object() sets up an inner join and preload for the
|
|
|
|
# typical case.
|
2019-03-22 23:34:47 +00:00
|
|
|
has_one(:object, Object, on_delete: :nothing, foreign_key: :id)
|
|
|
|
|
2017-03-21 08:21:52 +00:00
|
|
|
timestamps()
|
|
|
|
end
|
2017-04-13 13:49:42 +00:00
|
|
|
|
2019-03-23 00:09:56 +00:00
|
|
|
def with_preloaded_object(query) do
|
|
|
|
query
|
|
|
|
|> join(
|
|
|
|
:inner,
|
|
|
|
[activity],
|
|
|
|
o in Object,
|
2019-03-23 00:28:16 +00:00
|
|
|
on:
|
|
|
|
fragment(
|
2019-03-25 03:32:19 +00:00
|
|
|
"(?->>'id') = COALESCE(?->'object'->>'id', ?->>'object')",
|
2019-03-23 00:28:16 +00:00
|
|
|
o.data,
|
2019-03-25 03:32:19 +00:00
|
|
|
activity.data,
|
2019-03-23 00:28:16 +00:00
|
|
|
activity.data
|
|
|
|
)
|
2019-03-23 00:09:56 +00:00
|
|
|
)
|
|
|
|
|> preload([activity, object], object: object)
|
|
|
|
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
|
|
|
|
|
2018-11-29 06:52:54 +00:00
|
|
|
def change(struct, params \\ %{}) do
|
|
|
|
struct
|
|
|
|
|> cast(params, [:data])
|
|
|
|
|> validate_required([:data])
|
|
|
|
|> unique_constraint(:ap_id, name: :activities_unique_apid_index)
|
|
|
|
end
|
|
|
|
|
2019-03-23 02:49:10 +00:00
|
|
|
def get_by_ap_id_with_object(ap_id) do
|
|
|
|
Repo.one(
|
|
|
|
from(
|
|
|
|
activity in Activity,
|
|
|
|
where: fragment("(?)->>'id' = ?", activity.data, ^to_string(ap_id)),
|
2019-03-23 03:13:19 +00:00
|
|
|
left_join: o in Object,
|
2019-03-23 02:49:10 +00:00
|
|
|
on:
|
|
|
|
fragment(
|
2019-03-25 03:32:19 +00:00
|
|
|
"(?->>'id') = COALESCE(?->'object'->>'id', ?->>'object')",
|
2019-03-23 02:49:10 +00:00
|
|
|
o.data,
|
2019-03-25 03:32:19 +00:00
|
|
|
activity.data,
|
2019-03-23 02:49:10 +00:00
|
|
|
activity.data
|
|
|
|
),
|
|
|
|
preload: [object: o]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-01-22 07:54:11 +00:00
|
|
|
def get_by_id(id) do
|
2019-03-04 12:55:11 +00:00
|
|
|
Activity
|
|
|
|
|> where([a], a.id == ^id)
|
2019-04-11 10:22:42 +00:00
|
|
|
|> restrict_deactivated_users()
|
2019-03-04 12:55:11 +00:00
|
|
|
|> Repo.one()
|
2019-01-22 07:54:11 +00:00
|
|
|
end
|
|
|
|
|
2019-03-22 23:34:47 +00:00
|
|
|
def get_by_id_with_object(id) do
|
|
|
|
from(activity in Activity,
|
|
|
|
where: activity.id == ^id,
|
|
|
|
inner_join: o in Object,
|
|
|
|
on:
|
|
|
|
fragment(
|
2019-03-25 03:32:19 +00:00
|
|
|
"(?->>'id') = COALESCE(?->'object'->>'id', ?->>'object')",
|
2019-03-22 23:34:47 +00:00
|
|
|
o.data,
|
2019-03-25 03:32:19 +00:00
|
|
|
activity.data,
|
2019-03-22 23:34:47 +00:00
|
|
|
activity.data
|
|
|
|
),
|
|
|
|
preload: [object: o]
|
|
|
|
)
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
def by_object_ap_id(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)
|
2019-01-21 06:14:20 +00:00
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2017-08-01 15:05:07 +00:00
|
|
|
end
|
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
def create_by_object_ap_id(ap_ids) when is_list(ap_ids) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(
|
|
|
|
activity in Activity,
|
|
|
|
where:
|
|
|
|
fragment(
|
2019-01-21 06:14:20 +00:00
|
|
|
"coalesce((?)->'object'->>'id', (?)->>'object') = ANY(?)",
|
2018-03-30 13:01:53 +00:00
|
|
|
activity.data,
|
|
|
|
activity.data,
|
2019-01-21 06:14:20 +00:00
|
|
|
^ap_ids
|
|
|
|
),
|
|
|
|
where: fragment("(?)->>'type' = 'Create'", activity.data)
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2017-08-16 14:29:25 +00:00
|
|
|
end
|
|
|
|
|
2019-03-22 23:34:47 +00:00
|
|
|
def create_by_object_ap_id(ap_id) when is_binary(ap_id) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(
|
|
|
|
activity in Activity,
|
|
|
|
where:
|
|
|
|
fragment(
|
2019-01-21 06:14:20 +00:00
|
|
|
"coalesce((?)->'object'->>'id', (?)->>'object') = ?",
|
2018-03-30 13:01:53 +00:00
|
|
|
activity.data,
|
|
|
|
activity.data,
|
2019-01-21 06:14:20 +00:00
|
|
|
^to_string(ap_id)
|
2018-03-30 13:01:53 +00:00
|
|
|
),
|
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
|
|
|
|
|
2019-03-22 23:34:47 +00:00
|
|
|
def create_by_object_ap_id(_), do: nil
|
|
|
|
|
2019-01-21 05:46:47 +00:00
|
|
|
def get_all_create_by_object_ap_id(ap_id) do
|
|
|
|
Repo.all(create_by_object_ap_id(ap_id))
|
|
|
|
end
|
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
def get_create_by_object_ap_id(ap_id) when is_binary(ap_id) do
|
2019-01-21 06:07:54 +00:00
|
|
|
create_by_object_ap_id(ap_id)
|
2019-04-11 10:22:42 +00:00
|
|
|
|> restrict_deactivated_users()
|
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
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
def get_create_by_object_ap_id(_), do: nil
|
2018-06-18 20:54:59 +00:00
|
|
|
|
2019-03-22 23:34:47 +00:00
|
|
|
def create_by_object_ap_id_with_object(ap_id) when is_binary(ap_id) do
|
|
|
|
from(
|
|
|
|
activity in Activity,
|
|
|
|
where:
|
|
|
|
fragment(
|
|
|
|
"coalesce((?)->'object'->>'id', (?)->>'object') = ?",
|
|
|
|
activity.data,
|
|
|
|
activity.data,
|
|
|
|
^to_string(ap_id)
|
|
|
|
),
|
|
|
|
where: fragment("(?)->>'type' = 'Create'", activity.data),
|
|
|
|
inner_join: o in Object,
|
|
|
|
on:
|
|
|
|
fragment(
|
2019-03-25 03:32:19 +00:00
|
|
|
"(?->>'id') = COALESCE(?->'object'->>'id', ?->>'object')",
|
2019-03-22 23:34:47 +00:00
|
|
|
o.data,
|
2019-03-25 03:32:19 +00:00
|
|
|
activity.data,
|
2019-03-22 23:34:47 +00:00
|
|
|
activity.data
|
|
|
|
),
|
|
|
|
preload: [object: o]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_by_object_ap_id_with_object(_), do: nil
|
|
|
|
|
2019-04-18 18:40:40 +00:00
|
|
|
def get_create_by_object_ap_id_with_object(ap_id) when is_binary(ap_id) do
|
2019-03-22 23:34:47 +00:00
|
|
|
ap_id
|
|
|
|
|> create_by_object_ap_id_with_object()
|
|
|
|
|> Repo.one()
|
|
|
|
end
|
|
|
|
|
2019-04-18 18:40:40 +00:00
|
|
|
def get_create_by_object_ap_id_with_object(_), do: nil
|
2018-10-25 02:47:55 +00:00
|
|
|
|
2018-11-25 18:44:04 +00:00
|
|
|
defp get_in_reply_to_activity_from_object(%Object{data: %{"inReplyTo" => ap_id}}) do
|
2019-04-17 09:22:32 +00:00
|
|
|
get_create_by_object_ap_id_with_object(ap_id)
|
2018-10-25 02:47:55 +00:00
|
|
|
end
|
|
|
|
|
2018-11-25 18:44:04 +00:00
|
|
|
defp get_in_reply_to_activity_from_object(_), do: nil
|
|
|
|
|
|
|
|
def get_in_reply_to_activity(%Activity{data: %{"object" => object}}) do
|
|
|
|
get_in_reply_to_activity_from_object(Object.normalize(object))
|
|
|
|
end
|
2018-10-25 02:47:55 +00:00
|
|
|
|
2019-04-17 09:22:32 +00:00
|
|
|
def normalize(obj) when is_map(obj), do: get_by_ap_id_with_object(obj["id"])
|
|
|
|
def normalize(ap_id) when is_binary(ap_id), do: get_by_ap_id_with_object(ap_id)
|
|
|
|
def normalize(_), do: nil
|
2018-12-10 14:50:10 +00:00
|
|
|
|
2019-03-09 11:12:15 +00:00
|
|
|
def delete_by_ap_id(id) when is_binary(id) do
|
|
|
|
by_object_ap_id(id)
|
2019-03-20 12:59:27 +00:00
|
|
|
|> select([u], u)
|
|
|
|
|> Repo.delete_all()
|
2019-03-09 11:12:15 +00:00
|
|
|
|> elem(1)
|
|
|
|
|> Enum.find(fn
|
2019-04-17 13:35:01 +00:00
|
|
|
%{data: %{"type" => "Create", "object" => ap_id}} when is_binary(ap_id) -> ap_id == id
|
2019-03-09 11:12:15 +00:00
|
|
|
%{data: %{"type" => "Create", "object" => %{"id" => ap_id}}} -> ap_id == id
|
|
|
|
_ -> nil
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_by_ap_id(_), 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
|
2019-02-20 16:51:25 +00:00
|
|
|
|
2019-03-18 01:32:23 +00:00
|
|
|
def from_mastodon_notification_type(type) do
|
|
|
|
Map.get(@mastodon_to_ap_notification_types, type)
|
|
|
|
end
|
|
|
|
|
2019-02-20 16:51:25 +00:00
|
|
|
def all_by_actor_and_id(actor, status_ids \\ [])
|
|
|
|
def all_by_actor_and_id(_actor, []), do: []
|
|
|
|
|
|
|
|
def all_by_actor_and_id(actor, status_ids) do
|
|
|
|
Activity
|
|
|
|
|> where([s], s.id in ^status_ids)
|
|
|
|
|> where([s], s.actor == ^actor)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
2019-03-04 12:55:11 +00:00
|
|
|
|
2019-04-11 10:22:42 +00:00
|
|
|
def restrict_deactivated_users(query) do
|
2019-03-04 12:55:11 +00:00
|
|
|
from(activity in query,
|
|
|
|
where:
|
|
|
|
fragment(
|
2019-04-11 10:22:42 +00:00
|
|
|
"? not in (SELECT ap_id FROM users WHERE info->'deactivated' @> 'true')",
|
2019-03-04 12:55:11 +00:00
|
|
|
activity.actor
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
2017-03-21 08:21:52 +00:00
|
|
|
end
|