1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Notification do
10 alias Pleroma.FollowingRelationship
12 alias Pleroma.Notification
14 alias Pleroma.Pagination
16 alias Pleroma.ThreadMute
18 alias Pleroma.Web.CommonAPI
19 alias Pleroma.Web.CommonAPI.Utils
20 alias Pleroma.Web.Push
21 alias Pleroma.Web.Streamer
28 @type t :: %__MODULE__{}
30 @include_muted_option :with_muted
32 schema "notifications" do
33 field(:seen, :boolean, default: false)
34 # This is an enum type in the database. If you add a new notification type,
35 # remember to add a migration to add it to the `notifications_type` enum
38 belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
39 belongs_to(:activity, Activity, type: FlakeId.Ecto.CompatType)
44 def update_notification_type(user, activity) do
45 with %__MODULE__{} = notification <-
46 Repo.get_by(__MODULE__, user_id: user.id, activity_id: activity.id) do
49 |> type_from_activity()
52 |> changeset(%{type: type})
57 @spec unread_notifications_count(User.t()) :: integer()
58 def unread_notifications_count(%User{id: user_id}) do
60 where: q.user_id == ^user_id and q.seen == false
62 |> Repo.aggregate(:count, :id)
65 @notification_types ~w{
72 pleroma:emoji_reaction
76 def changeset(%Notification{} = notification, attrs) do
78 |> cast(attrs, [:seen, :type])
79 |> validate_inclusion(:type, @notification_types)
82 @spec last_read_query(User.t()) :: Ecto.Queryable.t()
83 def last_read_query(user) do
84 from(q in Pleroma.Notification,
85 where: q.user_id == ^user.id,
86 where: q.seen == true,
87 select: type(q.id, :string),
93 defp for_user_query_ap_id_opts(user, opts) do
96 if opts[@include_muted_option], do: [], else: [:notification_mute]
98 preloaded_ap_ids = User.outgoing_relationships_ap_ids(user, ap_id_relationships)
100 exclude_blocked_opts = Map.merge(%{blocked_users_ap_ids: preloaded_ap_ids[:block]}, opts)
102 exclude_notification_muted_opts =
103 Map.merge(%{notification_muted_users_ap_ids: preloaded_ap_ids[:notification_mute]}, opts)
105 {exclude_blocked_opts, exclude_notification_muted_opts}
108 def for_user_query(user, opts \\ %{}) do
109 {exclude_blocked_opts, exclude_notification_muted_opts} =
110 for_user_query_ap_id_opts(user, opts)
113 |> where(user_id: ^user.id)
117 "? not in (SELECT ap_id FROM users WHERE deactivated = 'true')",
121 |> join(:inner, [n], activity in assoc(n, :activity))
122 |> join(:left, [n, a], object in Object,
125 "(?->>'id') = COALESCE(?->'object'->>'id', ?->>'object')",
131 |> preload([n, a, o], activity: {a, object: o})
132 |> exclude_notification_muted(user, exclude_notification_muted_opts)
133 |> exclude_blocked(user, exclude_blocked_opts)
134 |> exclude_filtered(user)
135 |> exclude_visibility(opts)
138 # Excludes blocked users and non-followed domain-blocked users
139 defp exclude_blocked(query, user, opts) do
140 blocked_ap_ids = opts[:blocked_users_ap_ids] || User.blocked_users_ap_ids(user)
143 |> where([n, a], a.actor not in ^blocked_ap_ids)
144 |> FollowingRelationship.keep_following_or_not_domain_blocked(user)
147 defp exclude_notification_muted(query, _, %{@include_muted_option => true}) do
151 defp exclude_notification_muted(query, user, opts) do
152 notification_muted_ap_ids =
153 opts[:notification_muted_users_ap_ids] || User.notification_muted_users_ap_ids(user)
156 |> where([n, a], a.actor not in ^notification_muted_ap_ids)
157 |> join(:left, [n, a], tm in ThreadMute,
158 on: tm.user_id == ^user.id and tm.context == fragment("?->>'context'", a.data)
160 |> where([n, a, o, tm], is_nil(tm.user_id))
163 defp exclude_filtered(query, user) do
164 case Pleroma.Filter.compose_regex(user) do
169 from([_n, a, o] in query,
171 fragment("not(?->>'content' ~* ?)", o.data, ^regex) or
172 fragment("?->>'actor' = ?", o.data, ^user.ap_id)
177 @valid_visibilities ~w[direct unlisted public private]
179 defp exclude_visibility(query, %{exclude_visibilities: visibility})
180 when is_list(visibility) do
181 if Enum.all?(visibility, &(&1 in @valid_visibilities)) do
183 |> join(:left, [n, a], mutated_activity in Pleroma.Activity,
186 "COALESCE((?->'object')->>'id', ?->>'object')",
191 "COALESCE((?->'object')->>'id', ?->>'object')",
192 mutated_activity.data,
193 mutated_activity.data
195 fragment("(?->>'type' = 'Like' or ?->>'type' = 'Announce')", a.data, a.data) and
196 fragment("?->>'type'", mutated_activity.data) == "Create",
197 as: :mutated_activity
200 [n, a, mutated_activity: mutated_activity],
203 CASE WHEN (?->>'type') = 'Like' or (?->>'type') = 'Announce'
204 THEN (activity_visibility(?, ?, ?) = ANY (?))
205 ELSE (activity_visibility(?, ?, ?) = ANY (?)) END
209 mutated_activity.actor,
210 mutated_activity.recipients,
211 mutated_activity.data,
220 Logger.error("Could not exclude visibility to #{visibility}")
225 defp exclude_visibility(query, %{exclude_visibilities: visibility})
226 when visibility in @valid_visibilities do
227 exclude_visibility(query, [visibility])
230 defp exclude_visibility(query, %{exclude_visibilities: visibility})
231 when visibility not in @valid_visibilities do
232 Logger.error("Could not exclude visibility to #{visibility}")
236 defp exclude_visibility(query, _visibility), do: query
238 def for_user(user, opts \\ %{}) do
240 |> for_user_query(opts)
241 |> Pagination.fetch_paginated(opts)
245 Returns notifications for user received since given date.
249 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-13 11:22:33])
250 [%Pleroma.Notification{}, %Pleroma.Notification{}]
252 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-15 11:22:33])
255 @spec for_user_since(Pleroma.User.t(), NaiveDateTime.t()) :: [t()]
256 def for_user_since(user, date) do
257 from(n in for_user_query(user),
258 where: n.updated_at > ^date
263 def set_read_up_to(%{id: user_id} = user, id) do
267 where: n.user_id == ^user_id,
269 where: n.seen == false,
270 # Ideally we would preload object and activities here
271 # but Ecto does not support preloads in update_all
275 {:ok, %{ids: {_, notification_ids}}} =
277 |> Multi.update_all(:ids, query, set: [seen: true, updated_at: NaiveDateTime.utc_now()])
278 |> Marker.multi_set_last_read_id(user, "notifications")
279 |> Repo.transaction()
282 |> where([n], n.id in ^notification_ids)
286 @spec read_one(User.t(), String.t()) ::
287 {:ok, Notification.t()} | {:error, Ecto.Changeset.t()} | nil
288 def read_one(%User{} = user, notification_id) do
289 with {:ok, %Notification{} = notification} <- get(user, notification_id) do
291 |> Multi.update(:update, changeset(notification, %{seen: true}))
292 |> Marker.multi_set_last_read_id(user, "notifications")
293 |> Repo.transaction()
295 {:ok, %{update: notification}} -> {:ok, notification}
296 {:error, :update, changeset, _} -> {:error, changeset}
301 def get(%{id: user_id} = _user, id) do
306 join: activity in assoc(n, :activity),
307 preload: [activity: activity]
310 notification = Repo.one(query)
313 %{user_id: ^user_id} ->
317 {:error, "Cannot get notification"}
322 from(n in Notification, where: n.user_id == ^user.id)
326 def destroy_multiple(%{id: user_id} = _user, ids) do
327 from(n in Notification,
329 where: n.user_id == ^user_id
334 def dismiss(%Pleroma.Activity{} = activity) do
336 |> where([n], n.activity_id == ^activity.id)
339 {_, notifications} -> {:ok, notifications}
340 _ -> {:error, "Cannot dismiss notification"}
344 def dismiss(%{id: user_id} = _user, id) do
345 notification = Repo.get(Notification, id)
348 %{user_id: ^user_id} ->
349 Repo.delete(notification)
352 {:error, "Cannot dismiss notification"}
356 @spec create_notifications(Activity.t(), keyword()) :: {:ok, [Notification.t()] | []}
357 def create_notifications(activity, options \\ [])
359 def create_notifications(%Activity{data: %{"to" => _, "type" => "Create"}} = activity, options) do
360 object = Object.normalize(activity, false)
362 if object && object.data["type"] == "Answer" do
365 do_create_notifications(activity, options)
369 def create_notifications(%Activity{data: %{"type" => type}} = activity, options)
370 when type in ["Follow", "Like", "Announce", "Move", "EmojiReact"] do
371 do_create_notifications(activity, options)
374 def create_notifications(_, _), do: {:ok, []}
376 defp do_create_notifications(%Activity{} = activity, options) do
377 do_send = Keyword.get(options, :do_send, true)
379 {enabled_receivers, disabled_receivers} = get_notified_from_activity(activity)
380 potential_receivers = enabled_receivers ++ disabled_receivers
383 Enum.map(potential_receivers, fn user ->
384 do_send = do_send && user in enabled_receivers
385 create_notification(activity, user, do_send)
387 |> Enum.reject(&is_nil/1)
392 defp type_from_activity(%{data: %{"type" => type}} = activity) do
395 if Activity.follow_accepted?(activity) do
411 "pleroma:emoji_reaction"
413 # Compatibility with old reactions
415 "pleroma:emoji_reaction"
419 |> type_from_activity_object()
422 raise "No notification type for activity type #{t}"
426 defp type_from_activity_object(%{data: %{"type" => "Create", "object" => %{}}}), do: "mention"
428 defp type_from_activity_object(%{data: %{"type" => "Create"}} = activity) do
429 object = Object.get_by_ap_id(activity.data["object"])
431 case object && object.data["type"] do
432 "ChatMessage" -> "pleroma:chat_mention"
437 # TODO move to sql, too.
438 def create_notification(%Activity{} = activity, %User{} = user, do_send \\ true) do
439 unless skip?(activity, user) do
440 {:ok, %{notification: notification}} =
442 |> Multi.insert(:notification, %Notification{
445 seen: mark_as_read?(activity, user),
446 type: type_from_activity(activity)
448 |> Marker.multi_set_last_read_id(user, "notifications")
449 |> Repo.transaction()
452 Streamer.stream(["user", "user:notification"], notification)
453 Push.send(notification)
461 Returns a tuple with 2 elements:
462 {notification-enabled receivers, currently disabled receivers (blocking / [thread] muting)}
464 NOTE: might be called for FAKE Activities, see ActivityPub.Utils.get_notified_from_object/1
466 @spec get_notified_from_activity(Activity.t(), boolean()) :: {list(User.t()), list(User.t())}
467 def get_notified_from_activity(activity, local_only \\ true)
469 def get_notified_from_activity(%Activity{data: %{"type" => type}} = activity, local_only)
470 when type in ["Create", "Like", "Announce", "Follow", "Move", "EmojiReact"] do
471 potential_receiver_ap_ids = get_potential_receiver_ap_ids(activity)
473 potential_receivers =
474 User.get_users_from_set(potential_receiver_ap_ids, local_only: local_only)
476 notification_enabled_ap_ids =
477 potential_receiver_ap_ids
478 |> exclude_domain_blocker_ap_ids(activity, potential_receivers)
479 |> exclude_relationship_restricted_ap_ids(activity)
480 |> exclude_thread_muter_ap_ids(activity)
482 notification_enabled_users =
483 Enum.filter(potential_receivers, fn u -> u.ap_id in notification_enabled_ap_ids end)
485 {notification_enabled_users, potential_receivers -- notification_enabled_users}
488 def get_notified_from_activity(_, _local_only), do: {[], []}
490 # For some activities, only notify the author of the object
491 def get_potential_receiver_ap_ids(%{data: %{"type" => type, "object" => object_id}})
492 when type in ~w{Like Announce EmojiReact} do
493 case Object.get_cached_by_ap_id(object_id) do
494 %Object{data: %{"actor" => actor}} ->
502 def get_potential_receiver_ap_ids(%{data: %{"type" => "Follow", "object" => object_id}}) do
506 def get_potential_receiver_ap_ids(activity) do
508 |> Utils.maybe_notify_to_recipients(activity)
509 |> Utils.maybe_notify_mentioned_recipients(activity)
510 |> Utils.maybe_notify_subscribers(activity)
511 |> Utils.maybe_notify_followers(activity)
515 @doc "Filters out AP IDs domain-blocking and not following the activity's actor"
516 def exclude_domain_blocker_ap_ids(ap_ids, activity, preloaded_users \\ [])
518 def exclude_domain_blocker_ap_ids([], _activity, _preloaded_users), do: []
520 def exclude_domain_blocker_ap_ids(ap_ids, %Activity{} = activity, preloaded_users) do
521 activity_actor_domain = activity.actor && URI.parse(activity.actor).host
525 |> Enum.map(fn ap_id ->
526 Enum.find(preloaded_users, &(&1.ap_id == ap_id)) ||
527 User.get_cached_by_ap_id(ap_id)
531 domain_blocker_ap_ids = for u <- users, activity_actor_domain in u.domain_blocks, do: u.ap_id
533 domain_blocker_follower_ap_ids =
534 if Enum.any?(domain_blocker_ap_ids) do
536 |> Activity.user_actor()
537 |> FollowingRelationship.followers_ap_ids(domain_blocker_ap_ids)
543 |> Kernel.--(domain_blocker_ap_ids)
544 |> Kernel.++(domain_blocker_follower_ap_ids)
547 @doc "Filters out AP IDs of users basing on their relationships with activity actor user"
548 def exclude_relationship_restricted_ap_ids([], _activity), do: []
550 def exclude_relationship_restricted_ap_ids(ap_ids, %Activity{} = activity) do
551 relationship_restricted_ap_ids =
553 |> Activity.user_actor()
554 |> User.incoming_relationships_ungrouped_ap_ids([
559 Enum.uniq(ap_ids) -- relationship_restricted_ap_ids
562 @doc "Filters out AP IDs of users who mute activity thread"
563 def exclude_thread_muter_ap_ids([], _activity), do: []
565 def exclude_thread_muter_ap_ids(ap_ids, %Activity{} = activity) do
566 thread_muter_ap_ids = ThreadMute.muter_ap_ids(activity.data["context"])
568 Enum.uniq(ap_ids) -- thread_muter_ap_ids
571 @spec skip?(Activity.t(), User.t()) :: boolean()
572 def skip?(%Activity{} = activity, %User{} = user) do
576 :block_from_strangers,
580 |> Enum.find(&skip?(&1, activity, user))
583 def skip?(_, _), do: false
585 @spec skip?(atom(), Activity.t(), User.t()) :: boolean()
586 def skip?(:self, %Activity{} = activity, %User{} = user) do
587 activity.data["actor"] == user.ap_id
590 def skip?(:invisible, %Activity{} = activity, _) do
591 actor = activity.data["actor"]
592 user = User.get_cached_by_ap_id(actor)
593 User.invisible?(user)
597 :block_from_strangers,
598 %Activity{} = activity,
599 %User{notification_settings: %{block_from_strangers: true}} = user
601 actor = activity.data["actor"]
602 follower = User.get_cached_by_ap_id(actor)
603 !User.following?(follower, user)
606 # To do: consider defining recency in hours and checking FollowingRelationship with a single SQL
607 def skip?(:recently_followed, %Activity{data: %{"type" => "Follow"}} = activity, %User{} = user) do
608 actor = activity.data["actor"]
610 Notification.for_user(user)
612 %{activity: %{data: %{"type" => "Follow", "actor" => ^actor}}} -> true
617 def skip?(:filtered, %{data: %{"type" => type}}, _) when type in ["Follow", "Move"], do: false
619 def skip?(:filtered, activity, user) do
620 object = Object.normalize(activity)
626 object.data["actor"] == user.ap_id ->
629 not is_nil(regex = Pleroma.Filter.compose_regex(user, :re)) ->
630 Regex.match?(regex, object.data["content"])
637 def skip?(_, _, _), do: false
639 def mark_as_read?(activity, target_user) do
640 user = Activity.user_actor(activity)
641 User.mutes_user?(target_user, user) || CommonAPI.thread_muted?(target_user, activity)
644 def for_user_and_activity(user, activity) do
645 from(n in __MODULE__,
646 where: n.user_id == ^user.id,
647 where: n.activity_id == ^activity.id
652 @spec mark_context_as_read(User.t(), String.t()) :: {integer(), nil | [term()]}
653 def mark_context_as_read(%User{id: id}, context) do
656 join: a in assoc(n, :activity),
657 where: n.user_id == ^id,
658 where: n.seen == false,
659 where: fragment("?->>'context'", a.data) == ^context
661 |> Repo.update_all(set: [seen: true])