2017-09-09 11:56:51 +00:00
|
|
|
defmodule Pleroma.Web.CommonAPI do
|
2017-09-15 12:17:36 +00:00
|
|
|
alias Pleroma.{Repo, Activity, Object, User}
|
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
|
|
|
|
with %Activity{data: %{"object" => %{"id" => object_id}}} <- Repo.get(Activity, activity_id),
|
|
|
|
%Object{} = object <- Object.get_by_ap_id(object_id),
|
2018-02-20 17:54:13 +00:00
|
|
|
true <- user.info["is_moderator"] || (user.ap_id == object.data["actor"]),
|
2017-09-09 11:56:51 +00:00
|
|
|
{:ok, delete} <- ActivityPub.delete(object) do
|
|
|
|
{: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),
|
|
|
|
object <- Object.get_by_ap_id(activity.data["object"]["id"]) do
|
|
|
|
ActivityPub.announce(user, object)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not repeat"}
|
|
|
|
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),
|
|
|
|
false <- activity.data["actor"] == user.ap_id,
|
|
|
|
object <- Object.get_by_ap_id(activity.data["object"]["id"]) do
|
|
|
|
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),
|
|
|
|
false <- activity.data["actor"] == user.ap_id,
|
|
|
|
object <- Object.get_by_ap_id(activity.data["object"]["id"]) do
|
|
|
|
ActivityPub.unlike(user, object)
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
{:error, "Could not unfavorite"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-18 14:04:26 +00:00
|
|
|
def get_visibility(%{"visibility" => visibility}), do: visibility
|
2018-02-25 17:08:41 +00:00
|
|
|
def get_visibility(%{"in_reply_to_status_id" => status_id}) when status_id do
|
2018-02-18 14:04:26 +00:00
|
|
|
inReplyTo = get_replied_to_activity(status_id)
|
|
|
|
Pleroma.Web.MastodonAPI.StatusView.get_visibility(inReplyTo.data["object"])
|
|
|
|
end
|
|
|
|
def get_visibility(_), do: "public"
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
@instance Application.get_env(:pleroma, :instance)
|
|
|
|
@limit Keyword.get(@instance, :limit)
|
|
|
|
def post(user, %{"status" => status} = data) do
|
2018-02-18 14:04:26 +00:00
|
|
|
visibility = get_visibility(data)
|
2017-09-15 12:17:36 +00:00
|
|
|
with status <- String.trim(status),
|
|
|
|
length when length in 1..@limit <- String.length(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),
|
2017-12-07 18:44:09 +00:00
|
|
|
content_html <- make_content_html(status, mentions, attachments, tags, 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-02-18 13:45:08 +00:00
|
|
|
object <- make_note_data(user.ap_id, to, context, content_html, attachments, inReplyTo, tags, cw, cc),
|
2017-11-20 16:53:21 +00:00
|
|
|
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
|
2018-02-18 13:45:08 +00:00
|
|
|
res = ActivityPub.create(%{to: to, actor: user, context: context, object: object, additional: %{"cc" => cc}})
|
2017-10-31 15:37:11 +00:00
|
|
|
User.increase_note_count(user)
|
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
|
|
|
|
|
|
|
def update(user) do
|
|
|
|
ActivityPub.update(%{local: true, to: [user.follower_address], cc: [], actor: user.ap_id, object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})})
|
|
|
|
end
|
2017-09-09 11:56:51 +00:00
|
|
|
end
|