emoji api packs changes in routes with docs update
[akkoma] / lib / pleroma / notification.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Notification do
6 use Ecto.Schema
7
8 alias Pleroma.Activity
9 alias Pleroma.FollowingRelationship
10 alias Pleroma.Notification
11 alias Pleroma.Object
12 alias Pleroma.Pagination
13 alias Pleroma.Repo
14 alias Pleroma.ThreadMute
15 alias Pleroma.User
16 alias Pleroma.Web.CommonAPI.Utils
17 alias Pleroma.Web.Push
18 alias Pleroma.Web.Streamer
19
20 import Ecto.Query
21 import Ecto.Changeset
22
23 require Logger
24
25 @type t :: %__MODULE__{}
26
27 @include_muted_option :with_muted
28
29 schema "notifications" do
30 field(:seen, :boolean, default: false)
31 belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
32 belongs_to(:activity, Activity, type: FlakeId.Ecto.CompatType)
33
34 timestamps()
35 end
36
37 def changeset(%Notification{} = notification, attrs) do
38 notification
39 |> cast(attrs, [:seen])
40 end
41
42 defp for_user_query_ap_id_opts(user, opts) do
43 ap_id_relationships =
44 [:block] ++
45 if opts[@include_muted_option], do: [], else: [:notification_mute]
46
47 preloaded_ap_ids = User.outgoing_relationships_ap_ids(user, ap_id_relationships)
48
49 exclude_blocked_opts = Map.merge(%{blocked_users_ap_ids: preloaded_ap_ids[:block]}, opts)
50
51 exclude_notification_muted_opts =
52 Map.merge(%{notification_muted_users_ap_ids: preloaded_ap_ids[:notification_mute]}, opts)
53
54 {exclude_blocked_opts, exclude_notification_muted_opts}
55 end
56
57 def for_user_query(user, opts \\ %{}) do
58 {exclude_blocked_opts, exclude_notification_muted_opts} =
59 for_user_query_ap_id_opts(user, opts)
60
61 Notification
62 |> where(user_id: ^user.id)
63 |> where(
64 [n, a],
65 fragment(
66 "? not in (SELECT ap_id FROM users WHERE deactivated = 'true')",
67 a.actor
68 )
69 )
70 |> join(:inner, [n], activity in assoc(n, :activity))
71 |> join(:left, [n, a], object in Object,
72 on:
73 fragment(
74 "(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
75 object.data,
76 a.data
77 )
78 )
79 |> preload([n, a, o], activity: {a, object: o})
80 |> exclude_notification_muted(user, exclude_notification_muted_opts)
81 |> exclude_blocked(user, exclude_blocked_opts)
82 |> exclude_visibility(opts)
83 end
84
85 # Excludes blocked users and non-followed domain-blocked users
86 defp exclude_blocked(query, user, opts) do
87 blocked_ap_ids = opts[:blocked_users_ap_ids] || User.blocked_users_ap_ids(user)
88
89 query
90 |> where([n, a], a.actor not in ^blocked_ap_ids)
91 |> FollowingRelationship.keep_following_or_not_domain_blocked(user)
92 end
93
94 defp exclude_notification_muted(query, _, %{@include_muted_option => true}) do
95 query
96 end
97
98 defp exclude_notification_muted(query, user, opts) do
99 notification_muted_ap_ids =
100 opts[:notification_muted_users_ap_ids] || User.notification_muted_users_ap_ids(user)
101
102 query
103 |> where([n, a], a.actor not in ^notification_muted_ap_ids)
104 |> join(:left, [n, a], tm in ThreadMute,
105 on: tm.user_id == ^user.id and tm.context == fragment("?->>'context'", a.data)
106 )
107 |> where([n, a, o, tm], is_nil(tm.user_id))
108 end
109
110 @valid_visibilities ~w[direct unlisted public private]
111
112 defp exclude_visibility(query, %{exclude_visibilities: visibility})
113 when is_list(visibility) do
114 if Enum.all?(visibility, &(&1 in @valid_visibilities)) do
115 query
116 |> join(:left, [n, a], mutated_activity in Pleroma.Activity,
117 on:
118 fragment("?->>'context'", a.data) ==
119 fragment("?->>'context'", mutated_activity.data) and
120 fragment("(?->>'type' = 'Like' or ?->>'type' = 'Announce')", a.data, a.data) and
121 fragment("?->>'type'", mutated_activity.data) == "Create",
122 as: :mutated_activity
123 )
124 |> where(
125 [n, a, mutated_activity: mutated_activity],
126 not fragment(
127 """
128 CASE WHEN (?->>'type') = 'Like' or (?->>'type') = 'Announce'
129 THEN (activity_visibility(?, ?, ?) = ANY (?))
130 ELSE (activity_visibility(?, ?, ?) = ANY (?)) END
131 """,
132 a.data,
133 a.data,
134 mutated_activity.actor,
135 mutated_activity.recipients,
136 mutated_activity.data,
137 ^visibility,
138 a.actor,
139 a.recipients,
140 a.data,
141 ^visibility
142 )
143 )
144 else
145 Logger.error("Could not exclude visibility to #{visibility}")
146 query
147 end
148 end
149
150 defp exclude_visibility(query, %{exclude_visibilities: visibility})
151 when visibility in @valid_visibilities do
152 exclude_visibility(query, [visibility])
153 end
154
155 defp exclude_visibility(query, %{exclude_visibilities: visibility})
156 when visibility not in @valid_visibilities do
157 Logger.error("Could not exclude visibility to #{visibility}")
158 query
159 end
160
161 defp exclude_visibility(query, _visibility), do: query
162
163 def for_user(user, opts \\ %{}) do
164 user
165 |> for_user_query(opts)
166 |> Pagination.fetch_paginated(opts)
167 end
168
169 @doc """
170 Returns notifications for user received since given date.
171
172 ## Examples
173
174 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-13 11:22:33])
175 [%Pleroma.Notification{}, %Pleroma.Notification{}]
176
177 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-15 11:22:33])
178 []
179 """
180 @spec for_user_since(Pleroma.User.t(), NaiveDateTime.t()) :: [t()]
181 def for_user_since(user, date) do
182 from(n in for_user_query(user),
183 where: n.updated_at > ^date
184 )
185 |> Repo.all()
186 end
187
188 def set_read_up_to(%{id: user_id} = _user, id) do
189 query =
190 from(
191 n in Notification,
192 where: n.user_id == ^user_id,
193 where: n.id <= ^id,
194 where: n.seen == false,
195 update: [
196 set: [
197 seen: true,
198 updated_at: ^NaiveDateTime.utc_now()
199 ]
200 ],
201 # Ideally we would preload object and activities here
202 # but Ecto does not support preloads in update_all
203 select: n.id
204 )
205
206 {_, notification_ids} = Repo.update_all(query, [])
207
208 Notification
209 |> where([n], n.id in ^notification_ids)
210 |> join(:inner, [n], activity in assoc(n, :activity))
211 |> join(:left, [n, a], object in Object,
212 on:
213 fragment(
214 "(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
215 object.data,
216 a.data
217 )
218 )
219 |> preload([n, a, o], activity: {a, object: o})
220 |> Repo.all()
221 end
222
223 def read_one(%User{} = user, notification_id) do
224 with {:ok, %Notification{} = notification} <- get(user, notification_id) do
225 notification
226 |> changeset(%{seen: true})
227 |> Repo.update()
228 end
229 end
230
231 def get(%{id: user_id} = _user, id) do
232 query =
233 from(
234 n in Notification,
235 where: n.id == ^id,
236 join: activity in assoc(n, :activity),
237 preload: [activity: activity]
238 )
239
240 notification = Repo.one(query)
241
242 case notification do
243 %{user_id: ^user_id} ->
244 {:ok, notification}
245
246 _ ->
247 {:error, "Cannot get notification"}
248 end
249 end
250
251 def clear(user) do
252 from(n in Notification, where: n.user_id == ^user.id)
253 |> Repo.delete_all()
254 end
255
256 def destroy_multiple(%{id: user_id} = _user, ids) do
257 from(n in Notification,
258 where: n.id in ^ids,
259 where: n.user_id == ^user_id
260 )
261 |> Repo.delete_all()
262 end
263
264 def dismiss(%{id: user_id} = _user, id) do
265 notification = Repo.get(Notification, id)
266
267 case notification do
268 %{user_id: ^user_id} ->
269 Repo.delete(notification)
270
271 _ ->
272 {:error, "Cannot dismiss notification"}
273 end
274 end
275
276 def create_notifications(%Activity{data: %{"to" => _, "type" => "Create"}} = activity) do
277 object = Object.normalize(activity)
278
279 if object && object.data["type"] == "Answer" do
280 {:ok, []}
281 else
282 do_create_notifications(activity)
283 end
284 end
285
286 def create_notifications(%Activity{data: %{"type" => "Follow"}} = activity) do
287 if Pleroma.Config.get([:notifications, :enable_follow_request_notifications]) ||
288 Activity.follow_accepted?(activity) do
289 do_create_notifications(activity)
290 else
291 {:ok, []}
292 end
293 end
294
295 def create_notifications(%Activity{data: %{"type" => type}} = activity)
296 when type in ["Like", "Announce", "Move", "EmojiReact"] do
297 do_create_notifications(activity)
298 end
299
300 def create_notifications(_), do: {:ok, []}
301
302 defp do_create_notifications(%Activity{} = activity) do
303 {enabled_receivers, disabled_receivers} = get_notified_from_activity(activity)
304 potential_receivers = enabled_receivers ++ disabled_receivers
305
306 notifications =
307 Enum.map(potential_receivers, fn user ->
308 do_send = user in enabled_receivers
309 create_notification(activity, user, do_send)
310 end)
311
312 {:ok, notifications}
313 end
314
315 # TODO move to sql, too.
316 def create_notification(%Activity{} = activity, %User{} = user, do_send \\ true) do
317 unless skip?(activity, user) do
318 notification = %Notification{user_id: user.id, activity: activity}
319 {:ok, notification} = Repo.insert(notification)
320
321 if do_send do
322 Streamer.stream(["user", "user:notification"], notification)
323 Push.send(notification)
324 end
325
326 notification
327 end
328 end
329
330 @doc """
331 Returns a tuple with 2 elements:
332 {notification-enabled receivers, currently disabled receivers (blocking / [thread] muting)}
333
334 NOTE: might be called for FAKE Activities, see ActivityPub.Utils.get_notified_from_object/1
335 """
336 @spec get_notified_from_activity(Activity.t(), boolean()) :: {list(User.t()), list(User.t())}
337 def get_notified_from_activity(activity, local_only \\ true)
338
339 def get_notified_from_activity(%Activity{data: %{"type" => type}} = activity, local_only)
340 when type in ["Create", "Like", "Announce", "Follow", "Move", "EmojiReact"] do
341 potential_receiver_ap_ids =
342 []
343 |> Utils.maybe_notify_to_recipients(activity)
344 |> Utils.maybe_notify_mentioned_recipients(activity)
345 |> Utils.maybe_notify_subscribers(activity)
346 |> Utils.maybe_notify_followers(activity)
347 |> Enum.uniq()
348
349 potential_receivers = User.get_users_from_set(potential_receiver_ap_ids, local_only)
350
351 notification_enabled_ap_ids =
352 potential_receiver_ap_ids
353 |> exclude_domain_blocker_ap_ids(activity, potential_receivers)
354 |> exclude_relationship_restricted_ap_ids(activity)
355 |> exclude_thread_muter_ap_ids(activity)
356
357 notification_enabled_users =
358 Enum.filter(potential_receivers, fn u -> u.ap_id in notification_enabled_ap_ids end)
359
360 {notification_enabled_users, potential_receivers -- notification_enabled_users}
361 end
362
363 def get_notified_from_activity(_, _local_only), do: {[], []}
364
365 @doc "Filters out AP IDs domain-blocking and not following the activity's actor"
366 def exclude_domain_blocker_ap_ids(ap_ids, activity, preloaded_users \\ [])
367
368 def exclude_domain_blocker_ap_ids([], _activity, _preloaded_users), do: []
369
370 def exclude_domain_blocker_ap_ids(ap_ids, %Activity{} = activity, preloaded_users) do
371 activity_actor_domain = activity.actor && URI.parse(activity.actor).host
372
373 users =
374 ap_ids
375 |> Enum.map(fn ap_id ->
376 Enum.find(preloaded_users, &(&1.ap_id == ap_id)) ||
377 User.get_cached_by_ap_id(ap_id)
378 end)
379 |> Enum.filter(& &1)
380
381 domain_blocker_ap_ids = for u <- users, activity_actor_domain in u.domain_blocks, do: u.ap_id
382
383 domain_blocker_follower_ap_ids =
384 if Enum.any?(domain_blocker_ap_ids) do
385 activity
386 |> Activity.user_actor()
387 |> FollowingRelationship.followers_ap_ids(domain_blocker_ap_ids)
388 else
389 []
390 end
391
392 ap_ids
393 |> Kernel.--(domain_blocker_ap_ids)
394 |> Kernel.++(domain_blocker_follower_ap_ids)
395 end
396
397 @doc "Filters out AP IDs of users basing on their relationships with activity actor user"
398 def exclude_relationship_restricted_ap_ids([], _activity), do: []
399
400 def exclude_relationship_restricted_ap_ids(ap_ids, %Activity{} = activity) do
401 relationship_restricted_ap_ids =
402 activity
403 |> Activity.user_actor()
404 |> User.incoming_relationships_ungrouped_ap_ids([
405 :block,
406 :notification_mute
407 ])
408
409 Enum.uniq(ap_ids) -- relationship_restricted_ap_ids
410 end
411
412 @doc "Filters out AP IDs of users who mute activity thread"
413 def exclude_thread_muter_ap_ids([], _activity), do: []
414
415 def exclude_thread_muter_ap_ids(ap_ids, %Activity{} = activity) do
416 thread_muter_ap_ids = ThreadMute.muter_ap_ids(activity.data["context"])
417
418 Enum.uniq(ap_ids) -- thread_muter_ap_ids
419 end
420
421 @spec skip?(Activity.t(), User.t()) :: boolean()
422 def skip?(%Activity{} = activity, %User{} = user) do
423 [
424 :self,
425 :followers,
426 :follows,
427 :non_followers,
428 :non_follows,
429 :recently_followed
430 ]
431 |> Enum.find(&skip?(&1, activity, user))
432 end
433
434 def skip?(_, _), do: false
435
436 @spec skip?(atom(), Activity.t(), User.t()) :: boolean()
437 def skip?(:self, %Activity{} = activity, %User{} = user) do
438 activity.data["actor"] == user.ap_id
439 end
440
441 def skip?(
442 :followers,
443 %Activity{} = activity,
444 %User{notification_settings: %{followers: false}} = user
445 ) do
446 actor = activity.data["actor"]
447 follower = User.get_cached_by_ap_id(actor)
448 User.following?(follower, user)
449 end
450
451 def skip?(
452 :non_followers,
453 %Activity{} = activity,
454 %User{notification_settings: %{non_followers: false}} = user
455 ) do
456 actor = activity.data["actor"]
457 follower = User.get_cached_by_ap_id(actor)
458 !User.following?(follower, user)
459 end
460
461 def skip?(
462 :follows,
463 %Activity{} = activity,
464 %User{notification_settings: %{follows: false}} = user
465 ) do
466 actor = activity.data["actor"]
467 followed = User.get_cached_by_ap_id(actor)
468 User.following?(user, followed)
469 end
470
471 def skip?(
472 :non_follows,
473 %Activity{} = activity,
474 %User{notification_settings: %{non_follows: false}} = user
475 ) do
476 actor = activity.data["actor"]
477 followed = User.get_cached_by_ap_id(actor)
478 !User.following?(user, followed)
479 end
480
481 # To do: consider defining recency in hours and checking FollowingRelationship with a single SQL
482 def skip?(:recently_followed, %Activity{data: %{"type" => "Follow"}} = activity, %User{} = user) do
483 actor = activity.data["actor"]
484
485 Notification.for_user(user)
486 |> Enum.any?(fn
487 %{activity: %{data: %{"type" => "Follow", "actor" => ^actor}}} -> true
488 _ -> false
489 end)
490 end
491
492 def skip?(_, _, _), do: false
493 end