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-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Formatter
|
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
|
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
|
|
|
|
with {:ok, follower} <- User.maybe_direct_follow(follower, followed),
|
|
|
|
{:ok, activity} <- ActivityPub.follow(follower, followed),
|
|
|
|
{:ok, follower, followed} <-
|
|
|
|
User.wait_and_refresh(
|
|
|
|
Pleroma.Config.get([:activitypub, :follow_handshake_timeout]),
|
|
|
|
follower,
|
|
|
|
followed
|
|
|
|
) do
|
|
|
|
{: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),
|
|
|
|
{:ok, _activity} <- ActivityPub.unfollow(follower, unfollowed) do
|
|
|
|
{:ok, follower}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def accept_follow_request(follower, followed) do
|
|
|
|
with {:ok, follower} <- User.maybe_follow(follower, followed),
|
|
|
|
%Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "accept"),
|
|
|
|
{: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),
|
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "reject"),
|
|
|
|
{: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}
|
|
|
|
end
|
|
|
|
end
|
2017-09-09 15:48:57 +00:00
|
|
|
|
|
|
|
def repeat(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_announce(user.ap_id, object) do
|
2017-09-09 15:48:57 +00:00
|
|
|
ActivityPub.announce(user, object)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not repeat"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-14 07:39:16 +00:00
|
|
|
def unrepeat(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) do
|
2018-04-14 07:39:16 +00:00
|
|
|
ActivityPub.unannounce(user, object)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not unrepeat"}
|
|
|
|
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
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not favorite"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 16:30:02 +00:00
|
|
|
def unfavorite(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) do
|
2017-09-09 16:30:02 +00:00
|
|
|
ActivityPub.unlike(user, object)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not unfavorite"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def get_visibility(%{"visibility" => visibility})
|
|
|
|
when visibility in ~w{public unlisted private direct},
|
|
|
|
do: visibility
|
|
|
|
|
2018-03-30 10:19:57 +00:00
|
|
|
def get_visibility(%{"in_reply_to_status_id" => status_id}) when not is_nil(status_id) do
|
2018-08-26 22:37:36 +00:00
|
|
|
case get_replied_to_activity(status_id) do
|
|
|
|
nil ->
|
|
|
|
"public"
|
|
|
|
|
2019-03-05 03:36:19 +00:00
|
|
|
in_reply_to ->
|
|
|
|
Pleroma.Web.MastodonAPI.StatusView.get_visibility(in_reply_to.data["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
|
|
|
|
2018-02-18 14:04:26 +00:00
|
|
|
def get_visibility(_), do: "public"
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
def post(user, %{"status" => status} = data) do
|
2018-02-18 14:04:26 +00:00
|
|
|
visibility = get_visibility(data)
|
2018-11-06 18:34:57 +00:00
|
|
|
limit = Pleroma.Config.get([:instance, :limit])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
with status <- String.trim(status),
|
2019-01-04 16:27:46 +00:00
|
|
|
attachments <- attachments_from_ids(data),
|
2019-03-05 03:36:19 +00:00
|
|
|
in_reply_to <- get_replied_to_activity(data["in_reply_to_status_id"]),
|
2019-02-26 23:32:26 +00:00
|
|
|
{content_html, mentions, tags} <-
|
2018-09-02 00:14:25 +00:00
|
|
|
make_content_html(
|
|
|
|
status,
|
|
|
|
attachments,
|
2019-03-20 20:09:36 +00:00
|
|
|
data,
|
|
|
|
visibility
|
2018-09-02 00:14:25 +00:00
|
|
|
),
|
2019-03-05 03:36:19 +00:00
|
|
|
{to, cc} <- to_for_user_and_mentions(user, mentions, in_reply_to, visibility),
|
|
|
|
context <- make_context(in_reply_to),
|
2017-10-31 18:44:36 +00:00
|
|
|
cw <- data["spoiler_text"],
|
2018-10-10 07:53:20 +00:00
|
|
|
full_payload <- String.trim(status <> (data["spoiler_text"] || "")),
|
2018-11-06 18:34:57 +00:00
|
|
|
length when length in 1..limit <- String.length(full_payload),
|
2018-03-30 13:01:53 +00:00
|
|
|
object <-
|
|
|
|
make_note_data(
|
|
|
|
user.ap_id,
|
|
|
|
to,
|
|
|
|
context,
|
|
|
|
content_html,
|
|
|
|
attachments,
|
2019-03-05 03:36:19 +00:00
|
|
|
in_reply_to,
|
2018-03-30 13:01:53 +00:00
|
|
|
tags,
|
|
|
|
cw,
|
|
|
|
cc
|
|
|
|
),
|
|
|
|
object <-
|
|
|
|
Map.put(
|
|
|
|
object,
|
|
|
|
"emoji",
|
2019-01-05 17:35:39 +00:00
|
|
|
(Formatter.get_emoji(status) ++ Formatter.get_emoji(data["spoiler_text"]))
|
2019-04-01 10:17:57 +00:00
|
|
|
|> Enum.reduce(%{}, fn {name, file, _}, acc ->
|
2018-03-30 13:01:53 +00:00
|
|
|
Map.put(acc, name, "#{Pleroma.Web.Endpoint.static_url()}#{file}")
|
|
|
|
end)
|
|
|
|
) do
|
|
|
|
res =
|
2019-03-29 18:59:04 +00:00
|
|
|
ActivityPub.create(
|
|
|
|
%{
|
|
|
|
to: to,
|
|
|
|
actor: user,
|
|
|
|
context: context,
|
|
|
|
object: object,
|
|
|
|
additional: %{"cc" => cc, "directMessage" => visibility == "direct"}
|
|
|
|
},
|
2019-04-02 20:07:16 +00:00
|
|
|
Pleroma.Web.ControllerHelper.truthy_param?(data["preview"]) || false
|
2019-03-29 18:59:04 +00:00
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
res
|
2017-09-09 15:48:57 +00:00
|
|
|
end
|
|
|
|
end
|
2018-02-25 20:02:44 +00:00
|
|
|
|
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
|
2018-08-12 19:24:10 +00:00
|
|
|
user =
|
|
|
|
with emoji <- emoji_from_profile(user),
|
2018-11-20 19:12:39 +00:00
|
|
|
source_data <- (user.info.source_data || %{}) |> Map.put("tag", emoji),
|
|
|
|
info_cng <- Pleroma.User.Info.set_source_data(user.info, source_data),
|
|
|
|
change <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
|
2018-08-12 19:24:10 +00:00
|
|
|
{:ok, user} <- User.update_and_set_cache(change) do
|
|
|
|
user
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
user
|
|
|
|
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,
|
|
|
|
data: %{
|
|
|
|
"type" => "Create",
|
|
|
|
"object" => %{
|
|
|
|
"to" => object_to,
|
|
|
|
"type" => "Note"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} = activity <- get_by_id_or_ap_id(id_or_ap_id),
|
|
|
|
true <- Enum.member?(object_to, "https://www.w3.org/ns/activitystreams#Public"),
|
2019-01-07 13:45:33 +00:00
|
|
|
%{valid?: true} = info_changeset <-
|
|
|
|
Pleroma.User.Info.add_pinnned_activity(user.info, activity),
|
|
|
|
changeset <-
|
|
|
|
Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
|
|
|
|
{:ok, _user} <- User.update_and_set_cache(changeset) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
%{errors: [pinned_activities: {err, _}]} ->
|
|
|
|
{:error, err}
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not pin"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpin(id_or_ap_id, user) do
|
|
|
|
with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
|
|
|
|
%{valid?: true} = info_changeset <-
|
|
|
|
Pleroma.User.Info.remove_pinnned_activity(user.info, activity),
|
|
|
|
changeset <-
|
|
|
|
Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
|
|
|
|
{:ok, _user} <- User.update_and_set_cache(changeset) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
%{errors: [pinned_activities: {err, _}]} ->
|
|
|
|
{:error, err}
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not unpin"}
|
|
|
|
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
|
|
|
|
{:error, _} -> {:error, "conversation is already muted"}
|
|
|
|
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
|
|
|
|
with [] <- ThreadMute.check_muted(user.id, activity.data["context"]) do
|
|
|
|
false
|
|
|
|
else
|
|
|
|
_ -> true
|
|
|
|
end
|
|
|
|
end
|
2019-02-20 16:51:25 +00:00
|
|
|
|
|
|
|
def report(user, data) do
|
|
|
|
with {:account_id, %{"account_id" => account_id}} <- {:account_id, data},
|
|
|
|
{:account, %User{} = account} <- {:account, User.get_by_id(account_id)},
|
2019-02-26 23:32:26 +00:00
|
|
|
{:ok, {content_html, _, _}} <- make_report_content_html(data["comment"]),
|
2019-02-20 16:51:25 +00:00
|
|
|
{:ok, statuses} <- get_report_statuses(account, data),
|
|
|
|
{:ok, activity} <-
|
|
|
|
ActivityPub.flag(%{
|
|
|
|
context: Utils.generate_context_id(),
|
|
|
|
actor: user,
|
|
|
|
account: account,
|
|
|
|
statuses: statuses,
|
2019-03-14 19:29:33 +00:00
|
|
|
content: content_html,
|
|
|
|
forward: data["forward"] || false
|
2019-02-20 16:51:25 +00:00
|
|
|
}) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
{:error, err} -> {:error, err}
|
|
|
|
{:account_id, %{}} -> {:error, "Valid `account_id` required"}
|
|
|
|
{:account, nil} -> {:error, "Account not found"}
|
|
|
|
end
|
|
|
|
end
|
2019-03-09 13:08:41 +00:00
|
|
|
|
2019-03-15 13:06:58 +00:00
|
|
|
def hide_reblogs(user, muted) do
|
|
|
|
ap_id = muted.ap_id
|
|
|
|
|
|
|
|
if ap_id not in user.info.muted_reblogs do
|
|
|
|
info_changeset = User.Info.add_reblog_mute(user.info, ap_id)
|
2019-03-09 13:08:41 +00:00
|
|
|
changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
|
|
|
|
User.update_and_set_cache(changeset)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-15 13:06:58 +00:00
|
|
|
def show_reblogs(user, muted) do
|
|
|
|
ap_id = muted.ap_id
|
|
|
|
|
|
|
|
if ap_id in user.info.muted_reblogs do
|
|
|
|
info_changeset = User.Info.remove_reblog_mute(user.info, ap_id)
|
2019-03-09 13:08:41 +00:00
|
|
|
changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
|
|
|
|
User.update_and_set_cache(changeset)
|
|
|
|
end
|
|
|
|
end
|
2017-09-09 11:56:51 +00:00
|
|
|
end
|