Merge branch 'fix/fetch-votes-restrict-create' into 'develop'
[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 {:ok, activity} =
136 ActivityPub.create(%{
137 to: answer_data["to"],
138 actor: user,
139 context: object.data["context"],
140 object: answer_data,
141 additional: %{"cc" => answer_data["cc"]}
142 })
143
144 activity
145 end)
146
147 object = Object.get_cached_by_ap_id(object.data["id"])
148 {:ok, answer_activities, object}
149 else
150 {:author, _} -> {:error, "Poll's author can't vote"}
151 {:existing_votes, _} -> {:error, "Already voted"}
152 {:choice_check, {_, false}} -> {:error, "Invalid indices"}
153 {:count_check, false} -> {:error, "Too many choices"}
154 end
155 end
156
157 defp get_options_and_max_count(object) do
158 if Map.has_key?(object.data, "anyOf") do
159 {object.data["anyOf"], Enum.count(object.data["anyOf"])}
160 else
161 {object.data["oneOf"], 1}
162 end
163 end
164
165 defp normalize_and_validate_choice_indices(choices, count) do
166 Enum.map_reduce(choices, true, fn index, valid ->
167 index = if is_binary(index), do: String.to_integer(index), else: index
168 {index, if(valid, do: index < count, else: valid)}
169 end)
170 end
171
172 def get_visibility(%{"visibility" => visibility}, in_reply_to)
173 when visibility in ~w{public unlisted private direct},
174 do: {visibility, get_replied_to_visibility(in_reply_to)}
175
176 def get_visibility(_, in_reply_to) when not is_nil(in_reply_to) do
177 visibility = get_replied_to_visibility(in_reply_to)
178 {visibility, visibility}
179 end
180
181 def get_visibility(_, in_reply_to), do: {"public", get_replied_to_visibility(in_reply_to)}
182
183 def get_replied_to_visibility(nil), do: nil
184
185 def get_replied_to_visibility(activity) do
186 with %Object{} = object <- Object.normalize(activity) do
187 Pleroma.Web.ActivityPub.Visibility.get_visibility(object)
188 end
189 end
190
191 def post(user, %{"status" => status} = data) do
192 limit = Pleroma.Config.get([:instance, :limit])
193
194 with status <- String.trim(status),
195 attachments <- attachments_from_ids(data),
196 in_reply_to <- get_replied_to_activity(data["in_reply_to_status_id"]),
197 {visibility, in_reply_to_visibility} <- get_visibility(data, in_reply_to),
198 {_, false} <-
199 {:private_to_public, in_reply_to_visibility == "direct" && visibility != "direct"},
200 {content_html, mentions, tags} <-
201 make_content_html(
202 status,
203 attachments,
204 data,
205 visibility
206 ),
207 {poll, poll_emoji} <- make_poll_data(data),
208 {to, cc} <- to_for_user_and_mentions(user, mentions, in_reply_to, visibility),
209 context <- make_context(in_reply_to),
210 cw <- data["spoiler_text"] || "",
211 sensitive <- data["sensitive"] || Enum.member?(tags, {"#nsfw", "nsfw"}),
212 full_payload <- String.trim(status <> cw),
213 length when length in 1..limit <- String.length(full_payload),
214 object <-
215 make_note_data(
216 user.ap_id,
217 to,
218 context,
219 content_html,
220 attachments,
221 in_reply_to,
222 tags,
223 cw,
224 cc,
225 sensitive,
226 poll
227 ),
228 object <-
229 Map.put(
230 object,
231 "emoji",
232 Map.merge(Formatter.get_emoji_map(full_payload), poll_emoji)
233 ) do
234 res =
235 ActivityPub.create(
236 %{
237 to: to,
238 actor: user,
239 context: context,
240 object: object,
241 additional: %{"cc" => cc, "directMessage" => visibility == "direct"}
242 },
243 Pleroma.Web.ControllerHelper.truthy_param?(data["preview"]) || false
244 )
245
246 res
247 else
248 e -> {:error, e}
249 end
250 end
251
252 # Updates the emojis for a user based on their profile
253 def update(user) do
254 user =
255 with emoji <- emoji_from_profile(user),
256 source_data <- (user.info.source_data || %{}) |> Map.put("tag", emoji),
257 info_cng <- User.Info.set_source_data(user.info, source_data),
258 change <- Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_cng),
259 {:ok, user} <- User.update_and_set_cache(change) do
260 user
261 else
262 _e ->
263 user
264 end
265
266 ActivityPub.update(%{
267 local: true,
268 to: [user.follower_address],
269 cc: [],
270 actor: user.ap_id,
271 object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})
272 })
273 end
274
275 def pin(id_or_ap_id, %{ap_id: user_ap_id} = user) do
276 with %Activity{
277 actor: ^user_ap_id,
278 data: %{
279 "type" => "Create"
280 },
281 object: %Object{
282 data: %{
283 "to" => object_to,
284 "type" => "Note"
285 }
286 }
287 } = activity <- get_by_id_or_ap_id(id_or_ap_id),
288 true <- Enum.member?(object_to, "https://www.w3.org/ns/activitystreams#Public"),
289 %{valid?: true} = info_changeset <-
290 User.Info.add_pinnned_activity(user.info, activity),
291 changeset <-
292 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
293 {:ok, _user} <- User.update_and_set_cache(changeset) do
294 {:ok, activity}
295 else
296 %{errors: [pinned_activities: {err, _}]} ->
297 {:error, err}
298
299 _ ->
300 {:error, "Could not pin"}
301 end
302 end
303
304 def unpin(id_or_ap_id, user) do
305 with %Activity{} = activity <- get_by_id_or_ap_id(id_or_ap_id),
306 %{valid?: true} = info_changeset <-
307 User.Info.remove_pinnned_activity(user.info, activity),
308 changeset <-
309 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
310 {:ok, _user} <- User.update_and_set_cache(changeset) do
311 {:ok, activity}
312 else
313 %{errors: [pinned_activities: {err, _}]} ->
314 {:error, err}
315
316 _ ->
317 {:error, "Could not unpin"}
318 end
319 end
320
321 def add_mute(user, activity) do
322 with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]) do
323 {:ok, activity}
324 else
325 {:error, _} -> {:error, "conversation is already muted"}
326 end
327 end
328
329 def remove_mute(user, activity) do
330 ThreadMute.remove_mute(user.id, activity.data["context"])
331 {:ok, activity}
332 end
333
334 def thread_muted?(%{id: nil} = _user, _activity), do: false
335
336 def thread_muted?(user, activity) do
337 with [] <- ThreadMute.check_muted(user.id, activity.data["context"]) do
338 false
339 else
340 _ -> true
341 end
342 end
343
344 def bookmarked?(user, activity) do
345 with %Bookmark{} <- Bookmark.get(user.id, activity.id) do
346 true
347 else
348 _ ->
349 false
350 end
351 end
352
353 def report(user, data) do
354 with {:account_id, %{"account_id" => account_id}} <- {:account_id, data},
355 {:account, %User{} = account} <- {:account, User.get_cached_by_id(account_id)},
356 {:ok, {content_html, _, _}} <- make_report_content_html(data["comment"]),
357 {:ok, statuses} <- get_report_statuses(account, data),
358 {:ok, activity} <-
359 ActivityPub.flag(%{
360 context: Utils.generate_context_id(),
361 actor: user,
362 account: account,
363 statuses: statuses,
364 content: content_html,
365 forward: data["forward"] || false
366 }) do
367 {:ok, activity}
368 else
369 {:error, err} -> {:error, err}
370 {:account_id, %{}} -> {:error, "Valid `account_id` required"}
371 {:account, nil} -> {:error, "Account not found"}
372 end
373 end
374
375 def update_report_state(activity_id, state) do
376 with %Activity{} = activity <- Activity.get_by_id(activity_id),
377 {:ok, activity} <- Utils.update_report_state(activity, state) do
378 {:ok, activity}
379 else
380 nil ->
381 {:error, :not_found}
382
383 {:error, reason} ->
384 {:error, reason}
385
386 _ ->
387 {:error, "Could not update state"}
388 end
389 end
390
391 def update_activity_scope(activity_id, opts \\ %{}) do
392 with %Activity{} = activity <- Activity.get_by_id_with_object(activity_id),
393 {:ok, activity} <- toggle_sensitive(activity, opts),
394 {:ok, activity} <- set_visibility(activity, opts) do
395 {:ok, activity}
396 else
397 nil ->
398 {:error, :not_found}
399
400 {:error, reason} ->
401 {:error, reason}
402 end
403 end
404
405 defp toggle_sensitive(activity, %{"sensitive" => sensitive}) when sensitive in ~w(true false) do
406 toggle_sensitive(activity, %{"sensitive" => String.to_existing_atom(sensitive)})
407 end
408
409 defp toggle_sensitive(%Activity{object: object} = activity, %{"sensitive" => sensitive})
410 when is_boolean(sensitive) do
411 new_data = Map.put(object.data, "sensitive", sensitive)
412
413 {:ok, object} =
414 object
415 |> Object.change(%{data: new_data})
416 |> Object.update_and_set_cache()
417
418 {:ok, Map.put(activity, :object, object)}
419 end
420
421 defp toggle_sensitive(activity, _), do: {:ok, activity}
422
423 defp set_visibility(activity, %{"visibility" => visibility}) do
424 Utils.update_activity_visibility(activity, visibility)
425 end
426
427 defp set_visibility(activity, _), do: {:ok, activity}
428
429 def hide_reblogs(user, muted) do
430 ap_id = muted.ap_id
431
432 if ap_id not in user.info.muted_reblogs do
433 info_changeset = User.Info.add_reblog_mute(user.info, ap_id)
434 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
435 User.update_and_set_cache(changeset)
436 end
437 end
438
439 def show_reblogs(user, muted) do
440 ap_id = muted.ap_id
441
442 if ap_id in user.info.muted_reblogs do
443 info_changeset = User.Info.remove_reblog_mute(user.info, ap_id)
444 changeset = Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset)
445 User.update_and_set_cache(changeset)
446 end
447 end
448 end