Merge branch 'feature/788-separate-email-addresses' 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.Formatter
8 alias Pleroma.Object
9 alias Pleroma.ThreadMute
10 alias Pleroma.User
11 alias Pleroma.Web.ActivityPub.ActivityPub
12 alias Pleroma.Web.ActivityPub.Utils
13
14 import Pleroma.Web.CommonAPI.Utils
15
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]),
22 follower,
23 followed
24 ) do
25 {:ok, follower, followed, activity}
26 end
27 end
28
29 def unfollow(follower, unfollowed) do
30 with {:ok, follower, _follow_activity} <- User.unfollow(follower, unfollowed),
31 {:ok, _activity} <- ActivityPub.unfollow(follower, unfollowed) do
32 {:ok, follower}
33 end
34 end
35
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"),
40 {:ok, _activity} <-
41 ActivityPub.accept(%{
42 to: [follower.ap_id],
43 actor: followed,
44 object: follow_activity.data["id"],
45 type: "Accept"
46 }) do
47 {:ok, follower}
48 end
49 end
50
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"),
54 {:ok, _activity} <-
55 ActivityPub.reject(%{
56 to: [follower.ap_id],
57 actor: followed,
58 object: follow_activity.data["id"],
59 type: "Reject"
60 }) do
61 {:ok, follower}
62 end
63 end
64
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
72 {:ok, delete}
73 end
74 end
75
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)
81 else
82 _ ->
83 {:error, "Could not repeat"}
84 end
85 end
86
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)
91 else
92 _ ->
93 {:error, "Could not unrepeat"}
94 end
95 end
96
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)
102 else
103 _ ->
104 {:error, "Could not favorite"}
105 end
106 end
107
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)
112 else
113 _ ->
114 {:error, "Could not unfavorite"}
115 end
116 end
117
118 def get_visibility(%{"visibility" => visibility})
119 when visibility in ~w{public unlisted private direct},
120 do: visibility
121
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
124 nil ->
125 "public"
126
127 in_reply_to ->
128 Pleroma.Web.MastodonAPI.StatusView.get_visibility(in_reply_to.data["object"])
129 end
130 end
131
132 def get_visibility(_), do: "public"
133
134 def post(user, %{"status" => status} = data) do
135 visibility = get_visibility(data)
136 limit = Pleroma.Config.get([:instance, :limit])
137
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} <-
142 make_content_html(
143 status,
144 attachments,
145 data,
146 visibility
147 ),
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),
153 object <-
154 make_note_data(
155 user.ap_id,
156 to,
157 context,
158 content_html,
159 attachments,
160 in_reply_to,
161 tags,
162 cw,
163 cc
164 ),
165 object <-
166 Map.put(
167 object,
168 "emoji",
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}")
172 end)
173 ) do
174 res =
175 ActivityPub.create(
176 %{
177 to: to,
178 actor: user,
179 context: context,
180 object: object,
181 additional: %{"cc" => cc, "directMessage" => visibility == "direct"}
182 },
183 Pleroma.Web.ControllerHelper.truthy_param?(data["preview"]) || false
184 )
185
186 res
187 end
188 end
189
190 # Updates the emojis for a user based on their profile
191 def update(user) do
192 user =
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
198 user
199 else
200 _e ->
201 user
202 end
203
204 ActivityPub.update(%{
205 local: true,
206 to: [user.follower_address],
207 cc: [],
208 actor: user.ap_id,
209 object: Pleroma.Web.ActivityPub.UserView.render("user.json", %{user: user})
210 })
211 end
212
213 def pin(id_or_ap_id, %{ap_id: user_ap_id} = user) do
214 with %Activity{
215 actor: ^user_ap_id,
216 data: %{
217 "type" => "Create",
218 "object" => %{
219 "to" => object_to,
220 "type" => "Note"
221 }
222 }
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),
227 changeset <-
228 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
229 {:ok, _user} <- User.update_and_set_cache(changeset) do
230 {:ok, activity}
231 else
232 %{errors: [pinned_activities: {err, _}]} ->
233 {:error, err}
234
235 _ ->
236 {:error, "Could not pin"}
237 end
238 end
239
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),
244 changeset <-
245 Ecto.Changeset.change(user) |> Ecto.Changeset.put_embed(:info, info_changeset),
246 {:ok, _user} <- User.update_and_set_cache(changeset) do
247 {:ok, activity}
248 else
249 %{errors: [pinned_activities: {err, _}]} ->
250 {:error, err}
251
252 _ ->
253 {:error, "Could not unpin"}
254 end
255 end
256
257 def add_mute(user, activity) do
258 with {:ok, _} <- ThreadMute.add_mute(user.id, activity.data["context"]) do
259 {:ok, activity}
260 else
261 {:error, _} -> {:error, "conversation is already muted"}
262 end
263 end
264
265 def remove_mute(user, activity) do
266 ThreadMute.remove_mute(user.id, activity.data["context"])
267 {:ok, activity}
268 end
269
270 def thread_muted?(%{id: nil} = _user, _activity), do: false
271
272 def thread_muted?(user, activity) do
273 with [] <- ThreadMute.check_muted(user.id, activity.data["context"]) do
274 false
275 else
276 _ -> true
277 end
278 end
279
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),
285 {:ok, activity} <-
286 ActivityPub.flag(%{
287 context: Utils.generate_context_id(),
288 actor: user,
289 account: account,
290 statuses: statuses,
291 content: content_html,
292 forward: data["forward"] || false
293 }) do
294 {:ok, activity}
295 else
296 {:error, err} -> {:error, err}
297 {:account_id, %{}} -> {:error, "Valid `account_id` required"}
298 {:account, nil} -> {:error, "Account not found"}
299 end
300 end
301
302 def hide_reblogs(user, muted) do
303 ap_id = muted.ap_id
304
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)
309 end
310 end
311
312 def show_reblogs(user, muted) do
313 ap_id = muted.ap_id
314
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)
319 end
320 end
321 end