1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Notification do
9 alias Pleroma.Notification
11 alias Pleroma.Pagination
14 alias Pleroma.Web.CommonAPI.Utils
15 alias Pleroma.Web.Push
16 alias Pleroma.Web.Streamer
22 @type t :: %__MODULE__{}
24 @include_muted_option :with_muted
26 schema "notifications" do
27 field(:seen, :boolean, default: false)
28 belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
29 belongs_to(:activity, Activity, type: FlakeId.Ecto.CompatType)
34 def changeset(%Notification{} = notification, attrs) do
36 |> cast(attrs, [:seen])
39 defp for_user_query_ap_id_opts(user, opts) do
42 if opts[@include_muted_option], do: [], else: [:notification_mute]
44 preloaded_ap_ids = User.outgoing_relations_ap_ids(user, ap_id_relations)
46 exclude_blocked_opts = Map.merge(%{blocked_users_ap_ids: preloaded_ap_ids[:block]}, opts)
48 exclude_notification_muted_opts =
49 Map.merge(%{notification_muted_users_ap_ids: preloaded_ap_ids[:notification_mute]}, opts)
51 {exclude_blocked_opts, exclude_notification_muted_opts}
54 def for_user_query(user, opts \\ %{}) do
55 {exclude_blocked_opts, exclude_notification_muted_opts} =
56 for_user_query_ap_id_opts(user, opts)
59 |> where(user_id: ^user.id)
63 "? not in (SELECT ap_id FROM users WHERE deactivated = 'true')",
67 |> join(:inner, [n], activity in assoc(n, :activity))
68 |> join(:left, [n, a], object in Object,
71 "(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
76 |> preload([n, a, o], activity: {a, object: o})
77 |> exclude_notification_muted(user, exclude_notification_muted_opts)
78 |> exclude_blocked(user, exclude_blocked_opts)
79 |> exclude_visibility(opts)
83 defp exclude_blocked(query, user, opts) do
84 blocked_ap_ids = opts[:blocked_users_ap_ids] || User.blocked_users_ap_ids(user)
87 |> where([n, a], a.actor not in ^blocked_ap_ids)
90 fragment("substring(? from '.*://([^/]*)')", a.actor) not in ^user.domain_blocks
94 defp exclude_notification_muted(query, _, %{@include_muted_option => true}) do
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)
103 |> where([n, a], a.actor not in ^notification_muted_ap_ids)
104 |> join(:left, [n, a], tm in Pleroma.ThreadMute,
105 on: tm.user_id == ^user.id and tm.context == fragment("?->>'context'", a.data)
107 |> where([n, a, o, tm], is_nil(tm.user_id))
110 defp exclude_move(query, %{with_move: true}) do
114 defp exclude_move(query, _opts) do
115 where(query, [n, a], fragment("?->>'type' != 'Move'", a.data))
118 @valid_visibilities ~w[direct unlisted public private]
120 defp exclude_visibility(query, %{exclude_visibilities: visibility})
121 when is_list(visibility) do
122 if Enum.all?(visibility, &(&1 in @valid_visibilities)) do
124 |> join(:left, [n, a], mutated_activity in Pleroma.Activity,
126 fragment("?->>'context'", a.data) ==
127 fragment("?->>'context'", mutated_activity.data) and
128 fragment("(?->>'type' = 'Like' or ?->>'type' = 'Announce')", a.data, a.data) and
129 fragment("?->>'type'", mutated_activity.data) == "Create",
130 as: :mutated_activity
133 [n, a, mutated_activity: mutated_activity],
136 CASE WHEN (?->>'type') = 'Like' or (?->>'type') = 'Announce'
137 THEN (activity_visibility(?, ?, ?) = ANY (?))
138 ELSE (activity_visibility(?, ?, ?) = ANY (?)) END
142 mutated_activity.actor,
143 mutated_activity.recipients,
144 mutated_activity.data,
153 Logger.error("Could not exclude visibility to #{visibility}")
158 defp exclude_visibility(query, %{exclude_visibilities: visibility})
159 when visibility in @valid_visibilities do
160 exclude_visibility(query, [visibility])
163 defp exclude_visibility(query, %{exclude_visibilities: visibility})
164 when visibility not in @valid_visibilities do
165 Logger.error("Could not exclude visibility to #{visibility}")
169 defp exclude_visibility(query, _visibility), do: query
171 def for_user(user, opts \\ %{}) do
173 |> for_user_query(opts)
174 |> Pagination.fetch_paginated(opts)
178 Returns notifications for user received since given date.
182 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-13 11:22:33])
183 [%Pleroma.Notification{}, %Pleroma.Notification{}]
185 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-15 11:22:33])
188 @spec for_user_since(Pleroma.User.t(), NaiveDateTime.t()) :: [t()]
189 def for_user_since(user, date) do
190 from(n in for_user_query(user),
191 where: n.updated_at > ^date
196 def set_read_up_to(%{id: user_id} = _user, id) do
200 where: n.user_id == ^user_id,
202 where: n.seen == false,
206 updated_at: ^NaiveDateTime.utc_now()
209 # Ideally we would preload object and activities here
210 # but Ecto does not support preloads in update_all
214 {_, notification_ids} = Repo.update_all(query, [])
217 |> where([n], n.id in ^notification_ids)
218 |> join(:inner, [n], activity in assoc(n, :activity))
219 |> join(:left, [n, a], object in Object,
222 "(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
227 |> preload([n, a, o], activity: {a, object: o})
231 def read_one(%User{} = user, notification_id) do
232 with {:ok, %Notification{} = notification} <- get(user, notification_id) do
234 |> changeset(%{seen: true})
239 def get(%{id: user_id} = _user, id) do
244 join: activity in assoc(n, :activity),
245 preload: [activity: activity]
248 notification = Repo.one(query)
251 %{user_id: ^user_id} ->
255 {:error, "Cannot get notification"}
260 from(n in Notification, where: n.user_id == ^user.id)
264 def destroy_multiple(%{id: user_id} = _user, ids) do
265 from(n in Notification,
267 where: n.user_id == ^user_id
272 def dismiss(%{id: user_id} = _user, id) do
273 notification = Repo.get(Notification, id)
276 %{user_id: ^user_id} ->
277 Repo.delete(notification)
280 {:error, "Cannot dismiss notification"}
284 def create_notifications(%Activity{data: %{"to" => _, "type" => "Create"}} = activity) do
285 object = Object.normalize(activity)
287 unless object && object.data["type"] == "Answer" do
288 users = get_notified_from_activity(activity)
289 notifications = Enum.map(users, fn user -> create_notification(activity, user) end)
296 def create_notifications(%Activity{data: %{"type" => type}} = activity)
297 when type in ["Like", "Announce", "Follow", "Move"] do
300 |> get_notified_from_activity()
301 |> Enum.map(&create_notification(activity, &1))
306 def create_notifications(_), do: {:ok, []}
308 # TODO move to sql, too.
309 def create_notification(%Activity{} = activity, %User{} = user) do
310 unless skip?(activity, user) do
311 notification = %Notification{user_id: user.id, activity: activity}
312 {:ok, notification} = Repo.insert(notification)
314 ["user", "user:notification"]
315 |> Streamer.stream(notification)
317 Push.send(notification)
322 def get_notified_from_activity(activity, local_only \\ true)
324 def get_notified_from_activity(%Activity{data: %{"type" => type}} = activity, local_only)
325 when type in ["Create", "Like", "Announce", "Follow", "Move"] do
327 |> Utils.maybe_notify_to_recipients(activity)
328 |> Utils.maybe_notify_mentioned_recipients(activity)
329 |> Utils.maybe_notify_subscribers(activity)
330 |> Utils.maybe_notify_followers(activity)
332 |> User.get_users_from_set(local_only)
335 def get_notified_from_activity(_, _local_only), do: []
337 @spec skip?(Activity.t(), User.t()) :: boolean()
338 def skip?(activity, user) do
347 |> Enum.any?(&skip?(&1, activity, user))
350 @spec skip?(atom(), Activity.t(), User.t()) :: boolean()
351 def skip?(:self, activity, user) do
352 activity.data["actor"] == user.ap_id
358 %{notification_settings: %{followers: false}} = user
360 actor = activity.data["actor"]
361 follower = User.get_cached_by_ap_id(actor)
362 User.following?(follower, user)
368 %{notification_settings: %{non_followers: false}} = user
370 actor = activity.data["actor"]
371 follower = User.get_cached_by_ap_id(actor)
372 !User.following?(follower, user)
375 def skip?(:follows, activity, %{notification_settings: %{follows: false}} = user) do
376 actor = activity.data["actor"]
377 followed = User.get_cached_by_ap_id(actor)
378 User.following?(user, followed)
384 %{notification_settings: %{non_follows: false}} = user
386 actor = activity.data["actor"]
387 followed = User.get_cached_by_ap_id(actor)
388 !User.following?(user, followed)
391 def skip?(:recently_followed, %{data: %{"type" => "Follow"}} = activity, user) do
392 actor = activity.data["actor"]
394 Notification.for_user(user)
396 %{activity: %{data: %{"type" => "Follow", "actor" => ^actor}}} -> true
401 def skip?(_, _, _), do: false