Merge branch 'develop' into update-oauth-template
[akkoma] / lib / pleroma / web / common_api / common_api.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.CommonAPI do
6 alias Pleroma.Activity
7 alias Pleroma.Bookmark
8 alias Pleroma.Formatter
9 alias Pleroma.Object
10 alias Pleroma.ThreadMute
11 alias Pleroma.User
12 alias Pleroma.Web.ActivityPub.ActivityPub
13 alias Pleroma.Web.ActivityPub.Utils
14
15 import Pleroma.Web.CommonAPI.Utils
16
17 def follow(follower, followed) do
18 with {:ok, follower} <- User.maybe_direct_follow(follower, followed),
19 {:ok, activity} <- ActivityPub.follow(follower, followed),
20 {:ok, follower, followed} <-
21 User.wait_and_refresh(
22 Pleroma.Config.get([:activitypub, :follow_handshake_timeout]),
23 follower,
24 followed
25 ) do
26 {:ok, follower, followed, activity}
27 end
28 end
29
30 def unfollow(follower, unfollowed) do
31 with {:ok, follower, _follow_activity} <- User.unfollow(follower, unfollowed),
32 {:ok, _activity} <- ActivityPub.unfollow(follower, unfollowed) do
33 {:ok, follower}
34 end
35 end
36
37 def accept_follow_request(follower, followed) do
38 with {:ok, follower} <- User.maybe_follow(follower, followed),
39 %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
40 {:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "accept"),
41 {:ok, _activity} <-
42 ActivityPub.accept(%{
43 to: [follower.ap_id],
44 actor: followed,
45 object: follow_activity.data["id"],
46 type: "Accept"
47 }) do
48 {:ok, follower}
49 end
50 end
51
52 def reject_follow_request(follower, followed) do
53 with %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
54 {:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "reject"),
55 {:ok, _activity} <-
56 ActivityPub.reject(%{
57 to: [follower.ap_id],
58 actor: followed,
59 object: follow_activity.data["id"],
60 type: "Reject"
61 }) do
62 {:ok, follower}
63 end
64 end
65
66 def delete(activity_id, user) do
67 with %Activity{data: %{"object" => _}} = activity <-
68 Activity.get_by_id_with_object(activity_id),
69 %Object{} = object <- Object.normalize(activity),
70 true <- User.superuser?(user) || user.ap_id == object.data["actor"],
71 {:ok, _} <- unpin(activity_id, user),
72 {:ok, delete} <- ActivityPub.delete(object) do
73 {:ok, delete}
74 else
75 _ ->
76 {:error, "Could not delete"}
77 end
78 end
79
80 def repeat(id_or_ap_id, user) do
81 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
82 object <- Object.normalize(activity),
83 nil <- Utils.get_existing_announce(user.ap_id, object) do
84 ActivityPub.announce(user, object)
85 else
86 _ ->
87 {:error, "Could not repeat"}
88 end
89 end
90
91 def unrepeat(id_or_ap_id, user) do
92 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
93 object <- Object.normalize(activity) do
94 ActivityPub.unannounce(user, object)
95 else
96 _ ->
97 {:error, "Could not unrepeat"}
98 end
99 end
100
101 def favorite(id_or_ap_id, user) do
102 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
103 object <- Object.normalize(activity),
104 nil <- Utils.get_existing_like(user.ap_id, object) do
105 ActivityPub.like(user, object)
106 else
107 _ ->
108 {:error, "Could not favorite"}
109 end
110 end
111
112 def unfavorite(id_or_ap_id, user) do
113 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
114 object <- Object.normalize(activity) do
115 ActivityPub.unlike(user, object)
116 else
117 _ ->
118 {:error, "Could not unfavorite"}
119 end
120 end
121
122 def vote(user, object, choices) do
123 with "Question" <- object.data["type"],
124 {:author, false} <- {:author, object.data["actor"] == user.ap_id},
125 {:existing_votes, []} <- {:existing_votes, Utils.get_existing_votes(user.ap_id, object)},
126 {options, max_count} <- get_options_and_max_count(object),
127 option_count <- Enum.count(options),
128 {:choice_check, {choices, true}} <-
129 {:choice_check, normalize_and_validate_choice_indices(choices, option_count)},
130 {:count_check, true} <- {:count_check, Enum.count(choices) <= max_count} do
131 answer_activities =
132 Enum.map(choices, fn index ->
133 answer_data = make_answer_data(user, object, Enum.at(options, index)["name"])
134
135 ActivityPub.create(%{
136 to: answer_data["to"],
137 actor: user,
138 context: object.data["context"],
139 object: answer_data,
140 additional: %{"cc" => answer_data["cc"]}
141 })
142 end)
143
144 object = Object.get_cached_by_ap_id(object.data["id"])
145 {:ok, answer_activities, object}
146 else
147 {:author, _} -> {:error, "Poll's author can't vote"}
148 {:existing_votes, _} -> {:error, "Already voted"}
149 {:choice_check, {_, false}} -> {:error, "Invalid indices"}
150 {:count_check, false} -> {:error, "Too many choices"}
151 end
152 end
153
154 defp get_options_and_max_count(object) do
155 if Map.has_key?(object.data, "anyOf") do
156 {object.data["anyOf"], Enum.count(object.data["anyOf"])}
157 else
158 {object.data["oneOf"], 1}
159 end
160 end
161
162 defp normalize_and_validate_choice_indices(choices, count) do
163 Enum.map_reduce(choices, true, fn index, valid ->
164 index = if is_binary(index), do: String.to_integer(index), else: index
165 {index, if(valid, do: index < count, else: valid)}
166 end)
167 end
168
169 def get_visibility(%{"visibility" => visibility}, in_reply_to)
170 when visibility in ~w{public unlisted private direct},
171 do: {visibility, get_replied_to_visibility(in_reply_to)}
172
173 def get_visibility(_, in_reply_to) when not is_nil(in_reply_to) do
174 visibility = get_replied_to_visibility(in_reply_to)
175 {visibility, visibility}
176 end
177
178 def get_visibility(_, in_reply_to), do: {"public", get_replied_to_visibility(in_reply_to)}
179
180 def get_replied_to_visibility(nil), do: nil
181
182 def get_replied_to_visibility(activity) do
183 with %Object{} = object <- Object.normalize(activity) do
184 Pleroma.Web.ActivityPub.Visibility.get_visibility(object)
185 end
186 end
187
188 def post(user, %{"status" => status} = data) do
189 limit = Pleroma.Config.get([:instance, :limit])
190
191 with status <- String.trim(status),
192 attachments <- attachments_from_ids(data),
193 in_reply_to <- get_replied_to_activity(data["in_reply_to_status_id"]),
194 {visibility, in_reply_to_visibility} <- get_visibility(data, in_reply_to),
195 {_, false} <-
196 {:private_to_public, in_reply_to_visibility == "direct" && visibility != "direct"},
197 {content_html, mentions, tags} <-
198 make_content_html(
199 status,
200 attachments,
201 data,
202 visibility
203 ),
204 {poll, poll_emoji} <- make_poll_data(data),
205 {to, cc} <- to_for_user_and_mentions(user, mentions, in_reply_to, visibility),
206 context <- make_context(in_reply_to),
207 cw <- data["spoiler_text"] || "",
208 sensitive <- data["sensitive"] || Enum.member?(tags, {"#nsfw", "nsfw"}),
209 full_payload <- String.trim(status <> cw),
210 length when length in 1..limit <- String.length(full_payload),
211 object <-
212 make_note_data(
213 user.ap_id,
214 to,
215 context,
216 content_html,
217 attachments,
218 in_reply_to,
219 tags,
220 cw,
221 cc,
222 sensitive,
223 poll
224 ),
225 object <-
226 Map.put(
227 object,
228 "emoji",
229 Map.merge(Formatter.get_emoji_map(full_payload), poll_emoji)
230 ) do
231 res =
232 ActivityPub.create(
233 %{
234 to: to,
235 actor: user,
236 context: context,
237 object: object,
238 additional: %{"cc" => cc, "directMessage" => visibility == "direct"}
239 },
240 Pleroma.Web.ControllerHelper.truthy_param?(data["preview"]) || false
241 )
242
243 res
244 else
245 e -> {:error, e}
246 end
247 end
248
249 # Updates the emojis for a user based on their profile
250 def update(user) do
251 user =
252 with emoji <- emoji_from_profile(user),
253 source_data <- (user.info.source_data || %{}) |> Map.put("tag", emoji),
254 info_cng <- User.Info.set_source_data(user.info, source_data),
255 change <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
256 {:ok, user} <- User.update_and_set_cache(change) do
257 user
258 else
259 _e ->
260 user
261 end
262
263 ActivityPub.update(%{
264 local: true,
265 to: [user.follower_address],
266 cc: [],
267 actor: user.ap_id,
268 object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})
269 })
270 end
271
272 def pin(id_or_ap_id, %{ap_id: user_ap_id} = user) do
273 with %Activity{
274 actor: ^user_ap_id,
275 data: %{
276 "type" => "Create"
277 },
278 object: %Object{
279 data: %{
280 "to" => object_to,
281 "type" => "Note"
282 }
283 }
284 } = activity <- get_by_id_or_ap_id(id_or_ap_id),
285 true <- Enum.member?(object_to, "https://www.w3.org/ns/activitystreams#Public"),
286 %{valid?: true} = info_changeset <-
287 User.Info.add_pinnned_activity(user.info, activity),
288 changeset <-
289 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
290 {:ok, _user} <- User.update_and_set_cache(changeset) do
291 {:ok, activity}
292 else
293 %{errors: [pinned_activities: {err, _}]} ->
294 {:error, err}
295
296 _ ->
297 {:error, "Could not pin"}
298 end
299 end
300
301 def unpin(id_or_ap_id, user) do
302 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
303 %{valid?: true} = info_changeset <-
304 User.Info.remove_pinnned_activity(user.info, activity),
305 changeset <-
306 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
307 {:ok, _user} <- User.update_and_set_cache(changeset) do
308 {:ok, activity}
309 else
310 %{errors: [pinned_activities: {err, _}]} ->
311 {:error, err}
312
313 _ ->
314 {:error, "Could not unpin"}
315 end
316 end
317
318 def add_mute(user, activity) do
319 with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]) do
320 {:ok, activity}
321 else
322 {:error, _} -> {:error, "conversation is already muted"}
323 end
324 end
325
326 def remove_mute(user, activity) do
327 ThreadMute.remove_mute(user.id, activity.data["context"])
328 {:ok, activity}
329 end
330
331 def thread_muted?(%{id: nil} = _user, _activity), do: false
332
333 def thread_muted?(user, activity) do
334 with [] <- ThreadMute.check_muted(user.id, activity.data["context"]) do
335 false
336 else
337 _ -> true
338 end
339 end
340
341 def bookmarked?(user, activity) do
342 with %Bookmark{} <- Bookmark.get(user.id, activity.id) do
343 true
344 else
345 _ ->
346 false
347 end
348 end
349
350 def report(user, data) do
351 with {:account_id, %{"account_id" => account_id}} <- {:account_id, data},
352 {:account, %User{} = account} <- {:account, User.get_cached_by_id(account_id)},
353 {:ok, {content_html, _, _}} <- make_report_content_html(data["comment"]),
354 {:ok, statuses} <- get_report_statuses(account, data),
355 {:ok, activity} <-
356 ActivityPub.flag(%{
357 context: Utils.generate_context_id(),
358 actor: user,
359 account: account,
360 statuses: statuses,
361 content: content_html,
362 forward: data["forward"] || false
363 }) do
364 {:ok, activity}
365 else
366 {:error, err} -> {:error, err}
367 {:account_id, %{}} -> {:error, "Valid `account_id` required"}
368 {:account, nil} -> {:error, "Account not found"}
369 end
370 end
371
372 def update_report_state(activity_id, state) do
373 with %Activity{} = activity <- Activity.get_by_id(activity_id),
374 {:ok, activity} <- Utils.update_report_state(activity, state) do
375 {:ok, activity}
376 else
377 nil ->
378 {:error, :not_found}
379
380 {:error, reason} ->
381 {:error, reason}
382
383 _ ->
384 {:error, "Could not update state"}
385 end
386 end
387
388 def update_activity_scope(activity_id, opts \\ %{}) do
389 with %Activity{} = activity <- Activity.get_by_id_with_object(activity_id),
390 {:ok, activity} <- toggle_sensitive(activity, opts),
391 {:ok, activity} <- set_visibility(activity, opts) do
392 {:ok, activity}
393 else
394 nil ->
395 {:error, :not_found}
396
397 {:error, reason} ->
398 {:error, reason}
399 end
400 end
401
402 defp toggle_sensitive(activity, %{"sensitive" => sensitive}) when sensitive in ~w(true false) do
403 toggle_sensitive(activity, %{"sensitive" => String.to_existing_atom(sensitive)})
404 end
405
406 defp toggle_sensitive(%Activity{object: object} = activity, %{"sensitive" => sensitive})
407 when is_boolean(sensitive) do
408 new_data = Map.put(object.data, "sensitive", sensitive)
409
410 {:ok, object} =
411 object
412 |> Object.change(%{data: new_data})
413 |> Object.update_and_set_cache()
414
415 {:ok, Map.put(activity, :object, object)}
416 end
417
418 defp toggle_sensitive(activity, _), do: {:ok, activity}
419
420 defp set_visibility(activity, %{"visibility" => visibility}) do
421 Utils.update_activity_visibility(activity, visibility)
422 end
423
424 defp set_visibility(activity, _), do: {:ok, activity}
425
426 def hide_reblogs(user, muted) do
427 ap_id = muted.ap_id
428
429 if ap_id not in user.info.muted_reblogs do
430 info_changeset = User.Info.add_reblog_mute(user.info, ap_id)
431 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
432 User.update_and_set_cache(changeset)
433 end
434 end
435
436 def show_reblogs(user, muted) do
437 ap_id = muted.ap_id
438
439 if ap_id in user.info.muted_reblogs do
440 info_changeset = User.Info.remove_reblog_mute(user.info, ap_id)
441 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
442 User.update_and_set_cache(changeset)
443 end
444 end
445 end