2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-09 13:56:51 +02:00
|
|
|
defmodule Pleroma.Web.CommonAPI do
|
2019-02-09 16:16:26 +01:00
|
|
|
alias Pleroma.Activity
|
2019-08-02 15:05:27 +02:00
|
|
|
alias Pleroma.Conversation.Participation
|
2020-04-20 12:29:19 +02:00
|
|
|
alias Pleroma.Formatter
|
2019-02-09 16:16:26 +01:00
|
|
|
alias Pleroma.Object
|
2019-02-11 12:10:10 +01:00
|
|
|
alias Pleroma.ThreadMute
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.User
|
2019-11-19 21:22:10 +01:00
|
|
|
alias Pleroma.UserRelationship
|
2017-09-09 13:56:51 +02:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-10-16 16:16:39 +02:00
|
|
|
alias Pleroma.Web.ActivityPub.Builder
|
2019-10-23 11:52:27 +02:00
|
|
|
alias Pleroma.Web.ActivityPub.Pipeline
|
2018-12-14 06:56:49 +01:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-06-29 21:24:03 +02:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2020-10-02 19:00:50 +02:00
|
|
|
alias Pleroma.Web.CommonAPI.ActivityDraft
|
2017-09-15 14:17:36 +02:00
|
|
|
|
2019-07-10 11:25:58 +02:00
|
|
|
import Pleroma.Web.Gettext
|
2017-09-15 14:17:36 +02:00
|
|
|
import Pleroma.Web.CommonAPI.Utils
|
2017-09-09 13:56:51 +02:00
|
|
|
|
2019-10-05 14:53:50 +02:00
|
|
|
require Pleroma.Constants
|
2019-10-16 16:16:39 +02:00
|
|
|
require Logger
|
2019-10-05 14:53:50 +02:00
|
|
|
|
2020-06-25 11:44:04 +02:00
|
|
|
def block(blocker, blocked) do
|
|
|
|
with {:ok, block_data, _} <- Builder.block(blocker, blocked),
|
|
|
|
{:ok, block, _} <- Pipeline.common_pipeline(block_data, local: true) do
|
|
|
|
{:ok, block}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-06 16:12:36 +02:00
|
|
|
def post_chat_message(%User{} = user, %User{} = recipient, content, opts \\ []) do
|
2020-05-13 15:31:28 +02:00
|
|
|
with maybe_attachment <- opts[:media_id] && Object.get_by_id(opts[:media_id]),
|
|
|
|
:ok <- validate_chat_content_length(content, !!maybe_attachment),
|
2020-04-29 13:45:50 +02:00
|
|
|
{_, {:ok, chat_message_data, _meta}} <-
|
|
|
|
{:build_object,
|
|
|
|
Builder.chat_message(
|
|
|
|
user,
|
|
|
|
recipient.ap_id,
|
2020-05-13 15:31:28 +02:00
|
|
|
content |> format_chat_content,
|
2020-05-06 16:12:36 +02:00
|
|
|
attachment: maybe_attachment
|
2020-04-29 13:45:50 +02:00
|
|
|
)},
|
|
|
|
{_, {:ok, create_activity_data, _meta}} <-
|
|
|
|
{:build_create_activity, Builder.create(user, chat_message_data, [recipient.ap_id])},
|
|
|
|
{_, {:ok, %Activity{} = activity, _meta}} <-
|
|
|
|
{:common_pipeline,
|
|
|
|
Pipeline.common_pipeline(create_activity_data,
|
2020-10-31 03:50:48 +01:00
|
|
|
local: true,
|
|
|
|
idempotency_key: opts[:idempotency_key]
|
2020-04-29 13:45:50 +02:00
|
|
|
)} do
|
|
|
|
{:ok, activity}
|
2020-09-14 14:07:22 +02:00
|
|
|
else
|
|
|
|
{:common_pipeline, {:reject, _} = e} -> e
|
|
|
|
e -> e
|
2020-05-04 12:53:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-13 15:31:28 +02:00
|
|
|
defp format_chat_content(nil), do: nil
|
|
|
|
|
|
|
|
defp format_chat_content(content) do
|
2020-05-30 12:30:31 +02:00
|
|
|
{text, _, _} =
|
|
|
|
content
|
|
|
|
|> Formatter.html_escape("text/plain")
|
|
|
|
|> Formatter.linkify()
|
2020-06-01 15:14:22 +02:00
|
|
|
|> (fn {text, mentions, tags} ->
|
|
|
|
{String.replace(text, ~r/\r?\n/, "<br>"), mentions, tags}
|
|
|
|
end).()
|
2020-05-30 12:30:31 +02:00
|
|
|
|
|
|
|
text
|
2020-05-13 15:31:28 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
defp validate_chat_content_length(_, true), do: :ok
|
|
|
|
defp validate_chat_content_length(nil, false), do: {:error, :no_content}
|
|
|
|
|
|
|
|
defp validate_chat_content_length(content, _) do
|
2020-05-04 12:53:40 +02:00
|
|
|
if String.length(content) <= Pleroma.Config.get([:instance, :chat_limit]) do
|
|
|
|
:ok
|
2020-04-29 13:45:50 +02:00
|
|
|
else
|
2020-05-04 12:53:40 +02:00
|
|
|
{:error, :content_too_long}
|
2020-04-09 13:20:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-05 18:00:37 +02:00
|
|
|
def unblock(blocker, blocked) do
|
2020-05-16 12:28:24 +02:00
|
|
|
with {_, %Activity{} = block} <- {:fetch_block, Utils.fetch_latest_block(blocker, blocked)},
|
2020-05-05 18:00:37 +02:00
|
|
|
{:ok, unblock_data, _} <- Builder.undo(blocker, block),
|
|
|
|
{:ok, unblock, _} <- Pipeline.common_pipeline(unblock_data, local: true) do
|
|
|
|
{:ok, unblock}
|
2020-05-16 12:28:24 +02:00
|
|
|
else
|
|
|
|
{:fetch_block, nil} ->
|
|
|
|
if User.blocks?(blocker, blocked) do
|
|
|
|
User.unblock(blocker, blocked)
|
|
|
|
{:ok, :no_activity}
|
|
|
|
else
|
|
|
|
{:error, :not_blocking}
|
|
|
|
end
|
|
|
|
|
|
|
|
e ->
|
|
|
|
e
|
2020-05-05 18:00:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-03 22:50:00 +01:00
|
|
|
def follow(follower, followed) do
|
2019-09-24 10:56:20 +02:00
|
|
|
timeout = Pleroma.Config.get([:activitypub, :follow_handshake_timeout])
|
|
|
|
|
2020-07-08 15:40:56 +02:00
|
|
|
with {:ok, follow_data, _} <- Builder.follow(follower, followed),
|
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(follow_data, local: true),
|
2019-09-24 10:56:20 +02:00
|
|
|
{:ok, follower, followed} <- User.wait_and_refresh(timeout, follower, followed) do
|
2020-07-08 15:40:56 +02:00
|
|
|
if activity.data["state"] == "reject" do
|
|
|
|
{:error, :rejected}
|
|
|
|
else
|
|
|
|
{:ok, follower, followed, activity}
|
|
|
|
end
|
2019-03-03 22:50:00 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-13 07:04:49 +01:00
|
|
|
def unfollow(follower, unfollowed) do
|
|
|
|
with {:ok, follower, _follow_activity} <- User.unfollow(follower, unfollowed),
|
2019-07-14 21:25:03 +02:00
|
|
|
{:ok, _activity} <- ActivityPub.unfollow(follower, unfollowed),
|
2019-11-20 13:46:11 +01:00
|
|
|
{:ok, _subscription} <- User.unsubscribe(follower, unfollowed) do
|
2019-03-13 07:04:49 +01:00
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def accept_follow_request(follower, followed) do
|
2020-04-27 16:41:38 +02:00
|
|
|
with %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
2020-08-11 17:43:16 +02:00
|
|
|
{:ok, accept_data, _} <- Builder.accept(followed, follow_activity),
|
|
|
|
{:ok, _activity, _} <- Pipeline.common_pipeline(accept_data, local: true) do
|
2019-03-13 07:04:49 +01:00
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_follow_request(follower, followed) do
|
|
|
|
with %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
2020-08-12 15:07:46 +02:00
|
|
|
{:ok, reject_data, _} <- Builder.reject(followed, follow_activity),
|
|
|
|
{:ok, _activity, _} <- Pipeline.common_pipeline(reject_data, local: true) do
|
2019-03-13 07:04:49 +01:00
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 13:56:51 +02:00
|
|
|
def delete(activity_id, user) do
|
2020-05-11 15:06:23 +02:00
|
|
|
with {_, %Activity{data: %{"object" => _, "type" => "Create"}} = activity} <-
|
|
|
|
{:find_activity, Activity.get_by_id(activity_id)},
|
|
|
|
{_, %Object{} = object, _} <-
|
2021-01-04 13:38:31 +01:00
|
|
|
{:find_object, Object.normalize(activity, fetch: false), activity},
|
2019-03-08 18:21:56 +01:00
|
|
|
true <- User.superuser?(user) || user.ap_id == object.data["actor"],
|
2020-04-30 16:15:38 +02:00
|
|
|
{:ok, delete_data, _} <- Builder.delete(user, object.data["id"]),
|
|
|
|
{:ok, delete, _} <- Pipeline.common_pipeline(delete_data, local: true) do
|
2017-09-09 13:56:51 +02:00
|
|
|
{:ok, delete}
|
2019-05-16 21:09:18 +02:00
|
|
|
else
|
2020-05-11 15:06:23 +02:00
|
|
|
{:find_activity, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
{:find_object, nil, %Activity{data: %{"actor" => actor, "object" => object}}} ->
|
|
|
|
# We have the create activity, but not the object, it was probably pruned.
|
|
|
|
# Insert a tombstone and try again
|
|
|
|
with {:ok, tombstone_data, _} <- Builder.tombstone(actor, object),
|
|
|
|
{:ok, _tombstone} <- Object.create(tombstone_data) do
|
|
|
|
delete(activity_id, user)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
Logger.error(
|
|
|
|
"Could not insert tombstone for missing object on deletion. Object is #{object}."
|
|
|
|
)
|
|
|
|
|
|
|
|
{:error, dgettext("errors", "Could not delete")}
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, dgettext("errors", "Could not delete")}
|
2017-09-09 13:56:51 +02:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 17:48:57 +02:00
|
|
|
|
2020-04-23 13:33:30 +02:00
|
|
|
def repeat(id, user, params \\ %{}) do
|
2020-05-20 15:44:37 +02:00
|
|
|
with %Activity{data: %{"type" => "Create"}} = activity <- Activity.get_by_id(id),
|
2021-01-04 13:38:31 +01:00
|
|
|
object = %Object{} <- Object.normalize(activity, fetch: false),
|
2020-05-20 15:44:37 +02:00
|
|
|
{_, nil} <- {:existing_announce, Utils.get_existing_announce(user.ap_id, object)},
|
|
|
|
public = public_announce?(object, params),
|
|
|
|
{:ok, announce, _} <- Builder.announce(user, object, public: public),
|
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(announce, local: true) do
|
|
|
|
{:ok, activity}
|
2017-09-09 17:48:57 +02:00
|
|
|
else
|
2020-05-20 15:44:37 +02:00
|
|
|
{:existing_announce, %Activity{} = announce} ->
|
|
|
|
{:ok, announce}
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, :not_found}
|
2017-09-09 17:48:57 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-23 13:33:30 +02:00
|
|
|
def unrepeat(id, user) do
|
|
|
|
with {_, %Activity{data: %{"type" => "Create"}} = activity} <-
|
2020-05-05 16:42:34 +02:00
|
|
|
{:find_activity, Activity.get_by_id(id)},
|
2021-01-04 13:38:31 +01:00
|
|
|
%Object{} = note <- Object.normalize(activity, fetch: false),
|
2020-05-05 16:42:34 +02:00
|
|
|
%Activity{} = announce <- Utils.get_existing_announce(user.ap_id, note),
|
|
|
|
{:ok, undo, _} <- Builder.undo(user, announce),
|
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(undo, local: true) do
|
|
|
|
{:ok, activity}
|
2018-04-14 09:39:16 +02:00
|
|
|
else
|
2020-03-04 18:09:06 +01:00
|
|
|
{:find_activity, _} -> {:error, :not_found}
|
2019-09-24 10:56:20 +02:00
|
|
|
_ -> {:error, dgettext("errors", "Could not unrepeat")}
|
2018-04-14 09:39:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-31 17:56:05 +02:00
|
|
|
@spec favorite(User.t(), binary()) :: {:ok, Activity.t() | :already_liked} | {:error, any()}
|
2019-10-16 16:16:39 +02:00
|
|
|
def favorite(%User{} = user, id) do
|
2020-03-31 17:56:05 +02:00
|
|
|
case favorite_helper(user, id) do
|
|
|
|
{:ok, _} = res ->
|
|
|
|
res
|
|
|
|
|
|
|
|
{:error, :not_found} = res ->
|
|
|
|
res
|
|
|
|
|
|
|
|
{:error, e} ->
|
|
|
|
Logger.error("Could not favorite #{id}. Error: #{inspect(e, pretty: true)}")
|
|
|
|
{:error, dgettext("errors", "Could not favorite")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def favorite_helper(user, id) do
|
2019-10-16 16:16:39 +02:00
|
|
|
with {_, %Activity{object: object}} <- {:find_object, Activity.get_by_id_with_object(id)},
|
|
|
|
{_, {:ok, like_object, meta}} <- {:build_object, Builder.like(user, object)},
|
|
|
|
{_, {:ok, %Activity{} = activity, _meta}} <-
|
|
|
|
{:common_pipeline,
|
2019-10-23 11:52:27 +02:00
|
|
|
Pipeline.common_pipeline(like_object, Keyword.put(meta, :local, true))} do
|
2019-10-16 16:16:39 +02:00
|
|
|
{:ok, activity}
|
2017-09-09 18:09:37 +02:00
|
|
|
else
|
2020-03-19 18:00:55 +01:00
|
|
|
{:find_object, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
2021-01-12 09:30:22 +01:00
|
|
|
{:common_pipeline, {:error, {:validate, {:error, changeset}}}} = e ->
|
2020-03-19 18:00:55 +01:00
|
|
|
if {:object, {"already liked by this actor", []}} in changeset.errors do
|
|
|
|
{:ok, :already_liked}
|
|
|
|
else
|
2020-03-31 17:56:05 +02:00
|
|
|
{:error, e}
|
2020-03-19 18:00:55 +01:00
|
|
|
end
|
|
|
|
|
2019-10-16 16:16:39 +02:00
|
|
|
e ->
|
2020-03-31 17:56:05 +02:00
|
|
|
{:error, e}
|
2017-09-09 18:09:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-23 13:33:30 +02:00
|
|
|
def unfavorite(id, user) do
|
|
|
|
with {_, %Activity{data: %{"type" => "Create"}} = activity} <-
|
2020-05-05 15:08:41 +02:00
|
|
|
{:find_activity, Activity.get_by_id(id)},
|
2021-01-04 13:38:31 +01:00
|
|
|
%Object{} = note <- Object.normalize(activity, fetch: false),
|
2020-05-05 15:08:41 +02:00
|
|
|
%Activity{} = like <- Utils.get_existing_like(user.ap_id, note),
|
|
|
|
{:ok, undo, _} <- Builder.undo(user, like),
|
2020-05-05 16:17:09 +02:00
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(undo, local: true) do
|
2020-05-05 15:08:41 +02:00
|
|
|
{:ok, activity}
|
2017-09-09 18:30:02 +02:00
|
|
|
else
|
2020-03-04 18:09:06 +01:00
|
|
|
{:find_activity, _} -> {:error, :not_found}
|
2019-09-24 10:56:20 +02:00
|
|
|
_ -> {:error, dgettext("errors", "Could not unfavorite")}
|
2017-09-09 18:30:02 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-28 00:56:28 +02:00
|
|
|
def react_with_emoji(id, user, emoji) do
|
|
|
|
with %Activity{} = activity <- Activity.get_by_id(id),
|
2021-01-04 13:38:31 +01:00
|
|
|
object <- Object.normalize(activity, fetch: false),
|
2020-05-05 12:28:28 +02:00
|
|
|
{:ok, emoji_react, _} <- Builder.emoji_react(user, object, emoji),
|
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(emoji_react, local: true) do
|
|
|
|
{:ok, activity}
|
2019-08-28 00:56:28 +02:00
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, dgettext("errors", "Could not add reaction emoji")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-02 15:38:57 +02:00
|
|
|
def unreact_with_emoji(id, user, emoji) do
|
2020-05-05 16:17:09 +02:00
|
|
|
with %Activity{} = reaction_activity <- Utils.get_latest_reaction(id, user, emoji),
|
|
|
|
{:ok, undo, _} <- Builder.undo(user, reaction_activity),
|
|
|
|
{:ok, activity, _} <- Pipeline.common_pipeline(undo, local: true) do
|
|
|
|
{:ok, activity}
|
2019-10-02 15:38:57 +02:00
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, dgettext("errors", "Could not remove reaction emoji")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 10:56:20 +02:00
|
|
|
def vote(user, %{data: %{"type" => "Question"}} = object, choices) do
|
|
|
|
with :ok <- validate_not_author(object, user),
|
|
|
|
:ok <- validate_existing_votes(user, object),
|
|
|
|
{:ok, options, choices} <- normalize_and_validate_choices(choices, object) do
|
2019-06-01 15:07:01 +02:00
|
|
|
answer_activities =
|
|
|
|
Enum.map(choices, fn index ->
|
2020-06-18 04:05:42 +02:00
|
|
|
{:ok, answer_object, _meta} =
|
|
|
|
Builder.answer(user, object, Enum.at(options, index)["name"])
|
|
|
|
|
|
|
|
{:ok, activity_data, _meta} = Builder.create(user, answer_object, [])
|
|
|
|
|
|
|
|
{:ok, activity, _meta} =
|
|
|
|
activity_data
|
|
|
|
|> Map.put("cc", answer_object["cc"])
|
|
|
|
|> Map.put("context", answer_object["context"])
|
|
|
|
|> Pipeline.common_pipeline(local: true)
|
|
|
|
|
|
|
|
# TODO: Do preload of Pleroma.Object in Pipeline
|
|
|
|
Activity.normalize(activity.data)
|
2019-06-01 15:07:01 +02:00
|
|
|
end)
|
|
|
|
|
2019-06-02 22:24:48 +02:00
|
|
|
object = Object.get_cached_by_ap_id(object.data["id"])
|
2019-06-01 15:07:01 +02:00
|
|
|
{:ok, answer_activities, object}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 10:56:20 +02:00
|
|
|
defp validate_not_author(%{data: %{"actor" => ap_id}}, %{ap_id: ap_id}),
|
|
|
|
do: {:error, dgettext("errors", "Poll's author can't vote")}
|
|
|
|
|
|
|
|
defp validate_not_author(_, _), do: :ok
|
|
|
|
|
|
|
|
defp validate_existing_votes(%{ap_id: ap_id}, object) do
|
|
|
|
if Utils.get_existing_votes(ap_id, object) == [] do
|
|
|
|
:ok
|
2019-06-01 15:07:01 +02:00
|
|
|
else
|
2019-09-24 10:56:20 +02:00
|
|
|
{:error, dgettext("errors", "Already voted")}
|
2019-06-01 15:07:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-15 00:30:45 +02:00
|
|
|
defp get_options_and_max_count(%{data: %{"anyOf" => any_of}})
|
|
|
|
when is_list(any_of) and any_of != [],
|
|
|
|
do: {any_of, Enum.count(any_of)}
|
|
|
|
|
|
|
|
defp get_options_and_max_count(%{data: %{"oneOf" => one_of}})
|
|
|
|
when is_list(one_of) and one_of != [],
|
|
|
|
do: {one_of, 1}
|
2019-06-01 15:07:01 +02:00
|
|
|
|
2019-09-24 10:56:20 +02:00
|
|
|
defp normalize_and_validate_choices(choices, object) do
|
|
|
|
choices = Enum.map(choices, fn i -> if is_binary(i), do: String.to_integer(i), else: i end)
|
|
|
|
{options, max_count} = get_options_and_max_count(object)
|
|
|
|
count = Enum.count(options)
|
|
|
|
|
|
|
|
with {_, true} <- {:valid_choice, Enum.all?(choices, &(&1 < count))},
|
|
|
|
{_, true} <- {:count_check, Enum.count(choices) <= max_count} do
|
|
|
|
{:ok, options, choices}
|
|
|
|
else
|
|
|
|
{:valid_choice, _} -> {:error, dgettext("errors", "Invalid indices")}
|
|
|
|
{:count_check, _} -> {:error, dgettext("errors", "Too many choices")}
|
|
|
|
end
|
2019-08-02 15:05:27 +02:00
|
|
|
end
|
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
def public_announce?(_, %{visibility: visibility})
|
2019-10-01 18:38:23 +02:00
|
|
|
when visibility in ~w{public unlisted private direct},
|
|
|
|
do: visibility in ~w(public unlisted)
|
|
|
|
|
2019-10-02 10:48:34 +02:00
|
|
|
def public_announce?(object, _) do
|
2019-10-01 18:38:23 +02:00
|
|
|
Visibility.is_public?(object)
|
|
|
|
end
|
|
|
|
|
2019-09-24 11:10:54 +02:00
|
|
|
def get_visibility(_, _, %Participation{}), do: {"direct", "direct"}
|
2019-08-02 15:05:27 +02:00
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
def get_visibility(%{visibility: visibility}, in_reply_to, _)
|
2020-11-11 15:47:57 +01:00
|
|
|
when visibility in ~w{public local unlisted private direct},
|
2019-05-15 16:35:33 +02:00
|
|
|
do: {visibility, get_replied_to_visibility(in_reply_to)}
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
def get_visibility(%{visibility: "list:" <> list_id}, in_reply_to, _) do
|
2019-05-16 12:54:24 +02:00
|
|
|
visibility = {:list, String.to_integer(list_id)}
|
|
|
|
{visibility, get_replied_to_visibility(in_reply_to)}
|
2019-05-01 11:11:17 +02:00
|
|
|
end
|
|
|
|
|
2019-08-02 15:05:27 +02:00
|
|
|
def get_visibility(_, in_reply_to, _) when not is_nil(in_reply_to) do
|
2019-05-15 16:35:33 +02:00
|
|
|
visibility = get_replied_to_visibility(in_reply_to)
|
|
|
|
{visibility, visibility}
|
2018-02-18 15:04:26 +01:00
|
|
|
end
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2019-08-02 15:05:27 +02:00
|
|
|
def get_visibility(_, in_reply_to, _), do: {"public", get_replied_to_visibility(in_reply_to)}
|
2018-02-18 15:04:26 +01:00
|
|
|
|
2019-05-15 16:30:08 +02:00
|
|
|
def get_replied_to_visibility(nil), do: nil
|
2018-08-27 00:37:36 +02:00
|
|
|
|
2019-05-15 16:30:08 +02:00
|
|
|
def get_replied_to_visibility(activity) do
|
2021-01-04 13:38:31 +01:00
|
|
|
with %Object{} = object <- Object.normalize(activity, fetch: false) do
|
2019-09-24 10:56:20 +02:00
|
|
|
Visibility.get_visibility(object)
|
2018-08-27 00:37:36 +02:00
|
|
|
end
|
2018-02-18 15:04:26 +01:00
|
|
|
end
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2019-09-24 11:10:54 +02:00
|
|
|
def check_expiry_date({:ok, nil} = res), do: res
|
2019-08-24 17:22:48 +02:00
|
|
|
|
2019-09-24 11:10:54 +02:00
|
|
|
def check_expiry_date({:ok, in_seconds}) do
|
2020-08-22 19:46:01 +02:00
|
|
|
expiry = DateTime.add(DateTime.utc_now(), in_seconds)
|
2019-07-23 16:33:45 +02:00
|
|
|
|
2020-08-22 19:46:01 +02:00
|
|
|
if Pleroma.Workers.PurgeExpiredActivity.expires_late_enough?(expiry) do
|
2019-07-23 16:33:45 +02:00
|
|
|
{:ok, expiry}
|
|
|
|
else
|
|
|
|
{:error, "Expiry date is too soon"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 11:10:54 +02:00
|
|
|
def check_expiry_date(expiry_str) do
|
2019-08-24 17:22:48 +02:00
|
|
|
Ecto.Type.cast(:integer, expiry_str)
|
|
|
|
|> check_expiry_date()
|
|
|
|
end
|
|
|
|
|
2020-05-19 13:53:18 +02:00
|
|
|
def listen(user, data) do
|
2020-10-02 19:00:50 +02:00
|
|
|
with {:ok, draft} <- ActivityDraft.listen(user, data) do
|
|
|
|
ActivityPub.listen(draft.changes)
|
2019-09-28 02:24:32 +02:00
|
|
|
end
|
|
|
|
end
|
2019-07-10 11:25:58 +02:00
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
def post(user, %{status: _} = data) do
|
2020-10-02 19:00:50 +02:00
|
|
|
with {:ok, draft} <- ActivityDraft.create(user, data) do
|
2020-02-12 19:51:26 +01:00
|
|
|
ActivityPub.create(draft.changes, draft.preview?)
|
2017-09-09 17:48:57 +02:00
|
|
|
end
|
|
|
|
end
|
2019-07-10 11:25:58 +02:00
|
|
|
|
2021-02-03 14:09:28 +01:00
|
|
|
@spec pin(String.t(), User.t()) :: {:ok, Activity.t()} | {:error, term()}
|
2021-03-03 13:41:05 +01:00
|
|
|
def pin(id, %User{} = user) do
|
2021-02-03 14:09:28 +01:00
|
|
|
with %Activity{} = activity <- create_activity_by_id(id),
|
2021-03-03 13:41:05 +01:00
|
|
|
true <- activity_belongs_to_actor(activity, user.ap_id),
|
2021-02-03 14:09:28 +01:00
|
|
|
true <- object_type_is_allowed_for_pin(activity.object),
|
|
|
|
true <- activity_is_public(activity),
|
|
|
|
{:ok, pin_data, _} <- Builder.pin(user, activity.object),
|
|
|
|
{:ok, _pin, _} <-
|
2021-03-03 13:41:05 +01:00
|
|
|
Pipeline.common_pipeline(pin_data,
|
|
|
|
local: true,
|
2021-03-19 15:25:12 +01:00
|
|
|
activity_id: id
|
2021-03-03 13:41:05 +01:00
|
|
|
) do
|
2019-01-07 14:45:33 +01:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
2021-02-03 14:09:28 +01:00
|
|
|
{:error, {:execute_side_effects, error}} -> error
|
|
|
|
error -> error
|
2019-01-07 14:45:33 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-03 14:09:28 +01:00
|
|
|
defp create_activity_by_id(id) do
|
|
|
|
with nil <- Activity.create_by_id_with_object(id) do
|
|
|
|
{:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp activity_belongs_to_actor(%{actor: actor}, actor), do: true
|
|
|
|
defp activity_belongs_to_actor(_, _), do: {:error, :ownership_error}
|
|
|
|
|
|
|
|
defp object_type_is_allowed_for_pin(%{data: %{"type" => type}}) do
|
|
|
|
with false <- type in ["Note", "Article", "Question"] do
|
|
|
|
{:error, :not_allowed}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp activity_is_public(activity) do
|
|
|
|
with false <- Visibility.is_public?(activity) do
|
|
|
|
{:error, :visibility_error}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec unpin(String.t(), User.t()) :: {:ok, User.t()} | {:error, term()}
|
2020-04-23 13:33:30 +02:00
|
|
|
def unpin(id, user) do
|
2021-02-03 14:09:28 +01:00
|
|
|
with %Activity{} = activity <- create_activity_by_id(id),
|
|
|
|
{:ok, unpin_data, _} <- Builder.unpin(user, activity.object),
|
|
|
|
{:ok, _unpin, _} <-
|
|
|
|
Pipeline.common_pipeline(unpin_data,
|
|
|
|
local: true,
|
|
|
|
activity_id: activity.id,
|
2021-03-03 13:41:05 +01:00
|
|
|
expires_at: activity.data["expires_at"],
|
|
|
|
featured_address: user.featured_address
|
2021-02-03 14:09:28 +01:00
|
|
|
) do
|
2019-01-07 14:45:33 +01:00
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
2019-02-11 11:59:51 +01:00
|
|
|
|
2020-09-08 14:13:50 +02:00
|
|
|
def add_mute(user, activity, params \\ %{}) do
|
|
|
|
expires_in = Map.get(params, :expires_in, 0)
|
|
|
|
|
2020-08-28 17:17:44 +02:00
|
|
|
with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]),
|
2020-08-31 11:02:54 +02:00
|
|
|
_ <- Pleroma.Notification.mark_context_as_read(user, activity.data["context"]) do
|
2020-09-08 14:13:50 +02:00
|
|
|
if expires_in > 0 do
|
|
|
|
Pleroma.Workers.MuteExpireWorker.enqueue(
|
|
|
|
"unmute_conversation",
|
|
|
|
%{"user_id" => user.id, "activity_id" => activity.id},
|
|
|
|
schedule_in: expires_in
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-02-11 11:59:51 +01:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
2019-07-10 11:25:58 +02:00
|
|
|
{:error, _} -> {:error, dgettext("errors", "conversation is already muted")}
|
2019-02-11 11:59:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-20 19:51:20 +02:00
|
|
|
def remove_mute(%User{} = user, %Activity{} = activity) do
|
2019-02-11 11:59:51 +01:00
|
|
|
ThreadMute.remove_mute(user.id, activity.data["context"])
|
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
|
2020-09-20 19:51:20 +02:00
|
|
|
def remove_mute(user_id, activity_id) do
|
|
|
|
with {:user, %User{} = user} <- {:user, User.get_by_id(user_id)},
|
|
|
|
{:activity, %Activity{} = activity} <- {:activity, Activity.get_by_id(activity_id)} do
|
|
|
|
remove_mute(user, activity)
|
|
|
|
else
|
|
|
|
{what, result} = error ->
|
|
|
|
Logger.warn(
|
|
|
|
"CommonAPI.remove_mute/2 failed. #{what}: #{result}, user_id: #{user_id}, activity_id: #{
|
|
|
|
activity_id
|
|
|
|
}"
|
|
|
|
)
|
|
|
|
|
|
|
|
{:error, error}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-25 17:27:45 +02:00
|
|
|
def thread_muted?(%User{id: user_id}, %{data: %{"context" => context}})
|
2020-08-17 00:07:23 +02:00
|
|
|
when is_binary(context) do
|
2020-05-25 17:27:45 +02:00
|
|
|
ThreadMute.exists?(user_id, context)
|
2019-02-11 11:59:51 +01:00
|
|
|
end
|
2019-02-20 17:51:25 +01:00
|
|
|
|
2020-05-25 17:27:45 +02:00
|
|
|
def thread_muted?(_, _), do: false
|
|
|
|
|
2020-04-28 14:50:37 +02:00
|
|
|
def report(user, data) do
|
|
|
|
with {:ok, account} <- get_reported_account(data.account_id),
|
|
|
|
{:ok, {content_html, _, _}} <- make_report_content_html(data[:comment]),
|
2019-09-24 10:56:20 +02:00
|
|
|
{:ok, statuses} <- get_report_statuses(account, data) do
|
|
|
|
ActivityPub.flag(%{
|
|
|
|
context: Utils.generate_context_id(),
|
|
|
|
actor: user,
|
|
|
|
account: account,
|
|
|
|
statuses: statuses,
|
|
|
|
content: content_html,
|
2020-04-28 14:50:37 +02:00
|
|
|
forward: Map.get(data, :forward, false)
|
2019-09-24 10:56:20 +02:00
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_reported_account(account_id) do
|
|
|
|
case User.get_cached_by_id(account_id) do
|
|
|
|
%User{} = account -> {:ok, account}
|
|
|
|
_ -> {:error, dgettext("errors", "Account not found")}
|
2019-02-20 17:51:25 +01:00
|
|
|
end
|
|
|
|
end
|
2019-03-09 14:08:41 +01:00
|
|
|
|
2019-10-04 18:00:58 +02:00
|
|
|
def update_report_state(activity_ids, state) when is_list(activity_ids) do
|
|
|
|
case Utils.update_report_state(activity_ids, state) do
|
|
|
|
:ok -> {:ok, activity_ids}
|
|
|
|
_ -> {:error, dgettext("errors", "Could not update state")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-16 21:09:18 +02:00
|
|
|
def update_report_state(activity_id, state) do
|
2019-09-24 10:56:20 +02:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id(activity_id) do
|
|
|
|
Utils.update_report_state(activity, state)
|
2019-05-16 21:09:18 +02:00
|
|
|
else
|
2019-07-10 11:25:58 +02:00
|
|
|
nil -> {:error, :not_found}
|
|
|
|
_ -> {:error, dgettext("errors", "Could not update state")}
|
2019-05-16 21:09:18 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_activity_scope(activity_id, opts \\ %{}) do
|
|
|
|
with %Activity{} = activity <- Activity.get_by_id_with_object(activity_id),
|
2019-09-24 10:56:20 +02:00
|
|
|
{:ok, activity} <- toggle_sensitive(activity, opts) do
|
|
|
|
set_visibility(activity, opts)
|
2019-05-16 21:09:18 +02:00
|
|
|
else
|
2019-07-10 11:25:58 +02:00
|
|
|
nil -> {:error, :not_found}
|
|
|
|
{:error, reason} -> {:error, reason}
|
2019-05-16 21:09:18 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
defp toggle_sensitive(activity, %{sensitive: sensitive}) when sensitive in ~w(true false) do
|
|
|
|
toggle_sensitive(activity, %{sensitive: String.to_existing_atom(sensitive)})
|
2019-05-16 21:09:18 +02:00
|
|
|
end
|
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
defp toggle_sensitive(%Activity{object: object} = activity, %{sensitive: sensitive})
|
2019-05-16 21:09:18 +02:00
|
|
|
when is_boolean(sensitive) do
|
|
|
|
new_data = Map.put(object.data, "sensitive", sensitive)
|
|
|
|
|
|
|
|
{:ok, object} =
|
|
|
|
object
|
|
|
|
|> Object.change(%{data: new_data})
|
|
|
|
|> Object.update_and_set_cache()
|
|
|
|
|
|
|
|
{:ok, Map.put(activity, :object, object)}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp toggle_sensitive(activity, _), do: {:ok, activity}
|
|
|
|
|
2020-05-12 21:59:26 +02:00
|
|
|
defp set_visibility(activity, %{visibility: visibility}) do
|
2019-05-16 21:09:18 +02:00
|
|
|
Utils.update_activity_visibility(activity, visibility)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp set_visibility(activity, _), do: {:ok, activity}
|
|
|
|
|
2019-11-19 21:22:10 +01:00
|
|
|
def hide_reblogs(%User{} = user, %User{} = target) do
|
|
|
|
UserRelationship.create_reblog_mute(user, target)
|
2019-03-09 14:08:41 +01:00
|
|
|
end
|
|
|
|
|
2019-11-19 21:22:10 +01:00
|
|
|
def show_reblogs(%User{} = user, %User{} = target) do
|
|
|
|
UserRelationship.delete_reblog_mute(user, target)
|
2019-03-09 14:08:41 +01:00
|
|
|
end
|
2020-08-31 23:48:24 +02:00
|
|
|
|
|
|
|
def get_user(ap_id, fake_record_fallback \\ true) do
|
|
|
|
cond do
|
|
|
|
user = User.get_cached_by_ap_id(ap_id) ->
|
|
|
|
user
|
|
|
|
|
|
|
|
user = User.get_by_guessed_nickname(ap_id) ->
|
|
|
|
user
|
|
|
|
|
|
|
|
fake_record_fallback ->
|
|
|
|
# TODO: refactor (fake records is never a good idea)
|
|
|
|
User.error_user(ap_id)
|
|
|
|
|
|
|
|
true ->
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
2017-09-09 13:56:51 +02:00
|
|
|
end
|