2017-09-09 11:56:51 +00:00
|
|
|
defmodule Pleroma.Web.CommonAPI do
|
2018-08-12 19:24:10 +00:00
|
|
|
alias Pleroma.{User, Repo, Activity, Object}
|
2017-09-09 11:56:51 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2017-09-15 12:17:36 +00:00
|
|
|
alias Pleroma.Formatter
|
|
|
|
|
|
|
|
import Pleroma.Web.CommonAPI.Utils
|
2017-09-09 11:56:51 +00:00
|
|
|
|
|
|
|
def delete(activity_id, user) do
|
2018-11-25 21:50:46 +00:00
|
|
|
with %Activity{data: %{"object" => object_id}} <- Repo.get(Activity, activity_id),
|
2018-06-18 21:08:12 +00:00
|
|
|
%Object{} = object <- Object.normalize(object_id),
|
2018-11-20 18:15:28 +00:00
|
|
|
true <- user.info.is_moderator || user.ap_id == object.data["actor"],
|
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),
|
2018-11-25 21:50:46 +00:00
|
|
|
object <- Object.normalize(activity.data["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),
|
2018-11-25 21:50:46 +00:00
|
|
|
object <- Object.normalize(activity.data["object"]) 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),
|
2018-11-25 21:50:46 +00:00
|
|
|
object <- Object.normalize(activity.data["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),
|
2018-11-25 21:50:46 +00:00
|
|
|
object <- Object.normalize(activity.data["object"]) 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"
|
|
|
|
|
|
|
|
inReplyTo ->
|
2018-11-25 18:57:38 +00:00
|
|
|
# XXX: these heuristics should be moved out of MastodonAPI.
|
|
|
|
with %Object{} = object <- Object.normalize(inReplyTo.data["object"]) do
|
|
|
|
Pleroma.Web.MastodonAPI.StatusView.get_visibility(object.data)
|
|
|
|
end
|
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"
|
|
|
|
|
2018-11-06 18:34:57 +00:00
|
|
|
defp get_content_type(content_type) do
|
|
|
|
if Enum.member?(Pleroma.Config.get([:instance, :allowed_post_formats]), content_type) do
|
|
|
|
content_type
|
|
|
|
else
|
|
|
|
"text/plain"
|
|
|
|
end
|
|
|
|
end
|
2018-10-05 21:02:17 +00:00
|
|
|
|
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),
|
|
|
|
attachments <- attachments_from_ids(data["media_ids"]),
|
|
|
|
mentions <- Formatter.parse_mentions(status),
|
|
|
|
inReplyTo <- get_replied_to_activity(data["in_reply_to_status_id"]),
|
2018-02-18 13:45:08 +00:00
|
|
|
{to, cc} <- to_for_user_and_mentions(user, mentions, inReplyTo, visibility),
|
2017-11-18 14:30:18 +00:00
|
|
|
tags <- Formatter.parse_tags(status, data),
|
2018-03-30 13:01:53 +00:00
|
|
|
content_html <-
|
2018-09-02 00:14:25 +00:00
|
|
|
make_content_html(
|
|
|
|
status,
|
|
|
|
mentions,
|
|
|
|
attachments,
|
|
|
|
tags,
|
2018-10-05 21:02:17 +00:00
|
|
|
get_content_type(data["content_type"]),
|
2018-09-02 00:14:25 +00:00
|
|
|
data["no_attachment_links"]
|
|
|
|
),
|
2017-09-17 13:21:44 +00:00
|
|
|
context <- make_context(inReplyTo),
|
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,
|
|
|
|
inReplyTo,
|
|
|
|
tags,
|
|
|
|
cw,
|
|
|
|
cc
|
|
|
|
),
|
|
|
|
object <-
|
|
|
|
Map.put(
|
|
|
|
object,
|
|
|
|
"emoji",
|
|
|
|
Formatter.get_emoji(status)
|
|
|
|
|> Enum.reduce(%{}, fn {name, file}, acc ->
|
|
|
|
Map.put(acc, name, "#{Pleroma.Web.Endpoint.static_url()}#{file}")
|
|
|
|
end)
|
|
|
|
) do
|
|
|
|
res =
|
|
|
|
ActivityPub.create(%{
|
|
|
|
to: to,
|
|
|
|
actor: user,
|
|
|
|
context: context,
|
|
|
|
object: object,
|
|
|
|
additional: %{"cc" => cc}
|
|
|
|
})
|
|
|
|
|
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
|
2017-09-09 11:56:51 +00:00
|
|
|
end
|