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.Web.ActivityPub.ActivityPub do
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-06-03 13:04:39 +00:00
|
|
|
alias Pleroma.Config
|
2019-04-10 14:33:45 +00:00
|
|
|
alias Pleroma.Conversation
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Notification
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Object
|
2018-12-01 22:53:10 +00:00
|
|
|
alias Pleroma.Object.Fetcher
|
2019-03-25 22:13:58 +00:00
|
|
|
alias Pleroma.Pagination
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Repo
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Upload
|
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.ActivityPub.MRF
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
|
|
|
alias Pleroma.Web.WebFinger
|
2019-02-06 19:20:02 +00:00
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
import Ecto.Query
|
2017-05-16 13:31:11 +00:00
|
|
|
import Pleroma.Web.ActivityPub.Utils
|
2019-02-22 12:29:52 +00:00
|
|
|
import Pleroma.Web.ActivityPub.Visibility
|
2019-02-06 19:20:02 +00:00
|
|
|
|
2017-05-07 18:16:07 +00:00
|
|
|
require Logger
|
2017-03-21 08:21:52 +00:00
|
|
|
|
2018-06-18 04:33:41 +00:00
|
|
|
# For Announce activities, we filter the recipients based on following status for any actors
|
|
|
|
# that match actual users. See issue #164 for more information about why this is necessary.
|
2018-08-29 08:37:36 +00:00
|
|
|
defp get_recipients(%{"type" => "Announce"} = data) do
|
|
|
|
to = data["to"] || []
|
|
|
|
cc = data["cc"] || []
|
2018-06-18 04:33:41 +00:00
|
|
|
actor = User.get_cached_by_ap_id(data["actor"])
|
|
|
|
|
2019-02-06 20:19:35 +00:00
|
|
|
recipients =
|
|
|
|
(to ++ cc)
|
|
|
|
|> Enum.filter(fn recipient ->
|
|
|
|
case User.get_cached_by_ap_id(recipient) do
|
|
|
|
nil ->
|
|
|
|
true
|
|
|
|
|
|
|
|
user ->
|
|
|
|
User.following?(user, actor)
|
|
|
|
end
|
|
|
|
end)
|
2018-08-29 08:37:36 +00:00
|
|
|
|
|
|
|
{recipients, to, cc}
|
2018-06-18 04:33:41 +00:00
|
|
|
end
|
|
|
|
|
2019-01-18 19:40:52 +00:00
|
|
|
defp get_recipients(%{"type" => "Create"} = data) do
|
|
|
|
to = data["to"] || []
|
|
|
|
cc = data["cc"] || []
|
|
|
|
actor = data["actor"] || []
|
|
|
|
recipients = (to ++ cc ++ [actor]) |> Enum.uniq()
|
|
|
|
{recipients, to, cc}
|
|
|
|
end
|
|
|
|
|
2018-08-29 08:37:36 +00:00
|
|
|
defp get_recipients(data) do
|
|
|
|
to = data["to"] || []
|
|
|
|
cc = data["cc"] || []
|
|
|
|
recipients = to ++ cc
|
|
|
|
{recipients, to, cc}
|
2017-12-12 17:07:14 +00:00
|
|
|
end
|
|
|
|
|
2018-05-13 23:28:56 +00:00
|
|
|
defp check_actor_is_active(actor) do
|
2018-05-19 03:17:56 +00:00
|
|
|
if not is_nil(actor) do
|
|
|
|
with user <- User.get_cached_by_ap_id(actor),
|
2018-11-18 20:40:52 +00:00
|
|
|
false <- user.info.deactivated do
|
2018-05-19 03:17:56 +00:00
|
|
|
:ok
|
|
|
|
else
|
|
|
|
_e -> :reject
|
|
|
|
end
|
2018-05-13 23:28:56 +00:00
|
|
|
else
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-26 02:50:49 +00:00
|
|
|
defp check_remote_limit(%{"object" => %{"content" => content}}) when not is_nil(content) do
|
2019-06-03 13:04:39 +00:00
|
|
|
limit = Config.get([:instance, :remote_limit])
|
2018-12-26 11:39:35 +00:00
|
|
|
String.length(content) <= limit
|
|
|
|
end
|
|
|
|
|
|
|
|
defp check_remote_limit(_), do: true
|
|
|
|
|
2019-03-03 10:21:03 +00:00
|
|
|
def increase_note_count_if_public(actor, object) do
|
|
|
|
if is_public?(object), do: User.increase_note_count(actor), else: {:ok, actor}
|
|
|
|
end
|
|
|
|
|
|
|
|
def decrease_note_count_if_public(actor, object) do
|
|
|
|
if is_public?(object), do: User.decrease_note_count(actor), else: {:ok, actor}
|
|
|
|
end
|
|
|
|
|
2019-03-25 17:21:48 +00:00
|
|
|
def increase_replies_count_if_reply(%{
|
2019-04-15 08:50:36 +00:00
|
|
|
"object" => %{"inReplyTo" => reply_ap_id} = object,
|
2019-03-25 17:21:48 +00:00
|
|
|
"type" => "Create"
|
|
|
|
}) do
|
|
|
|
if is_public?(object) do
|
|
|
|
Object.increase_replies_count(reply_ap_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def increase_replies_count_if_reply(_create_data), do: :noop
|
|
|
|
|
|
|
|
def decrease_replies_count_if_reply(%Object{
|
2019-04-15 08:50:36 +00:00
|
|
|
data: %{"inReplyTo" => reply_ap_id} = object
|
2019-03-25 17:21:48 +00:00
|
|
|
}) do
|
|
|
|
if is_public?(object) do
|
|
|
|
Object.decrease_replies_count(reply_ap_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def decrease_replies_count_if_reply(_object), do: :noop
|
|
|
|
|
2019-05-21 11:12:10 +00:00
|
|
|
def increase_poll_votes_if_vote(%{
|
|
|
|
"object" => %{"inReplyTo" => reply_ap_id, "name" => name},
|
|
|
|
"type" => "Create"
|
|
|
|
}) do
|
|
|
|
Object.increase_vote_count(reply_ap_id, name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def increase_poll_votes_if_vote(_create_data), do: :noop
|
|
|
|
|
2019-03-29 18:59:04 +00:00
|
|
|
def insert(map, local \\ true, fake \\ false) when is_map(map) do
|
2018-06-18 21:21:03 +00:00
|
|
|
with nil <- Activity.normalize(map),
|
2019-03-30 10:57:54 +00:00
|
|
|
map <- lazy_put_activity_defaults(map, fake),
|
2018-05-13 23:28:56 +00:00
|
|
|
:ok <- check_actor_is_active(map["actor"]),
|
2018-12-26 11:39:35 +00:00
|
|
|
{_, true} <- {:remote_limit_error, check_remote_limit(map)},
|
2018-05-10 16:34:09 +00:00
|
|
|
{:ok, map} <- MRF.filter(map),
|
2019-03-29 18:59:04 +00:00
|
|
|
{recipients, _, _} = get_recipients(map),
|
|
|
|
{:fake, false, map, recipients} <- {:fake, fake, map, recipients},
|
2019-04-17 09:22:32 +00:00
|
|
|
{:ok, map, object} <- insert_full_object(map) do
|
2018-03-30 13:01:53 +00:00
|
|
|
{:ok, activity} =
|
|
|
|
Repo.insert(%Activity{
|
|
|
|
data: map,
|
|
|
|
local: local,
|
|
|
|
actor: map["actor"],
|
2018-08-29 18:38:30 +00:00
|
|
|
recipients: recipients
|
2018-03-30 13:01:53 +00:00
|
|
|
})
|
|
|
|
|
2019-03-23 00:40:08 +00:00
|
|
|
# Splice in the child object if we have one.
|
|
|
|
activity =
|
|
|
|
if !is_nil(object) do
|
|
|
|
Map.put(activity, :object, object)
|
|
|
|
else
|
|
|
|
activity
|
|
|
|
end
|
|
|
|
|
2019-05-13 02:02:00 +00:00
|
|
|
PleromaJobQueue.enqueue(:background, Pleroma.Web.RichMedia.Helpers, [:fetch, activity])
|
2019-01-28 06:07:18 +00:00
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
Notification.create_notifications(activity)
|
2019-05-03 11:39:14 +00:00
|
|
|
|
|
|
|
participations =
|
|
|
|
activity
|
|
|
|
|> Conversation.create_or_bump_for()
|
|
|
|
|> get_participations()
|
|
|
|
|
2017-11-19 12:47:50 +00:00
|
|
|
stream_out(activity)
|
2019-05-03 11:39:14 +00:00
|
|
|
stream_out_participations(participations)
|
2017-09-11 14:15:28 +00:00
|
|
|
{:ok, activity}
|
2017-05-16 13:31:11 +00:00
|
|
|
else
|
2019-03-29 18:59:04 +00:00
|
|
|
%Activity{} = activity ->
|
|
|
|
{:ok, activity}
|
|
|
|
|
|
|
|
{:fake, true, map, recipients} ->
|
2019-04-01 08:55:59 +00:00
|
|
|
activity = %Activity{
|
|
|
|
data: map,
|
|
|
|
local: local,
|
|
|
|
actor: map["actor"],
|
|
|
|
recipients: recipients,
|
|
|
|
id: "pleroma:fakeid"
|
|
|
|
}
|
|
|
|
|
2019-04-01 08:58:08 +00:00
|
|
|
Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
2019-04-01 08:55:59 +00:00
|
|
|
{:ok, activity}
|
2019-03-29 18:59:04 +00:00
|
|
|
|
|
|
|
error ->
|
|
|
|
{:error, error}
|
2017-05-07 18:13:10 +00:00
|
|
|
end
|
2017-03-21 08:21:52 +00:00
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2019-05-03 11:39:14 +00:00
|
|
|
defp get_participations({:ok, %{participations: participations}}), do: participations
|
|
|
|
defp get_participations(_), do: []
|
|
|
|
|
|
|
|
def stream_out_participations(participations) do
|
|
|
|
participations =
|
|
|
|
participations
|
|
|
|
|> Repo.preload(:user)
|
|
|
|
|
|
|
|
Enum.each(participations, fn participation ->
|
|
|
|
Pleroma.Web.Streamer.stream("participation", participation)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-06-24 07:14:04 +00:00
|
|
|
def stream_out_participations(%Object{data: %{"context" => context}}, user) do
|
|
|
|
with %Conversation{} = conversation <- Conversation.get_for_ap_id(context),
|
|
|
|
conversation = Repo.preload(conversation, :participations),
|
|
|
|
last_activity_id =
|
|
|
|
fetch_latest_activity_id_for_context(conversation.ap_id, %{
|
|
|
|
"user" => user,
|
|
|
|
"blocking_user" => user
|
|
|
|
}) do
|
|
|
|
if last_activity_id do
|
|
|
|
stream_out_participations(conversation.participations)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def stream_out_participations(_, _), do: :noop
|
|
|
|
|
2017-11-19 12:47:50 +00:00
|
|
|
def stream_out(activity) do
|
2018-05-13 19:33:59 +00:00
|
|
|
public = "https://www.w3.org/ns/activitystreams#Public"
|
|
|
|
|
2019-01-20 12:00:46 +00:00
|
|
|
if activity.data["type"] in ["Create", "Announce", "Delete"] do
|
2019-05-21 13:58:15 +00:00
|
|
|
object = Object.normalize(activity)
|
|
|
|
# Do not stream out poll replies
|
2019-05-22 18:17:57 +00:00
|
|
|
unless object.data["type"] == "Answer" do
|
2019-05-21 13:58:15 +00:00
|
|
|
Pleroma.Web.Streamer.stream("user", activity)
|
|
|
|
Pleroma.Web.Streamer.stream("list", activity)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-05-21 13:58:15 +00:00
|
|
|
if Enum.member?(activity.data["to"], public) do
|
|
|
|
Pleroma.Web.Streamer.stream("public", activity)
|
2018-05-11 02:17:59 +00:00
|
|
|
|
2019-05-21 13:58:15 +00:00
|
|
|
if activity.local do
|
|
|
|
Pleroma.Web.Streamer.stream("public:local", activity)
|
|
|
|
end
|
2019-04-30 17:21:28 +00:00
|
|
|
|
2019-05-21 13:58:15 +00:00
|
|
|
if activity.data["type"] in ["Create"] do
|
|
|
|
object.data
|
|
|
|
|> Map.get("tag", [])
|
|
|
|
|> Enum.filter(fn tag -> is_bitstring(tag) end)
|
|
|
|
|> Enum.each(fn tag -> Pleroma.Web.Streamer.stream("hashtag:" <> tag, activity) end)
|
2018-08-07 20:45:40 +00:00
|
|
|
|
2019-05-21 13:58:15 +00:00
|
|
|
if object.data["attachment"] != [] do
|
|
|
|
Pleroma.Web.Streamer.stream("public:media", activity)
|
2018-06-17 13:01:27 +00:00
|
|
|
|
2019-05-21 13:58:15 +00:00
|
|
|
if activity.local do
|
|
|
|
Pleroma.Web.Streamer.stream("public:local:media", activity)
|
|
|
|
end
|
2019-01-20 12:00:46 +00:00
|
|
|
end
|
2018-06-17 13:01:27 +00:00
|
|
|
end
|
2019-05-21 13:58:15 +00:00
|
|
|
else
|
|
|
|
# TODO: Write test, replace with visibility test
|
|
|
|
if !Enum.member?(activity.data["cc"] || [], public) &&
|
|
|
|
!Enum.member?(
|
|
|
|
activity.data["to"],
|
|
|
|
User.get_cached_by_ap_id(activity.data["actor"]).follower_address
|
|
|
|
),
|
|
|
|
do: Pleroma.Web.Streamer.stream("direct", activity)
|
2018-06-17 13:01:27 +00:00
|
|
|
end
|
2017-11-11 13:59:25 +00:00
|
|
|
end
|
2017-11-19 12:47:50 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-29 18:59:04 +00:00
|
|
|
def create(%{to: to, actor: actor, context: context, object: object} = params, fake \\ false) do
|
2018-02-15 18:59:03 +00:00
|
|
|
additional = params[:additional] || %{}
|
2018-03-30 13:01:53 +00:00
|
|
|
# only accept false as false value
|
|
|
|
local = !(params[:local] == false)
|
2018-02-15 18:59:03 +00:00
|
|
|
published = params[:published]
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
with create_data <-
|
|
|
|
make_create_data(
|
|
|
|
%{to: to, actor: actor, published: published, context: context, object: object},
|
|
|
|
additional
|
|
|
|
),
|
2019-03-29 18:59:04 +00:00
|
|
|
{:ok, activity} <- insert(create_data, local, fake),
|
|
|
|
{:fake, false, activity} <- {:fake, fake, activity},
|
2019-03-25 17:21:48 +00:00
|
|
|
_ <- increase_replies_count_if_reply(create_data),
|
2019-05-21 11:12:10 +00:00
|
|
|
_ <- increase_poll_votes_if_vote(create_data),
|
2019-03-05 04:37:33 +00:00
|
|
|
# Changing note count prior to enqueuing federation task in order to avoid
|
|
|
|
# race conditions on updating user.info
|
2019-03-03 10:21:03 +00:00
|
|
|
{:ok, _actor} <- increase_note_count_if_public(actor, activity),
|
2019-01-21 11:16:51 +00:00
|
|
|
:ok <- maybe_federate(activity) do
|
2017-04-24 16:46:34 +00:00
|
|
|
{:ok, activity}
|
2019-03-29 18:59:04 +00:00
|
|
|
else
|
|
|
|
{:fake, true, activity} ->
|
|
|
|
{:ok, activity}
|
2017-04-24 16:46:34 +00:00
|
|
|
end
|
2017-03-21 08:21:52 +00:00
|
|
|
end
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2018-02-17 15:08:55 +00:00
|
|
|
def accept(%{to: to, actor: actor, object: object} = params) do
|
2018-03-30 13:01:53 +00:00
|
|
|
# only accept false as false value
|
|
|
|
local = !(params[:local] == false)
|
2018-02-17 15:08:55 +00:00
|
|
|
|
2019-02-09 23:26:29 +00:00
|
|
|
with data <- %{"to" => to, "type" => "Accept", "actor" => actor.ap_id, "object" => object},
|
2018-02-17 15:08:55 +00:00
|
|
|
{:ok, activity} <- insert(data, local),
|
2019-03-03 15:39:37 +00:00
|
|
|
:ok <- maybe_federate(activity) do
|
2018-02-17 15:08:55 +00:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-26 12:07:46 +00:00
|
|
|
def reject(%{to: to, actor: actor, object: object} = params) do
|
|
|
|
# only accept false as false value
|
|
|
|
local = !(params[:local] == false)
|
|
|
|
|
2019-02-09 23:26:29 +00:00
|
|
|
with data <- %{"to" => to, "type" => "Reject", "actor" => actor.ap_id, "object" => object},
|
2018-05-26 12:07:46 +00:00
|
|
|
{:ok, activity} <- insert(data, local),
|
2019-03-03 15:39:37 +00:00
|
|
|
:ok <- maybe_federate(activity) do
|
2018-05-26 12:07:46 +00:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-25 15:14:25 +00:00
|
|
|
def update(%{to: to, cc: cc, actor: actor, object: object} = params) do
|
2018-03-30 13:01:53 +00:00
|
|
|
# only accept false as false value
|
|
|
|
local = !(params[:local] == false)
|
|
|
|
|
|
|
|
with data <- %{
|
|
|
|
"to" => to,
|
|
|
|
"cc" => cc,
|
|
|
|
"type" => "Update",
|
|
|
|
"actor" => actor,
|
|
|
|
"object" => object
|
|
|
|
},
|
2018-02-25 15:14:25 +00:00
|
|
|
{:ok, activity} <- insert(data, local),
|
|
|
|
:ok <- maybe_federate(activity) do
|
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
# TODO: This is weird, maybe we shouldn't check here if we can make the activity.
|
2018-03-30 13:01:53 +00:00
|
|
|
def like(
|
|
|
|
%User{ap_id: ap_id} = user,
|
|
|
|
%Object{data: %{"id" => _}} = object,
|
|
|
|
activity_id \\ nil,
|
|
|
|
local \\ true
|
|
|
|
) do
|
2017-05-16 13:31:11 +00:00
|
|
|
with nil <- get_existing_like(ap_id, object),
|
|
|
|
like_data <- make_like_data(user, object, activity_id),
|
|
|
|
{:ok, activity} <- insert(like_data, local),
|
|
|
|
{:ok, object} <- add_like_to_object(activity, object),
|
|
|
|
:ok <- maybe_federate(activity) do
|
|
|
|
{:ok, activity, object}
|
|
|
|
else
|
|
|
|
%Activity{} = activity -> {:ok, activity, object}
|
|
|
|
error -> {:error, error}
|
2017-04-14 13:07:24 +00:00
|
|
|
end
|
2017-04-13 13:50:05 +00:00
|
|
|
end
|
|
|
|
|
2018-05-19 13:22:43 +00:00
|
|
|
def unlike(
|
|
|
|
%User{} = actor,
|
|
|
|
%Object{} = object,
|
|
|
|
activity_id \\ nil,
|
|
|
|
local \\ true
|
|
|
|
) do
|
|
|
|
with %Activity{} = like_activity <- get_existing_like(actor.ap_id, object),
|
|
|
|
unlike_data <- make_unlike_data(actor, like_activity, activity_id),
|
|
|
|
{:ok, unlike_activity} <- insert(unlike_data, local),
|
|
|
|
{:ok, _activity} <- Repo.delete(like_activity),
|
|
|
|
{:ok, object} <- remove_like_from_object(like_activity, object),
|
|
|
|
:ok <- maybe_federate(unlike_activity) do
|
|
|
|
{:ok, unlike_activity, like_activity, object}
|
2018-03-30 13:01:53 +00:00
|
|
|
else
|
|
|
|
_e -> {:ok, object}
|
2017-04-14 16:08:47 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def announce(
|
|
|
|
%User{ap_id: _} = user,
|
|
|
|
%Object{data: %{"id" => _}} = object,
|
|
|
|
activity_id \\ nil,
|
2019-01-17 23:12:42 +00:00
|
|
|
local \\ true,
|
|
|
|
public \\ true
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2018-02-18 14:58:18 +00:00
|
|
|
with true <- is_public?(object),
|
2019-01-17 23:12:42 +00:00
|
|
|
announce_data <- make_announce_data(user, object, activity_id, public),
|
2017-05-16 13:31:11 +00:00
|
|
|
{:ok, activity} <- insert(announce_data, local),
|
|
|
|
{:ok, object} <- add_announce_to_object(activity, object),
|
|
|
|
:ok <- maybe_federate(activity) do
|
|
|
|
{:ok, activity, object}
|
|
|
|
else
|
|
|
|
error -> {:error, error}
|
|
|
|
end
|
2017-03-23 22:34:10 +00:00
|
|
|
end
|
|
|
|
|
2018-04-23 01:28:51 +00:00
|
|
|
def unannounce(
|
|
|
|
%User{} = actor,
|
|
|
|
%Object{} = object,
|
2018-05-09 03:59:36 +00:00
|
|
|
activity_id \\ nil,
|
|
|
|
local \\ true
|
2018-04-23 01:28:51 +00:00
|
|
|
) do
|
2018-05-09 01:52:21 +00:00
|
|
|
with %Activity{} = announce_activity <- get_existing_announce(actor.ap_id, object),
|
|
|
|
unannounce_data <- make_unannounce_data(actor, announce_activity, activity_id),
|
2018-04-18 07:39:42 +00:00
|
|
|
{:ok, unannounce_activity} <- insert(unannounce_data, local),
|
2018-05-09 01:52:21 +00:00
|
|
|
:ok <- maybe_federate(unannounce_activity),
|
|
|
|
{:ok, _activity} <- Repo.delete(announce_activity),
|
|
|
|
{:ok, object} <- remove_announce_from_object(announce_activity, object) do
|
2018-06-14 01:29:55 +00:00
|
|
|
{:ok, unannounce_activity, object}
|
2018-04-14 07:39:16 +00:00
|
|
|
else
|
|
|
|
_e -> {:ok, object}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
def follow(follower, followed, activity_id \\ nil, local \\ true) do
|
|
|
|
with data <- make_follow_data(follower, followed, activity_id),
|
|
|
|
{:ok, activity} <- insert(data, local),
|
2019-03-03 15:39:37 +00:00
|
|
|
:ok <- maybe_federate(activity) do
|
2017-05-16 13:31:11 +00:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
2017-03-23 16:56:49 +00:00
|
|
|
end
|
|
|
|
|
2018-05-21 01:01:14 +00:00
|
|
|
def unfollow(follower, followed, activity_id \\ nil, local \\ true) do
|
2017-05-16 13:31:11 +00:00
|
|
|
with %Activity{} = follow_activity <- fetch_latest_follow(follower, followed),
|
2018-05-27 13:51:13 +00:00
|
|
|
{:ok, follow_activity} <- update_follow_state(follow_activity, "cancelled"),
|
2018-05-21 01:01:14 +00:00
|
|
|
unfollow_data <- make_unfollow_data(follower, followed, follow_activity, activity_id),
|
2017-05-16 13:31:11 +00:00
|
|
|
{:ok, activity} <- insert(unfollow_data, local),
|
2019-03-03 15:39:37 +00:00
|
|
|
:ok <- maybe_federate(activity) do
|
2017-05-16 13:31:11 +00:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
2017-03-23 22:34:10 +00:00
|
|
|
end
|
|
|
|
|
2017-09-04 16:47:33 +00:00
|
|
|
def delete(%Object{data: %{"id" => id, "actor" => actor}} = object, local \\ true) do
|
|
|
|
user = User.get_cached_by_ap_id(actor)
|
2019-03-14 17:43:14 +00:00
|
|
|
to = (object.data["to"] || []) ++ (object.data["cc"] || [])
|
2019-03-04 09:47:04 +00:00
|
|
|
|
2019-03-09 11:12:15 +00:00
|
|
|
with {:ok, object, activity} <- Object.delete(object),
|
|
|
|
data <- %{
|
|
|
|
"type" => "Delete",
|
|
|
|
"actor" => actor,
|
|
|
|
"object" => id,
|
|
|
|
"to" => to,
|
|
|
|
"deleted_activity_id" => activity && activity.id
|
|
|
|
},
|
2019-06-24 07:14:04 +00:00
|
|
|
{:ok, activity} <- insert(data, local, false),
|
|
|
|
stream_out_participations(object, user),
|
2019-03-25 17:21:48 +00:00
|
|
|
_ <- decrease_replies_count_if_reply(object),
|
2019-03-05 04:37:33 +00:00
|
|
|
# Changing note count prior to enqueuing federation task in order to avoid
|
|
|
|
# race conditions on updating user.info
|
2019-03-03 10:21:03 +00:00
|
|
|
{:ok, _actor} <- decrease_note_count_if_public(user, object),
|
2019-01-21 11:16:51 +00:00
|
|
|
:ok <- maybe_federate(activity) do
|
2017-09-04 16:47:33 +00:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-21 01:01:14 +00:00
|
|
|
def block(blocker, blocked, activity_id \\ nil, local \\ true) do
|
2019-06-03 13:04:39 +00:00
|
|
|
outgoing_blocks = Config.get([:activitypub, :outgoing_blocks])
|
|
|
|
unfollow_blocked = Config.get([:activitypub, :unfollow_blocked])
|
2018-05-18 22:09:56 +00:00
|
|
|
|
2019-05-30 08:33:58 +00:00
|
|
|
if unfollow_blocked do
|
2018-06-09 00:12:16 +00:00
|
|
|
follow_activity = fetch_latest_follow(blocker, blocked)
|
2019-05-30 08:33:58 +00:00
|
|
|
if follow_activity, do: unfollow(blocker, blocked, nil, local)
|
2018-05-18 22:09:56 +00:00
|
|
|
end
|
|
|
|
|
2018-06-25 06:05:44 +00:00
|
|
|
with true <- outgoing_blocks,
|
|
|
|
block_data <- make_block_data(blocker, blocked, activity_id),
|
2018-05-18 22:09:56 +00:00
|
|
|
{:ok, activity} <- insert(block_data, local),
|
|
|
|
:ok <- maybe_federate(activity) do
|
|
|
|
{:ok, activity}
|
2018-06-09 00:12:16 +00:00
|
|
|
else
|
2018-06-09 02:07:14 +00:00
|
|
|
_e -> {:ok, nil}
|
2018-05-18 22:09:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-21 01:01:14 +00:00
|
|
|
def unblock(blocker, blocked, activity_id \\ nil, local \\ true) do
|
2018-05-18 22:09:56 +00:00
|
|
|
with %Activity{} = block_activity <- fetch_latest_block(blocker, blocked),
|
2018-05-21 01:01:14 +00:00
|
|
|
unblock_data <- make_unblock_data(blocker, blocked, block_activity, activity_id),
|
2018-05-18 22:09:56 +00:00
|
|
|
{:ok, activity} <- insert(unblock_data, local),
|
|
|
|
:ok <- maybe_federate(activity) do
|
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-20 16:51:25 +00:00
|
|
|
def flag(
|
|
|
|
%{
|
|
|
|
actor: actor,
|
|
|
|
context: context,
|
|
|
|
account: account,
|
|
|
|
statuses: statuses,
|
|
|
|
content: content
|
|
|
|
} = params
|
|
|
|
) do
|
|
|
|
# only accept false as false value
|
|
|
|
local = !(params[:local] == false)
|
2019-03-14 19:29:47 +00:00
|
|
|
forward = !(params[:forward] == false)
|
|
|
|
|
|
|
|
additional = params[:additional] || %{}
|
2019-02-20 16:51:25 +00:00
|
|
|
|
2019-03-14 19:29:47 +00:00
|
|
|
params = %{
|
2019-02-20 16:51:25 +00:00
|
|
|
actor: actor,
|
|
|
|
context: context,
|
|
|
|
account: account,
|
|
|
|
statuses: statuses,
|
|
|
|
content: content
|
|
|
|
}
|
2019-03-14 19:29:47 +00:00
|
|
|
|
|
|
|
additional =
|
|
|
|
if forward do
|
|
|
|
Map.merge(additional, %{"to" => [], "cc" => [account.ap_id]})
|
|
|
|
else
|
2019-03-14 19:52:08 +00:00
|
|
|
Map.merge(additional, %{"to" => [], "cc" => []})
|
2019-03-14 19:29:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
with flag_data <- make_flag_data(params, additional),
|
|
|
|
{:ok, activity} <- insert(flag_data, local),
|
|
|
|
:ok <- maybe_federate(activity) do
|
2019-03-14 19:38:46 +00:00
|
|
|
Enum.each(User.all_superusers(), fn superuser ->
|
|
|
|
superuser
|
2019-04-10 04:13:46 +00:00
|
|
|
|> Pleroma.Emails.AdminEmail.report(actor, account, statuses, content)
|
2019-04-10 04:05:05 +00:00
|
|
|
|> Pleroma.Emails.Mailer.deliver_async()
|
2019-03-14 19:38:46 +00:00
|
|
|
end)
|
|
|
|
|
2019-03-14 19:29:47 +00:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
2019-02-20 16:51:25 +00:00
|
|
|
end
|
|
|
|
|
2019-04-20 17:40:41 +00:00
|
|
|
defp fetch_activities_for_context_query(context, opts) do
|
2018-02-18 19:52:07 +00:00
|
|
|
public = ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
recipients =
|
|
|
|
if opts["user"], do: [opts["user"].ap_id | opts["user"].following] ++ public, else: public
|
|
|
|
|
2019-04-20 17:40:41 +00:00
|
|
|
from(activity in Activity)
|
2019-05-23 11:03:16 +00:00
|
|
|
|> maybe_preload_objects(opts)
|
2019-04-20 17:40:41 +00:00
|
|
|
|> restrict_blocked(opts)
|
|
|
|
|> restrict_recipients(recipients, opts["user"])
|
|
|
|
|> where(
|
|
|
|
[activity],
|
|
|
|
fragment(
|
|
|
|
"?->>'type' = ? and ?->>'context' = ?",
|
|
|
|
activity.data,
|
|
|
|
"Create",
|
|
|
|
activity.data,
|
|
|
|
^context
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2019-04-20 17:40:41 +00:00
|
|
|
)
|
2019-06-03 07:58:37 +00:00
|
|
|
|> exclude_poll_votes(opts)
|
2019-04-20 17:40:41 +00:00
|
|
|
|> order_by([activity], desc: activity.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec fetch_activities_for_context(String.t(), keyword() | map()) :: [Activity.t()]
|
|
|
|
def fetch_activities_for_context(context, opts \\ %{}) do
|
|
|
|
context
|
|
|
|
|> fetch_activities_for_context_query(opts)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-04-20 17:40:41 +00:00
|
|
|
@spec fetch_latest_activity_id_for_context(String.t(), keyword() | map()) ::
|
|
|
|
Pleroma.FlakeId.t() | nil
|
|
|
|
def fetch_latest_activity_id_for_context(context, opts \\ %{}) do
|
|
|
|
context
|
2019-05-23 11:03:16 +00:00
|
|
|
|> fetch_activities_for_context_query(Map.merge(%{"skip_preload" => true}, opts))
|
2019-04-20 17:40:41 +00:00
|
|
|
|> limit(1)
|
|
|
|
|> select([a], a.id)
|
|
|
|
|> Repo.one()
|
2017-03-23 20:22:49 +00:00
|
|
|
end
|
|
|
|
|
2017-03-21 19:31:48 +00:00
|
|
|
def fetch_public_activities(opts \\ %{}) do
|
2018-02-26 09:09:30 +00:00
|
|
|
q = fetch_activities_query(["https://www.w3.org/ns/activitystreams#Public"], opts)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-18 14:32:11 +00:00
|
|
|
q
|
2018-05-13 10:38:13 +00:00
|
|
|
|> restrict_unlisted()
|
2019-03-25 22:13:58 +00:00
|
|
|
|> Pagination.fetch_paginated(opts)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.reverse()
|
2017-03-22 13:45:17 +00:00
|
|
|
end
|
|
|
|
|
2018-05-11 02:17:33 +00:00
|
|
|
@valid_visibilities ~w[direct unlisted public private]
|
|
|
|
|
2019-03-01 06:37:29 +00:00
|
|
|
defp restrict_visibility(query, %{visibility: visibility})
|
|
|
|
when is_list(visibility) do
|
|
|
|
if Enum.all?(visibility, &(&1 in @valid_visibilities)) do
|
|
|
|
query =
|
|
|
|
from(
|
|
|
|
a in query,
|
|
|
|
where:
|
|
|
|
fragment(
|
|
|
|
"activity_visibility(?, ?, ?) = ANY (?)",
|
|
|
|
a.actor,
|
|
|
|
a.recipients,
|
|
|
|
a.data,
|
|
|
|
^visibility
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
query
|
|
|
|
else
|
|
|
|
Logger.error("Could not restrict visibility to #{visibility}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-09 15:45:09 +00:00
|
|
|
defp restrict_visibility(query, %{visibility: visibility})
|
|
|
|
when visibility in @valid_visibilities do
|
2019-06-04 12:04:36 +00:00
|
|
|
from(
|
|
|
|
a in query,
|
|
|
|
where:
|
|
|
|
fragment("activity_visibility(?, ?, ?) = ?", a.actor, a.recipients, a.data, ^visibility)
|
|
|
|
)
|
2018-05-11 02:17:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_visibility(_query, %{visibility: visibility})
|
|
|
|
when visibility not in @valid_visibilities do
|
|
|
|
Logger.error("Could not restrict visibility to #{visibility}")
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_visibility(query, _visibility), do: query
|
|
|
|
|
2019-06-04 12:04:36 +00:00
|
|
|
defp restrict_thread_visibility(query, _, %{skip_thread_containment: true} = _),
|
|
|
|
do: query
|
2019-03-25 00:06:02 +00:00
|
|
|
|
2019-06-04 12:20:24 +00:00
|
|
|
defp restrict_thread_visibility(
|
|
|
|
query,
|
|
|
|
%{"user" => %User{info: %{skip_thread_containment: true}}},
|
|
|
|
_
|
|
|
|
),
|
|
|
|
do: query
|
|
|
|
|
2019-06-04 12:04:36 +00:00
|
|
|
defp restrict_thread_visibility(query, %{"user" => %User{ap_id: ap_id}}, _) do
|
|
|
|
from(
|
|
|
|
a in query,
|
|
|
|
where: fragment("thread_visibility(?, (?)->>'id') = true", ^ap_id, a.data)
|
|
|
|
)
|
2019-03-25 00:06:02 +00:00
|
|
|
end
|
|
|
|
|
2019-06-04 12:04:36 +00:00
|
|
|
defp restrict_thread_visibility(query, _, _), do: query
|
2019-03-25 00:06:02 +00:00
|
|
|
|
2018-05-20 14:15:18 +00:00
|
|
|
def fetch_user_activities(user, reading_user, params \\ %{}) do
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", ["Create", "Announce"])
|
|
|
|
|> Map.put("actor_id", user.ap_id)
|
|
|
|
|> Map.put("whole_db", true)
|
2019-01-07 13:45:33 +00:00
|
|
|
|> Map.put("pinned_activity_ids", user.info.pinned_activities)
|
2018-05-20 14:15:18 +00:00
|
|
|
|
|
|
|
recipients =
|
|
|
|
if reading_user do
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"] ++
|
|
|
|
[reading_user.ap_id | reading_user.following]
|
|
|
|
else
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
end
|
|
|
|
|
|
|
|
fetch_activities(recipients, params)
|
|
|
|
|> Enum.reverse()
|
|
|
|
end
|
|
|
|
|
2019-01-15 15:39:23 +00:00
|
|
|
defp restrict_since(query, %{"since_id" => ""}), do: query
|
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
defp restrict_since(query, %{"since_id" => since_id}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: activity.id > ^since_id)
|
2017-05-16 13:31:11 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
defp restrict_since(query, _), do: query
|
2017-03-21 16:53:20 +00:00
|
|
|
|
2019-04-18 05:31:08 +00:00
|
|
|
defp restrict_tag_reject(_query, %{"tag_reject" => _tag_reject, "skip_preload" => true}) do
|
|
|
|
raise "Can't use the child object without preloading!"
|
|
|
|
end
|
|
|
|
|
2019-01-10 15:44:28 +00:00
|
|
|
defp restrict_tag_reject(query, %{"tag_reject" => tag_reject})
|
|
|
|
when is_list(tag_reject) and tag_reject != [] do
|
2018-12-19 16:21:35 +00:00
|
|
|
from(
|
2019-04-17 22:37:04 +00:00
|
|
|
[_activity, object] in query,
|
|
|
|
where: fragment("not (?)->'tag' \\?| (?)", object.data, ^tag_reject)
|
2018-12-21 17:24:13 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-01-10 15:44:28 +00:00
|
|
|
defp restrict_tag_reject(query, _), do: query
|
|
|
|
|
2019-04-18 05:31:08 +00:00
|
|
|
defp restrict_tag_all(_query, %{"tag_all" => _tag_all, "skip_preload" => true}) do
|
|
|
|
raise "Can't use the child object without preloading!"
|
|
|
|
end
|
|
|
|
|
2019-01-10 15:44:28 +00:00
|
|
|
defp restrict_tag_all(query, %{"tag_all" => tag_all})
|
|
|
|
when is_list(tag_all) and tag_all != [] do
|
|
|
|
from(
|
2019-04-17 22:37:04 +00:00
|
|
|
[_activity, object] in query,
|
|
|
|
where: fragment("(?)->'tag' \\?& (?)", object.data, ^tag_all)
|
2019-01-10 15:44:28 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_tag_all(query, _), do: query
|
|
|
|
|
2019-04-18 05:31:08 +00:00
|
|
|
defp restrict_tag(_query, %{"tag" => _tag, "skip_preload" => true}) do
|
|
|
|
raise "Can't use the child object without preloading!"
|
|
|
|
end
|
|
|
|
|
2018-12-21 17:24:13 +00:00
|
|
|
defp restrict_tag(query, %{"tag" => tag}) when is_list(tag) do
|
|
|
|
from(
|
2019-04-17 22:37:04 +00:00
|
|
|
[_activity, object] in query,
|
|
|
|
where: fragment("(?)->'tag' \\?| (?)", object.data, ^tag)
|
2018-12-19 16:21:35 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-12-21 17:24:13 +00:00
|
|
|
defp restrict_tag(query, %{"tag" => tag}) when is_binary(tag) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(
|
2019-04-17 22:37:04 +00:00
|
|
|
[_activity, object] in query,
|
|
|
|
where: fragment("(?)->'tag' \\? (?)", object.data, ^tag)
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2017-09-14 11:22:09 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-14 11:22:09 +00:00
|
|
|
defp restrict_tag(query, _), do: query
|
|
|
|
|
2018-05-04 21:16:02 +00:00
|
|
|
defp restrict_recipients(query, [], _user), do: query
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-18 14:20:36 +00:00
|
|
|
defp restrict_recipients(query, recipients, nil) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: fragment("? && ?", ^recipients, activity.recipients))
|
2017-03-21 16:53:20 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-18 14:20:36 +00:00
|
|
|
defp restrict_recipients(query, recipients, user) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(
|
|
|
|
activity in query,
|
2018-02-18 14:20:36 +00:00
|
|
|
where: fragment("? && ?", ^recipients, activity.recipients),
|
|
|
|
or_where: activity.actor == ^user.ap_id
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2018-02-18 14:20:36 +00:00
|
|
|
end
|
2017-03-23 23:09:08 +00:00
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
defp restrict_local(query, %{"local_only" => true}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: activity.local == true)
|
2017-04-15 10:11:20 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
defp restrict_local(query, _), do: query
|
2017-04-15 10:11:20 +00:00
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
defp restrict_actor(query, %{"actor_id" => actor_id}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: activity.actor == ^actor_id)
|
2017-05-07 17:28:23 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
defp restrict_actor(query, _), do: query
|
2017-05-07 17:28:23 +00:00
|
|
|
|
2017-09-17 12:20:54 +00:00
|
|
|
defp restrict_type(query, %{"type" => type}) when is_binary(type) do
|
2019-02-04 22:47:29 +00:00
|
|
|
from(activity in query, where: fragment("?->>'type' = ?", activity.data, ^type))
|
2017-09-17 12:20:54 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-09 10:05:17 +00:00
|
|
|
defp restrict_type(query, %{"type" => type}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: fragment("?->>'type' = ANY(?)", activity.data, ^type))
|
2017-09-09 10:05:17 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-09 10:05:17 +00:00
|
|
|
defp restrict_type(query, _), do: query
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
defp restrict_state(query, %{"state" => state}) do
|
|
|
|
from(activity in query, where: fragment("?->>'state' = ?", activity.data, ^state))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_state(query, _), do: query
|
|
|
|
|
2017-09-17 11:09:49 +00:00
|
|
|
defp restrict_favorited_by(query, %{"favorited_by" => ap_id}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(
|
|
|
|
activity in query,
|
2019-03-05 04:44:53 +00:00
|
|
|
where: fragment(~s(? <@ (? #> '{"object","likes"}'\)), ^ap_id, activity.data)
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2017-09-17 11:09:49 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-17 11:09:49 +00:00
|
|
|
defp restrict_favorited_by(query, _), do: query
|
|
|
|
|
2019-04-18 05:31:08 +00:00
|
|
|
defp restrict_media(_query, %{"only_media" => _val, "skip_preload" => true}) do
|
|
|
|
raise "Can't use the child object without preloading!"
|
|
|
|
end
|
|
|
|
|
2017-11-14 13:50:23 +00:00
|
|
|
defp restrict_media(query, %{"only_media" => val}) when val == "true" or val == "1" do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(
|
2019-04-18 05:31:08 +00:00
|
|
|
[_activity, object] in query,
|
|
|
|
where: fragment("not (?)->'attachment' = (?)", object.data, ^[])
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2017-11-14 13:41:16 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-14 13:41:16 +00:00
|
|
|
defp restrict_media(query, _), do: query
|
|
|
|
|
2018-06-18 03:18:39 +00:00
|
|
|
defp restrict_replies(query, %{"exclude_replies" => val}) when val == "true" or val == "1" do
|
|
|
|
from(
|
|
|
|
activity in query,
|
|
|
|
where: fragment("?->'object'->>'inReplyTo' is null", activity.data)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_replies(query, _), do: query
|
|
|
|
|
2018-12-27 05:30:01 +00:00
|
|
|
defp restrict_reblogs(query, %{"exclude_reblogs" => val}) when val == "true" or val == "1" do
|
|
|
|
from(activity in query, where: fragment("?->>'type' != 'Announce'", activity.data))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_reblogs(query, _), do: query
|
|
|
|
|
2019-02-27 15:37:42 +00:00
|
|
|
defp restrict_muted(query, %{"with_muted" => val}) when val in [true, "true", "1"], do: query
|
|
|
|
|
2018-09-05 20:49:15 +00:00
|
|
|
defp restrict_muted(query, %{"muting_user" => %User{info: info}}) do
|
2019-02-19 20:09:16 +00:00
|
|
|
mutes = info.mutes
|
2018-09-05 20:49:15 +00:00
|
|
|
|
|
|
|
from(
|
|
|
|
activity in query,
|
|
|
|
where: fragment("not (? = ANY(?))", activity.actor, ^mutes),
|
|
|
|
where: fragment("not (?->'to' \\?| ?)", activity.data, ^mutes)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_muted(query, _), do: query
|
|
|
|
|
2017-11-02 21:47:11 +00:00
|
|
|
defp restrict_blocked(query, %{"blocking_user" => %User{info: info}}) do
|
2018-11-20 19:12:39 +00:00
|
|
|
blocks = info.blocks || []
|
|
|
|
domain_blocks = info.domain_blocks || []
|
2018-04-28 14:10:24 +00:00
|
|
|
|
2019-05-15 22:25:14 +00:00
|
|
|
query =
|
|
|
|
if has_named_binding?(query, :object), do: query, else: Activity.with_joined_object(query)
|
|
|
|
|
2018-04-28 14:10:24 +00:00
|
|
|
from(
|
2019-05-15 22:25:14 +00:00
|
|
|
[activity, object: o] in query,
|
2018-04-14 11:26:20 +00:00
|
|
|
where: fragment("not (? = ANY(?))", activity.actor, ^blocks),
|
2019-04-17 20:05:09 +00:00
|
|
|
where: fragment("not (? && ?)", activity.recipients, ^blocks),
|
2019-04-17 22:27:59 +00:00
|
|
|
where:
|
|
|
|
fragment(
|
|
|
|
"not (?->>'type' = 'Announce' and ?->'to' \\?| ?)",
|
|
|
|
activity.data,
|
|
|
|
activity.data,
|
|
|
|
^blocks
|
|
|
|
),
|
2019-05-14 23:59:24 +00:00
|
|
|
where: fragment("not (split_part(?, '/', 3) = ANY(?))", activity.actor, ^domain_blocks),
|
|
|
|
where: fragment("not (split_part(?->>'actor', '/', 3) = ANY(?))", o.data, ^domain_blocks)
|
2018-04-14 11:26:20 +00:00
|
|
|
)
|
2017-11-02 21:37:26 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-02 21:37:26 +00:00
|
|
|
defp restrict_blocked(query, _), do: query
|
|
|
|
|
2018-04-29 02:53:19 +00:00
|
|
|
defp restrict_unlisted(query) do
|
|
|
|
from(
|
|
|
|
activity in query,
|
2018-05-13 08:56:44 +00:00
|
|
|
where:
|
|
|
|
fragment(
|
2018-05-13 09:58:03 +00:00
|
|
|
"not (coalesce(?->'cc', '{}'::jsonb) \\?| ?)",
|
2018-05-13 08:56:44 +00:00
|
|
|
activity.data,
|
|
|
|
^["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
)
|
2018-04-29 02:53:19 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-01-07 13:45:33 +00:00
|
|
|
defp restrict_pinned(query, %{"pinned" => "true", "pinned_activity_ids" => ids}) do
|
|
|
|
from(activity in query, where: activity.id in ^ids)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_pinned(query, _), do: query
|
|
|
|
|
2019-03-11 15:57:54 +00:00
|
|
|
defp restrict_muted_reblogs(query, %{"muting_user" => %User{info: info}}) do
|
|
|
|
muted_reblogs = info.muted_reblogs || []
|
|
|
|
|
|
|
|
from(
|
|
|
|
activity in query,
|
2019-03-27 09:28:53 +00:00
|
|
|
where:
|
|
|
|
fragment(
|
|
|
|
"not ( ?->>'type' = 'Announce' and ? = ANY(?))",
|
|
|
|
activity.data,
|
|
|
|
activity.actor,
|
|
|
|
^muted_reblogs
|
|
|
|
)
|
2019-03-11 15:57:54 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp restrict_muted_reblogs(query, _), do: query
|
|
|
|
|
2019-05-22 18:49:19 +00:00
|
|
|
defp exclude_poll_votes(query, %{"include_poll_votes" => "true"}), do: query
|
|
|
|
|
|
|
|
defp exclude_poll_votes(query, _) do
|
|
|
|
if has_named_binding?(query, :object) do
|
|
|
|
from([activity, object: o] in query,
|
|
|
|
where: fragment("not(?->>'type' = ?)", o.data, "Answer")
|
|
|
|
)
|
|
|
|
else
|
|
|
|
query
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-23 01:09:12 +00:00
|
|
|
defp maybe_preload_objects(query, %{"skip_preload" => true}), do: query
|
|
|
|
|
|
|
|
defp maybe_preload_objects(query, _) do
|
|
|
|
query
|
|
|
|
|> Activity.with_preloaded_object()
|
|
|
|
end
|
|
|
|
|
2019-05-07 15:00:50 +00:00
|
|
|
defp maybe_preload_bookmarks(query, %{"skip_preload" => true}), do: query
|
|
|
|
|
|
|
|
defp maybe_preload_bookmarks(query, opts) do
|
|
|
|
query
|
|
|
|
|> Activity.with_preloaded_bookmark(opts["user"])
|
|
|
|
end
|
|
|
|
|
2019-05-20 16:35:46 +00:00
|
|
|
defp maybe_set_thread_muted_field(query, %{"skip_preload" => true}), do: query
|
|
|
|
|
|
|
|
defp maybe_set_thread_muted_field(query, opts) do
|
|
|
|
query
|
|
|
|
|> Activity.with_set_thread_muted_field(opts["user"])
|
|
|
|
end
|
|
|
|
|
2019-05-07 19:30:27 +00:00
|
|
|
defp maybe_order(query, %{order: :desc}) do
|
|
|
|
query
|
|
|
|
|> order_by(desc: :id)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_order(query, %{order: :asc}) do
|
|
|
|
query
|
|
|
|
|> order_by(asc: :id)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_order(query, _), do: query
|
|
|
|
|
2018-02-18 14:32:11 +00:00
|
|
|
def fetch_activities_query(recipients, opts \\ %{}) do
|
2019-03-25 22:13:58 +00:00
|
|
|
base_query = from(activity in Activity)
|
2019-06-04 12:20:24 +00:00
|
|
|
|
|
|
|
config = %{
|
|
|
|
skip_thread_containment: Config.get([:instance, :skip_thread_containment])
|
|
|
|
}
|
2017-03-29 00:05:51 +00:00
|
|
|
|
2017-05-16 13:31:11 +00:00
|
|
|
base_query
|
2019-03-23 01:09:12 +00:00
|
|
|
|> maybe_preload_objects(opts)
|
2019-05-07 15:00:50 +00:00
|
|
|
|> maybe_preload_bookmarks(opts)
|
2019-05-20 16:35:46 +00:00
|
|
|
|> maybe_set_thread_muted_field(opts)
|
2019-05-07 19:30:27 +00:00
|
|
|
|> maybe_order(opts)
|
2018-02-18 14:20:36 +00:00
|
|
|
|> restrict_recipients(recipients, opts["user"])
|
2017-09-14 11:22:09 +00:00
|
|
|
|> restrict_tag(opts)
|
2019-01-10 15:44:28 +00:00
|
|
|
|> restrict_tag_reject(opts)
|
|
|
|
|> restrict_tag_all(opts)
|
2017-05-16 13:31:11 +00:00
|
|
|
|> restrict_since(opts)
|
|
|
|
|> restrict_local(opts)
|
|
|
|
|> restrict_actor(opts)
|
2017-09-09 10:05:17 +00:00
|
|
|
|> restrict_type(opts)
|
2019-05-16 19:09:18 +00:00
|
|
|
|> restrict_state(opts)
|
2017-09-17 11:09:49 +00:00
|
|
|
|> restrict_favorited_by(opts)
|
2017-11-02 21:37:26 +00:00
|
|
|
|> restrict_blocked(opts)
|
2018-09-05 20:49:15 +00:00
|
|
|
|> restrict_muted(opts)
|
2017-11-14 13:41:16 +00:00
|
|
|
|> restrict_media(opts)
|
2018-05-11 02:17:33 +00:00
|
|
|
|> restrict_visibility(opts)
|
2019-06-04 12:04:36 +00:00
|
|
|
|> restrict_thread_visibility(opts, config)
|
2018-06-18 03:18:39 +00:00
|
|
|
|> restrict_replies(opts)
|
2018-12-27 05:30:01 +00:00
|
|
|
|> restrict_reblogs(opts)
|
2019-01-07 13:45:33 +00:00
|
|
|
|> restrict_pinned(opts)
|
2019-03-11 15:57:54 +00:00
|
|
|
|> restrict_muted_reblogs(opts)
|
2019-04-11 10:22:42 +00:00
|
|
|
|> Activity.restrict_deactivated_users()
|
2019-06-01 13:07:01 +00:00
|
|
|
|> exclude_poll_votes(opts)
|
2018-02-18 14:32:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_activities(recipients, opts \\ %{}) do
|
|
|
|
fetch_activities_query(recipients, opts)
|
2019-03-25 22:13:58 +00:00
|
|
|
|> Pagination.fetch_paginated(opts)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.reverse()
|
2017-04-21 16:54:21 +00:00
|
|
|
end
|
|
|
|
|
2019-05-31 12:25:17 +00:00
|
|
|
def fetch_activities_bounded_query(query, recipients, recipients_with_public) do
|
|
|
|
from(activity in query,
|
|
|
|
where:
|
|
|
|
fragment("? && ?", activity.recipients, ^recipients) or
|
|
|
|
(fragment("? && ?", activity.recipients, ^recipients_with_public) and
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public" in activity.recipients)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_activities_bounded(recipients, recipients_with_public, opts \\ %{}) do
|
2018-08-29 08:51:23 +00:00
|
|
|
fetch_activities_query([], opts)
|
2019-05-31 12:25:17 +00:00
|
|
|
|> fetch_activities_bounded_query(recipients, recipients_with_public)
|
2019-03-25 22:13:58 +00:00
|
|
|
|> Pagination.fetch_paginated(opts)
|
2018-08-29 08:51:23 +00:00
|
|
|
|> Enum.reverse()
|
|
|
|
end
|
|
|
|
|
2018-11-23 16:40:45 +00:00
|
|
|
def upload(file, opts \\ []) do
|
|
|
|
with {:ok, data} <- Upload.store(file, opts) do
|
2018-12-06 07:26:17 +00:00
|
|
|
obj_data =
|
|
|
|
if opts[:actor] do
|
|
|
|
Map.put(data, "actor", opts[:actor])
|
|
|
|
else
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
2018-12-05 10:37:06 +00:00
|
|
|
Repo.insert(%Object{data: obj_data})
|
2018-10-29 16:30:12 +00:00
|
|
|
end
|
2017-03-29 00:05:51 +00:00
|
|
|
end
|
2017-12-12 17:07:14 +00:00
|
|
|
|
2019-05-22 04:33:10 +00:00
|
|
|
defp object_to_user_data(data) do
|
2018-03-30 13:01:53 +00:00
|
|
|
avatar =
|
|
|
|
data["icon"]["url"] &&
|
|
|
|
%{
|
|
|
|
"type" => "Image",
|
|
|
|
"url" => [%{"href" => data["icon"]["url"]}]
|
|
|
|
}
|
|
|
|
|
|
|
|
banner =
|
|
|
|
data["image"]["url"] &&
|
|
|
|
%{
|
|
|
|
"type" => "Image",
|
|
|
|
"url" => [%{"href" => data["image"]["url"]}]
|
|
|
|
}
|
2018-02-25 15:14:25 +00:00
|
|
|
|
2018-05-25 04:15:42 +00:00
|
|
|
locked = data["manuallyApprovesFollowers"] || false
|
2018-05-19 07:30:02 +00:00
|
|
|
data = Transmogrifier.maybe_fix_user_object(data)
|
|
|
|
|
2018-02-25 15:14:25 +00:00
|
|
|
user_data = %{
|
|
|
|
ap_id: data["id"],
|
|
|
|
info: %{
|
|
|
|
"ap_enabled" => true,
|
|
|
|
"source_data" => data,
|
2018-05-25 04:15:42 +00:00
|
|
|
"banner" => banner,
|
|
|
|
"locked" => locked
|
2018-02-25 15:14:25 +00:00
|
|
|
},
|
|
|
|
avatar: avatar,
|
|
|
|
name: data["name"],
|
|
|
|
follower_address: data["followers"],
|
|
|
|
bio: data["summary"]
|
|
|
|
}
|
|
|
|
|
2018-08-06 06:50:18 +00:00
|
|
|
# nickname can be nil because of virtual actors
|
|
|
|
user_data =
|
|
|
|
if data["preferredUsername"] do
|
2018-08-06 08:26:36 +00:00
|
|
|
Map.put(
|
|
|
|
user_data,
|
|
|
|
:nickname,
|
|
|
|
"#{data["preferredUsername"]}@#{URI.parse(data["id"]).host}"
|
|
|
|
)
|
2018-08-06 06:50:18 +00:00
|
|
|
else
|
|
|
|
Map.put(user_data, :nickname, nil)
|
|
|
|
end
|
|
|
|
|
2018-02-25 15:14:25 +00:00
|
|
|
{:ok, user_data}
|
|
|
|
end
|
|
|
|
|
2019-05-22 04:33:10 +00:00
|
|
|
def user_data_from_user_object(data) do
|
|
|
|
with {:ok, data} <- MRF.filter(data),
|
|
|
|
{:ok, data} <- object_to_user_data(data) do
|
|
|
|
{:ok, data}
|
|
|
|
else
|
|
|
|
e -> {:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-21 21:21:40 +00:00
|
|
|
def fetch_and_prepare_user_from_ap_id(ap_id) do
|
2019-05-22 04:33:10 +00:00
|
|
|
with {:ok, data} <- Fetcher.fetch_and_contain_remote_object_from_id(ap_id),
|
|
|
|
{:ok, data} <- user_data_from_user_object(data) do
|
|
|
|
{:ok, data}
|
2018-02-23 14:00:19 +00:00
|
|
|
else
|
2018-03-19 18:18:52 +00:00
|
|
|
e -> Logger.error("Could not decode user at fetch #{ap_id}, #{inspect(e)}")
|
2018-02-21 21:21:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def make_user_from_ap_id(ap_id) do
|
2019-04-22 07:20:43 +00:00
|
|
|
if _user = User.get_cached_by_ap_id(ap_id) do
|
2018-02-21 21:21:40 +00:00
|
|
|
Transmogrifier.upgrade_user_from_ap_id(ap_id)
|
|
|
|
else
|
|
|
|
with {:ok, data} <- fetch_and_prepare_user_from_ap_id(ap_id) do
|
|
|
|
User.insert_or_update_user(data)
|
2018-02-18 22:11:31 +00:00
|
|
|
else
|
2018-02-25 15:52:33 +00:00
|
|
|
e -> {:error, e}
|
2018-02-18 22:11:31 +00:00
|
|
|
end
|
2018-02-11 16:20:02 +00:00
|
|
|
end
|
|
|
|
end
|
2018-02-11 19:43:33 +00:00
|
|
|
|
2018-02-18 11:27:05 +00:00
|
|
|
def make_user_from_nickname(nickname) do
|
|
|
|
with {:ok, %{"ap_id" => ap_id}} when not is_nil(ap_id) <- WebFinger.finger(nickname) do
|
|
|
|
make_user_from_ap_id(ap_id)
|
2018-02-25 15:52:33 +00:00
|
|
|
else
|
2018-03-19 17:56:49 +00:00
|
|
|
_e -> {:error, "No AP id in WebFinger"}
|
2018-02-18 11:27:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-26 06:16:51 +00:00
|
|
|
# filter out broken threads
|
|
|
|
def contain_broken_threads(%Activity{} = activity, %User{} = user) do
|
|
|
|
entire_thread_visible_for_user?(activity, user)
|
|
|
|
end
|
|
|
|
|
|
|
|
# do post-processing on a specific activity
|
|
|
|
def contain_activity(%Activity{} = activity, %User{} = user) do
|
2019-03-11 15:57:54 +00:00
|
|
|
contain_broken_threads(activity, user)
|
2018-10-26 06:16:51 +00:00
|
|
|
end
|
|
|
|
|
2019-05-08 16:19:20 +00:00
|
|
|
def fetch_direct_messages_query do
|
2019-05-08 15:37:00 +00:00
|
|
|
Activity
|
|
|
|
|> restrict_type(%{"type" => "Create"})
|
|
|
|
|> restrict_visibility(%{visibility: "direct"})
|
2019-05-09 14:39:28 +00:00
|
|
|
|> order_by([activity], asc: activity.id)
|
2019-05-08 15:37:00 +00:00
|
|
|
end
|
2017-03-21 08:21:52 +00:00
|
|
|
end
|