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-09-09 11:56:51 +00:00
|
|
|
defmodule Pleroma.Web.CommonAPI do
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-07-22 14:46:20 +00:00
|
|
|
alias Pleroma.ActivityExpiration
|
2019-08-02 13:05:27 +00:00
|
|
|
alias Pleroma.Conversation.Participation
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Object
|
2019-02-11 11:10:10 +00:00
|
|
|
alias Pleroma.ThreadMute
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2017-09-09 11:56:51 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-12-14 05:56:49 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-06-29 19:24:03 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2017-09-15 12:17:36 +00:00
|
|
|
|
2019-07-10 09:25:58 +00:00
|
|
|
import Pleroma.Web.Gettext
|
2017-09-15 12:17:36 +00:00
|
|
|
import Pleroma.Web.CommonAPI.Utils
|
2017-09-09 11:56:51 +00:00
|
|
|
|
2019-03-03 21:50:00 +00:00
|
|
|
def follow(follower, followed) do
|
2019-09-24 08:56:20 +00:00
|
|
|
timeout = Pleroma.Config.get([:activitypub, :follow_handshake_timeout])
|
|
|
|
|
2019-03-03 21:50:00 +00:00
|
|
|
with {:ok, follower} <- User.maybe_direct_follow(follower, followed),
|
|
|
|
{:ok, activity} <- ActivityPub.follow(follower, followed),
|
2019-09-24 08:56:20 +00:00
|
|
|
{:ok, follower, followed} <- User.wait_and_refresh(timeout, follower, followed) do
|
2019-03-03 21:50:00 +00:00
|
|
|
{:ok, follower, followed, activity}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-13 06:04:49 +00:00
|
|
|
def unfollow(follower, unfollowed) do
|
|
|
|
with {:ok, follower, _follow_activity} <- User.unfollow(follower, unfollowed),
|
2019-07-14 19:25:03 +00:00
|
|
|
{:ok, _activity} <- ActivityPub.unfollow(follower, unfollowed),
|
|
|
|
{:ok, _unfollowed} <- User.unsubscribe(follower, unfollowed) do
|
2019-03-13 06:04:49 +00:00
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def accept_follow_request(follower, followed) do
|
2019-06-05 12:24:31 +00:00
|
|
|
with {:ok, follower} <- User.follow(follower, followed),
|
2019-03-13 06:04:49 +00:00
|
|
|
%Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
2019-06-05 14:51:28 +00:00
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state_for_all(follow_activity, "accept"),
|
2019-03-13 06:04:49 +00:00
|
|
|
{:ok, _activity} <-
|
|
|
|
ActivityPub.accept(%{
|
|
|
|
to: [follower.ap_id],
|
|
|
|
actor: followed,
|
|
|
|
object: follow_activity.data["id"],
|
|
|
|
type: "Accept"
|
|
|
|
}) do
|
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_follow_request(follower, followed) do
|
|
|
|
with %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
2019-06-05 14:51:28 +00:00
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state_for_all(follow_activity, "reject"),
|
2019-03-13 06:04:49 +00:00
|
|
|
{:ok, _activity} <-
|
|
|
|
ActivityPub.reject(%{
|
|
|
|
to: [follower.ap_id],
|
|
|
|
actor: followed,
|
|
|
|
object: follow_activity.data["id"],
|
|
|
|
type: "Reject"
|
|
|
|
}) do
|
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 11:56:51 +00:00
|
|
|
def delete(activity_id, user) do
|
2019-03-23 00:28:16 +00:00
|
|
|
with %Activity{data: %{"object" => _}} = activity <-
|
|
|
|
Activity.get_by_id_with_object(activity_id),
|
2019-03-23 00:22:14 +00:00
|
|
|
%Object{} = object <- Object.normalize(activity),
|
2019-03-08 17:21:56 +00:00
|
|
|
true <- User.superuser?(user) || user.ap_id == object.data["actor"],
|
2019-01-11 05:31:31 +00:00
|
|
|
{:ok, _} <- unpin(activity_id, user),
|
2018-11-01 07:29:12 +00:00
|
|
|
{:ok, delete} <- ActivityPub.delete(object) do
|
2017-09-09 11:56:51 +00:00
|
|
|
{:ok, delete}
|
2019-05-16 19:09:18 +00:00
|
|
|
else
|
2019-09-24 08:56:20 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Could not delete")}
|
2017-09-09 11:56:51 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 15:48:57 +00:00
|
|
|
|
2019-10-01 16:38:23 +00:00
|
|
|
def repeat(id_or_ap_id, user, params \\ %{}) do
|
2017-09-09 15:48:57 +00:00
|
|
|
with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
|
2019-03-23 00:22:14 +00:00
|
|
|
object <- Object.normalize(activity),
|
2019-10-01 16:38:23 +00:00
|
|
|
nil <- Utils.get_existing_announce(user.ap_id, object),
|
2019-10-02 08:48:34 +00:00
|
|
|
public <- public_announce?(object, params) do
|
2019-10-01 16:38:23 +00:00
|
|
|
ActivityPub.announce(user, object, nil, true, public)
|
2017-09-09 15:48:57 +00:00
|
|
|
else
|
2019-09-24 08:56:20 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Could not repeat")}
|
2017-09-09 15:48:57 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-14 07:39:16 +00:00
|
|
|
def unrepeat(id_or_ap_id, user) do
|
2019-09-24 08:56:20 +00:00
|
|
|
with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id) do
|
|
|
|
object = Object.normalize(activity)
|
2018-04-14 07:39:16 +00:00
|
|
|
ActivityPub.unannounce(user, object)
|
|
|
|
else
|
2019-09-24 08:56:20 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Could not unrepeat")}
|
2018-04-14 07:39:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 16:09:37 +00:00
|
|
|
def favorite(id_or_ap_id, user) do
|
|
|
|
with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
|
2019-03-23 00:22:14 +00:00
|
|
|
object <- Object.normalize(activity),
|
2018-12-14 05:56:49 +00:00
|
|
|
nil <- Utils.get_existing_like(user.ap_id, object) do
|
2017-09-09 16:09:37 +00:00
|
|
|
ActivityPub.like(user, object)
|
|
|
|
else
|
2019-09-24 08:56:20 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Could not favorite")}
|
2017-09-09 16:09:37 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 16:30:02 +00:00
|
|
|
def unfavorite(id_or_ap_id, user) do
|
2019-09-24 08:56:20 +00:00
|
|
|
with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id) do
|
|
|
|
object = Object.normalize(activity)
|
2017-09-09 16:30:02 +00:00
|
|
|
ActivityPub.unlike(user, object)
|
|
|
|
else
|
2019-09-24 08:56:20 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Could not unfavorite")}
|
2017-09-09 16:30:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-27 22:56:28 +00:00
|
|
|
def react_with_emoji(id, user, emoji) do
|
|
|
|
with %Activity{} = activity <- Activity.get_by_id(id),
|
|
|
|
object <- Object.normalize(activity) do
|
|
|
|
ActivityPub.react_with_emoji(user, object, emoji)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, dgettext("errors", "Could not add reaction emoji")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-02 13:38:57 +00:00
|
|
|
def unreact_with_emoji(id, user, emoji) do
|
|
|
|
with %Activity{} = reaction_activity <- Utils.get_latest_reaction(id, user, emoji) do
|
|
|
|
ActivityPub.unreact_with_emoji(user, reaction_activity.data["id"])
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, dgettext("errors", "Could not remove reaction emoji")}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 08:56:20 +00: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 13:07:01 +00:00
|
|
|
answer_activities =
|
|
|
|
Enum.map(choices, fn index ->
|
|
|
|
answer_data = make_answer_data(user, object, Enum.at(options, index)["name"])
|
|
|
|
|
2019-06-04 10:38:24 +00:00
|
|
|
{:ok, activity} =
|
|
|
|
ActivityPub.create(%{
|
|
|
|
to: answer_data["to"],
|
|
|
|
actor: user,
|
|
|
|
context: object.data["context"],
|
|
|
|
object: answer_data,
|
|
|
|
additional: %{"cc" => answer_data["cc"]}
|
|
|
|
})
|
|
|
|
|
|
|
|
activity
|
2019-06-01 13:07:01 +00:00
|
|
|
end)
|
|
|
|
|
2019-06-02 20:24:48 +00:00
|
|
|
object = Object.get_cached_by_ap_id(object.data["id"])
|
2019-06-01 13:07:01 +00:00
|
|
|
{:ok, answer_activities, object}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 08:56:20 +00: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 13:07:01 +00:00
|
|
|
else
|
2019-09-24 08:56:20 +00:00
|
|
|
{:error, dgettext("errors", "Already voted")}
|
2019-06-01 13:07:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 08:56:20 +00:00
|
|
|
defp get_options_and_max_count(%{data: %{"anyOf" => any_of}}), do: {any_of, Enum.count(any_of)}
|
|
|
|
defp get_options_and_max_count(%{data: %{"oneOf" => one_of}}), do: {one_of, 1}
|
2019-06-01 13:07:01 +00:00
|
|
|
|
2019-09-24 08:56:20 +00: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 13:05:27 +00:00
|
|
|
end
|
|
|
|
|
2019-10-02 08:48:34 +00:00
|
|
|
def public_announce?(_, %{"visibility" => visibility})
|
2019-10-01 16:38:23 +00:00
|
|
|
when visibility in ~w{public unlisted private direct},
|
|
|
|
do: visibility in ~w(public unlisted)
|
|
|
|
|
2019-10-02 08:48:34 +00:00
|
|
|
def public_announce?(object, _) do
|
2019-10-01 16:38:23 +00:00
|
|
|
Visibility.is_public?(object)
|
|
|
|
end
|
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
def get_visibility(_, _, %Participation{}), do: {"direct", "direct"}
|
2019-08-02 13:05:27 +00:00
|
|
|
|
|
|
|
def get_visibility(%{"visibility" => visibility}, in_reply_to, _)
|
2018-03-30 13:01:53 +00:00
|
|
|
when visibility in ~w{public unlisted private direct},
|
2019-05-15 14:35:33 +00:00
|
|
|
do: {visibility, get_replied_to_visibility(in_reply_to)}
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-08-02 13:05:27 +00:00
|
|
|
def get_visibility(%{"visibility" => "list:" <> list_id}, in_reply_to, _) do
|
2019-05-16 10:54:24 +00:00
|
|
|
visibility = {:list, String.to_integer(list_id)}
|
|
|
|
{visibility, get_replied_to_visibility(in_reply_to)}
|
2019-05-01 09:11:17 +00:00
|
|
|
end
|
|
|
|
|
2019-08-02 13:05:27 +00:00
|
|
|
def get_visibility(_, in_reply_to, _) when not is_nil(in_reply_to) do
|
2019-05-15 14:35:33 +00:00
|
|
|
visibility = get_replied_to_visibility(in_reply_to)
|
|
|
|
{visibility, visibility}
|
2018-02-18 14:04:26 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-08-02 13:05:27 +00:00
|
|
|
def get_visibility(_, in_reply_to, _), do: {"public", get_replied_to_visibility(in_reply_to)}
|
2018-02-18 14:04:26 +00:00
|
|
|
|
2019-05-15 14:30:08 +00:00
|
|
|
def get_replied_to_visibility(nil), do: nil
|
2018-08-26 22:37:36 +00:00
|
|
|
|
2019-05-15 14:30:08 +00:00
|
|
|
def get_replied_to_visibility(activity) do
|
|
|
|
with %Object{} = object <- Object.normalize(activity) do
|
2019-09-24 08:56:20 +00:00
|
|
|
Visibility.get_visibility(object)
|
2018-08-26 22:37:36 +00:00
|
|
|
end
|
2018-02-18 14:04:26 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
def check_expiry_date({:ok, nil} = res), do: res
|
2019-08-24 15:22:48 +00:00
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
def check_expiry_date({:ok, in_seconds}) do
|
2019-08-24 15:22:48 +00:00
|
|
|
expiry = NaiveDateTime.utc_now() |> NaiveDateTime.add(in_seconds)
|
2019-07-23 14:33:45 +00:00
|
|
|
|
2019-08-24 15:22:48 +00:00
|
|
|
if ActivityExpiration.expires_late_enough?(expiry) do
|
2019-07-23 14:33:45 +00:00
|
|
|
{:ok, expiry}
|
|
|
|
else
|
|
|
|
{:error, "Expiry date is too soon"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
def check_expiry_date(expiry_str) do
|
2019-08-24 15:22:48 +00:00
|
|
|
Ecto.Type.cast(:integer, expiry_str)
|
|
|
|
|> check_expiry_date()
|
|
|
|
end
|
|
|
|
|
2019-09-28 00:24:32 +00:00
|
|
|
def listen(user, %{"title" => _} = data) do
|
|
|
|
with visibility <- data["visibility"] || "public",
|
|
|
|
{to, cc} <- get_to_and_cc(user, [], nil, visibility, nil),
|
|
|
|
listen_data <-
|
|
|
|
Map.take(data, ["album", "artist", "title", "length"])
|
2019-09-28 12:12:35 +00:00
|
|
|
|> Map.put("type", "Audio")
|
|
|
|
|> Map.put("to", to)
|
2019-09-28 12:29:00 +00:00
|
|
|
|> Map.put("cc", cc)
|
|
|
|
|> Map.put("actor", user.ap_id),
|
2019-09-28 00:24:32 +00:00
|
|
|
{:ok, activity} <-
|
|
|
|
ActivityPub.listen(%{
|
|
|
|
actor: user,
|
|
|
|
to: to,
|
|
|
|
object: listen_data,
|
|
|
|
context: Utils.generate_context_id(),
|
2019-09-28 12:12:35 +00:00
|
|
|
additional: %{"cc" => cc}
|
2019-09-28 00:24:32 +00:00
|
|
|
}) do
|
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
end
|
2019-07-10 09:25:58 +00:00
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
def post(user, %{"status" => _} = data) do
|
|
|
|
with {:ok, draft} <- Pleroma.Web.CommonAPI.ActivityDraft.create(user, data) do
|
|
|
|
draft.changes
|
|
|
|
|> ActivityPub.create(draft.preview?)
|
|
|
|
|> maybe_create_activity_expiration(draft.expires_at)
|
2017-09-09 15:48:57 +00:00
|
|
|
end
|
|
|
|
end
|
2019-07-10 09:25:58 +00:00
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
defp maybe_create_activity_expiration({:ok, activity}, %NaiveDateTime{} = expires_at) do
|
|
|
|
with {:ok, _} <- ActivityExpiration.create(activity, expires_at) do
|
|
|
|
{:ok, activity}
|
2017-09-09 15:48:57 +00:00
|
|
|
end
|
|
|
|
end
|
2018-02-25 20:02:44 +00:00
|
|
|
|
2019-09-24 09:10:54 +00:00
|
|
|
defp maybe_create_activity_expiration(result, _), do: result
|
|
|
|
|
2018-11-20 19:12:39 +00:00
|
|
|
# Updates the emojis for a user based on their profile
|
2018-02-25 20:02:44 +00:00
|
|
|
def update(user) do
|
2019-09-24 12:50:07 +00:00
|
|
|
emoji = emoji_from_profile(user)
|
2019-09-24 08:56:20 +00:00
|
|
|
source_data = user.info |> Map.get(:source_data, %{}) |> Map.put("tag", emoji)
|
2019-09-24 12:50:07 +00:00
|
|
|
|
2018-08-12 19:24:10 +00:00
|
|
|
user =
|
2019-09-24 08:56:20 +00:00
|
|
|
case User.update_info(user, &User.Info.set_source_data(&1, source_data)) do
|
|
|
|
{:ok, user} -> user
|
|
|
|
_ -> user
|
2018-08-12 19:24:10 +00:00
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
ActivityPub.update(%{
|
|
|
|
local: true,
|
|
|
|
to: [user.follower_address],
|
|
|
|
cc: [],
|
|
|
|
actor: user.ap_id,
|
|
|
|
object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})
|
|
|
|
})
|
2018-02-25 20:02:44 +00:00
|
|
|
end
|
2019-01-07 13:45:33 +00:00
|
|
|
|
2019-01-09 10:40:15 +00:00
|
|
|
def pin(id_or_ap_id, %{ap_id: user_ap_id} = user) do
|
|
|
|
with %Activity{
|
|
|
|
actor: ^user_ap_id,
|
2019-09-24 08:56:20 +00:00
|
|
|
data: %{"type" => "Create"},
|
|
|
|
object: %Object{data: %{"type" => "Note"}}
|
2019-01-09 10:40:15 +00:00
|
|
|
} = activity <- get_by_id_or_ap_id(id_or_ap_id),
|
2019-06-29 19:24:03 +00:00
|
|
|
true <- Visibility.is_public?(activity),
|
2019-09-24 12:50:07 +00:00
|
|
|
{:ok, _user} <- User.update_info(user, &User.Info.add_pinnned_activity(&1, activity)) do
|
2019-01-07 13:45:33 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
2019-09-24 07:14:34 +00:00
|
|
|
{:error, %{changes: %{info: %{errors: [pinned_activities: {err, _}]}}}} -> {:error, err}
|
|
|
|
_ -> {:error, dgettext("errors", "Could not pin")}
|
2019-01-07 13:45:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpin(id_or_ap_id, user) do
|
|
|
|
with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
|
2019-09-24 12:50:07 +00:00
|
|
|
{:ok, _user} <- User.update_info(user, &User.Info.remove_pinnned_activity(&1, activity)) do
|
2019-01-07 13:45:33 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
2019-09-24 07:14:34 +00:00
|
|
|
%{errors: [pinned_activities: {err, _}]} -> {:error, err}
|
|
|
|
_ -> {:error, dgettext("errors", "Could not unpin")}
|
2019-01-07 13:45:33 +00:00
|
|
|
end
|
|
|
|
end
|
2019-02-11 10:59:51 +00:00
|
|
|
|
|
|
|
def add_mute(user, activity) do
|
|
|
|
with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
{:error, _} -> {:error, dgettext("errors", "conversation is already muted")}
|
2019-02-11 10:59:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_mute(user, activity) do
|
|
|
|
ThreadMute.remove_mute(user.id, activity.data["context"])
|
|
|
|
{:ok, activity}
|
|
|
|
end
|
|
|
|
|
|
|
|
def thread_muted?(%{id: nil} = _user, _activity), do: false
|
|
|
|
|
|
|
|
def thread_muted?(user, activity) do
|
2019-09-24 08:56:20 +00:00
|
|
|
ThreadMute.check_muted(user.id, activity.data["context"]) != []
|
2019-02-11 10:59:51 +00:00
|
|
|
end
|
2019-02-20 16:51:25 +00:00
|
|
|
|
2019-09-24 08:56:20 +00:00
|
|
|
def report(user, %{"account_id" => account_id} = data) do
|
|
|
|
with {:ok, account} <- get_reported_account(account_id),
|
2019-02-26 23:32:26 +00:00
|
|
|
{:ok, {content_html, _, _}} <- make_report_content_html(data["comment"]),
|
2019-09-24 08:56:20 +00: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,
|
|
|
|
forward: data["forward"] || false
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def report(_user, _params), do: {:error, dgettext("errors", "Valid `account_id` required")}
|
|
|
|
|
|
|
|
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 16:51:25 +00:00
|
|
|
end
|
|
|
|
end
|
2019-03-09 13:08:41 +00:00
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
def update_report_state(activity_id, state) do
|
2019-09-24 08:56:20 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id(activity_id) do
|
|
|
|
Utils.update_report_state(activity, state)
|
2019-05-16 19:09:18 +00:00
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
nil -> {:error, :not_found}
|
|
|
|
_ -> {:error, dgettext("errors", "Could not update state")}
|
2019-05-16 19:09:18 +00: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 08:56:20 +00:00
|
|
|
{:ok, activity} <- toggle_sensitive(activity, opts) do
|
|
|
|
set_visibility(activity, opts)
|
2019-05-16 19:09:18 +00:00
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
nil -> {:error, :not_found}
|
|
|
|
{:error, reason} -> {:error, reason}
|
2019-05-16 19:09:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp toggle_sensitive(activity, %{"sensitive" => sensitive}) when sensitive in ~w(true false) do
|
|
|
|
toggle_sensitive(activity, %{"sensitive" => String.to_existing_atom(sensitive)})
|
|
|
|
end
|
|
|
|
|
|
|
|
defp toggle_sensitive(%Activity{object: object} = activity, %{"sensitive" => sensitive})
|
|
|
|
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}
|
|
|
|
|
|
|
|
defp set_visibility(activity, %{"visibility" => visibility}) do
|
|
|
|
Utils.update_activity_visibility(activity, visibility)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp set_visibility(activity, _), do: {:ok, activity}
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
def hide_reblogs(user, %{ap_id: ap_id} = _muted) do
|
2019-03-15 13:06:58 +00:00
|
|
|
if ap_id not in user.info.muted_reblogs do
|
2019-09-24 12:50:07 +00:00
|
|
|
User.update_info(user, &User.Info.add_reblog_mute(&1, ap_id))
|
2019-03-09 13:08:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-24 07:14:34 +00:00
|
|
|
def show_reblogs(user, %{ap_id: ap_id} = _muted) do
|
2019-03-15 13:06:58 +00:00
|
|
|
if ap_id in user.info.muted_reblogs do
|
2019-09-24 12:50:07 +00:00
|
|
|
User.update_info(user, &User.Info.remove_reblog_mute(&1, ap_id))
|
2019-03-09 13:08:41 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 11:56:51 +00:00
|
|
|
end
|