1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.CommonAPI do
7 alias Pleroma.Formatter
9 alias Pleroma.ThreadMute
11 alias Pleroma.Web.ActivityPub.ActivityPub
12 alias Pleroma.Web.ActivityPub.Utils
14 import Pleroma.Web.CommonAPI.Utils
16 def follow(follower, followed) do
17 with {:ok, follower} <- User.maybe_direct_follow(follower, followed),
18 {:ok, activity} <- ActivityPub.follow(follower, followed),
19 {:ok, follower, followed} <-
20 User.wait_and_refresh(
21 Pleroma.Config.get([:activitypub, :follow_handshake_timeout]),
25 {:ok, follower, followed, activity}
29 def unfollow(follower, unfollowed) do
30 with {:ok, follower, _follow_activity} <- User.unfollow(follower, unfollowed),
31 {:ok, _activity} <- ActivityPub.unfollow(follower, unfollowed) do
36 def accept_follow_request(follower, followed) do
37 with {:ok, follower} <- User.maybe_follow(follower, followed),
38 %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
39 {:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "accept"),
44 object: follow_activity.data["id"],
51 def reject_follow_request(follower, followed) do
52 with %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
53 {:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "reject"),
58 object: follow_activity.data["id"],
65 def delete(activity_id, user) do
66 with %Activity{data: %{"object" => _}} = activity <-
67 Activity.get_by_id_with_object(activity_id),
68 %Object{} = object <- Object.normalize(activity),
69 true <- User.superuser?(user) || user.ap_id == object.data["actor"],
70 {:ok, _} <- unpin(activity_id, user),
71 {:ok, delete} <- ActivityPub.delete(object) do
76 def repeat(id_or_ap_id, user) do
77 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
78 object <- Object.normalize(activity),
79 nil <- Utils.get_existing_announce(user.ap_id, object) do
80 ActivityPub.announce(user, object)
83 {:error, "Could not repeat"}
87 def unrepeat(id_or_ap_id, user) do
88 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
89 object <- Object.normalize(activity) do
90 ActivityPub.unannounce(user, object)
93 {:error, "Could not unrepeat"}
97 def favorite(id_or_ap_id, user) do
98 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
99 object <- Object.normalize(activity),
100 nil <- Utils.get_existing_like(user.ap_id, object) do
101 ActivityPub.like(user, object)
104 {:error, "Could not favorite"}
108 def unfavorite(id_or_ap_id, user) do
109 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
110 object <- Object.normalize(activity) do
111 ActivityPub.unlike(user, object)
114 {:error, "Could not unfavorite"}
118 def get_visibility(%{"visibility" => visibility})
119 when visibility in ~w{public unlisted private direct},
122 def get_visibility(%{"in_reply_to_status_id" => status_id}) when not is_nil(status_id) do
123 case get_replied_to_activity(status_id) do
128 Pleroma.Web.MastodonAPI.StatusView.get_visibility(in_reply_to.data["object"])
132 def get_visibility(_), do: "public"
134 def post(user, %{"status" => status} = data) do
135 visibility = get_visibility(data)
136 limit = Pleroma.Config.get([:instance, :limit])
138 with status <- String.trim(status),
139 attachments <- attachments_from_ids(data),
140 in_reply_to <- get_replied_to_activity(data["in_reply_to_status_id"]),
141 {content_html, mentions, tags} <-
148 {to, cc} <- to_for_user_and_mentions(user, mentions, in_reply_to, visibility),
149 context <- make_context(in_reply_to),
150 cw <- data["spoiler_text"],
151 full_payload <- String.trim(status <> (data["spoiler_text"] || "")),
152 length when length in 1..limit <- String.length(full_payload),
169 (Formatter.get_emoji(status) ++ Formatter.get_emoji(data["spoiler_text"]))
170 |> Enum.reduce(%{}, fn {name, file}, acc ->
171 Map.put(acc, name, "#{Pleroma.Web.Endpoint.static_url()}#{file}")
175 ActivityPub.create(%{
180 additional: %{"cc" => cc, "directMessage" => visibility == "direct"}
187 # Updates the emojis for a user based on their profile
190 with emoji <- emoji_from_profile(user),
191 source_data <- (user.info.source_data || %{}) |> Map.put("tag", emoji),
192 info_cng <- Pleroma.User.Info.set_source_data(user.info, source_data),
193 change <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
194 {:ok, user} <- User.update_and_set_cache(change) do
201 ActivityPub.update(%{
203 to: [user.follower_address],
206 object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})
210 def pin(id_or_ap_id, %{ap_id: user_ap_id} = user) do
220 } = activity <- get_by_id_or_ap_id(id_or_ap_id),
221 true <- Enum.member?(object_to, "https://www.w3.org/ns/activitystreams#Public"),
222 %{valid?: true} = info_changeset <-
223 Pleroma.User.Info.add_pinnned_activity(user.info, activity),
225 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
226 {:ok, _user} <- User.update_and_set_cache(changeset) do
229 %{errors: [pinned_activities: {err, _}]} ->
233 {:error, "Could not pin"}
237 def unpin(id_or_ap_id, user) do
238 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
239 %{valid?: true} = info_changeset <-
240 Pleroma.User.Info.remove_pinnned_activity(user.info, activity),
242 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
243 {:ok, _user} <- User.update_and_set_cache(changeset) do
246 %{errors: [pinned_activities: {err, _}]} ->
250 {:error, "Could not unpin"}
254 def add_mute(user, activity) do
255 with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]) do
258 {:error, _} -> {:error, "conversation is already muted"}
262 def remove_mute(user, activity) do
263 ThreadMute.remove_mute(user.id, activity.data["context"])
267 def thread_muted?(%{id: nil} = _user, _activity), do: false
269 def thread_muted?(user, activity) do
270 with [] <- ThreadMute.check_muted(user.id, activity.data["context"]) do
277 def report(user, data) do
278 with {:account_id, %{"account_id" => account_id}} <- {:account_id, data},
279 {:account, %User{} = account} <- {:account, User.get_by_id(account_id)},
280 {:ok, {content_html, _, _}} <- make_report_content_html(data["comment"]),
281 {:ok, statuses} <- get_report_statuses(account, data),
284 context: Utils.generate_context_id(),
288 content: content_html,
289 forward: data["forward"] || false
293 {:error, err} -> {:error, err}
294 {:account_id, %{}} -> {:error, "Valid `account_id` required"}
295 {:account, nil} -> {:error, "Account not found"}
299 def hide_reblogs(user, muted) do
302 if ap_id not in user.info.muted_reblogs do
303 info_changeset = User.Info.add_reblog_mute(user.info, ap_id)
304 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
305 User.update_and_set_cache(changeset)
309 def show_reblogs(user, muted) do
312 if ap_id in user.info.muted_reblogs do
313 info_changeset = User.Info.remove_reblog_mute(user.info, ap_id)
314 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
315 User.update_and_set_cache(changeset)