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}")
181 additional: %{"cc" => cc, "directMessage" => visibility == "direct"}
183 Pleroma.Web.ControllerHelper.truthy_param?(data["preview"]) || false
190 # Updates the emojis for a user based on their profile
193 with emoji <- emoji_from_profile(user),
194 source_data <- (user.info.source_data || %{}) |> Map.put("tag", emoji),
195 info_cng <- Pleroma.User.Info.set_source_data(user.info, source_data),
196 change <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
197 {:ok, user} <- User.update_and_set_cache(change) do
204 ActivityPub.update(%{
206 to: [user.follower_address],
209 object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})
213 def pin(id_or_ap_id, %{ap_id: user_ap_id} = user) do
223 } = activity <- get_by_id_or_ap_id(id_or_ap_id),
224 true <- Enum.member?(object_to, "https://www.w3.org/ns/activitystreams#Public"),
225 %{valid?: true} = info_changeset <-
226 Pleroma.User.Info.add_pinnned_activity(user.info, activity),
228 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
229 {:ok, _user} <- User.update_and_set_cache(changeset) do
232 %{errors: [pinned_activities: {err, _}]} ->
236 {:error, "Could not pin"}
240 def unpin(id_or_ap_id, user) do
241 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
242 %{valid?: true} = info_changeset <-
243 Pleroma.User.Info.remove_pinnned_activity(user.info, activity),
245 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
246 {:ok, _user} <- User.update_and_set_cache(changeset) do
249 %{errors: [pinned_activities: {err, _}]} ->
253 {:error, "Could not unpin"}
257 def add_mute(user, activity) do
258 with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]) do
261 {:error, _} -> {:error, "conversation is already muted"}
265 def remove_mute(user, activity) do
266 ThreadMute.remove_mute(user.id, activity.data["context"])
270 def thread_muted?(%{id: nil} = _user, _activity), do: false
272 def thread_muted?(user, activity) do
273 with [] <- ThreadMute.check_muted(user.id, activity.data["context"]) do
280 def report(user, data) do
281 with {:account_id, %{"account_id" => account_id}} <- {:account_id, data},
282 {:account, %User{} = account} <- {:account, User.get_by_id(account_id)},
283 {:ok, {content_html, _, _}} <- make_report_content_html(data["comment"]),
284 {:ok, statuses} <- get_report_statuses(account, data),
287 context: Utils.generate_context_id(),
291 content: content_html,
292 forward: data["forward"] || false
296 {:error, err} -> {:error, err}
297 {:account_id, %{}} -> {:error, "Valid `account_id` required"}
298 {:account, nil} -> {:error, "Account not found"}
302 def hide_reblogs(user, muted) do
305 if ap_id not in user.info.muted_reblogs do
306 info_changeset = User.Info.add_reblog_mute(user.info, ap_id)
307 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
308 User.update_and_set_cache(changeset)
312 def show_reblogs(user, muted) do
315 if ap_id in user.info.muted_reblogs do
316 info_changeset = User.Info.remove_reblog_mute(user.info, ap_id)
317 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
318 User.update_and_set_cache(changeset)