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
15 alias Pleroma.Web.CommonAPI.Utils
20 @type t :: %__MODULE__{}
22 schema "notifications" do
23 field(:seen, :boolean, default: false)
24 belongs_to(:user, User, type: Pleroma.FlakeId)
25 belongs_to(:activity, Activity, type: Pleroma.FlakeId)
30 def changeset(%Notification{} = notification, attrs) do
32 |> cast(attrs, [:seen])
35 def for_user_query(user) do
37 |> where(user_id: ^user.id)
38 |> join(:inner, [n], activity in assoc(n, :activity))
39 |> join(:left, [n, a], object in Object,
42 "(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
47 |> preload([n, a, o], activity: {a, object: o})
50 def for_user(user, opts \\ %{}) do
53 |> Pagination.fetch_paginated(opts)
57 Returns notifications for user received since given date.
61 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-13 11:22:33])
62 [%Pleroma.Notification{}, %Pleroma.Notification{}]
64 iex> Pleroma.Notification.for_user_since(%Pleroma.User{}, ~N[2019-04-15 11:22:33])
67 @spec for_user_since(Pleroma.User.t(), NaiveDateTime.t()) :: [t()]
68 def for_user_since(user, date) do
69 from(n in for_user_query(user),
70 where: n.updated_at > ^date
75 def set_read_up_to(%{id: user_id} = _user, id) do
79 where: n.user_id == ^user_id,
84 updated_at: ^NaiveDateTime.utc_now()
89 Repo.update_all(query, [])
92 def read_one(%User{} = user, notification_id) do
93 with {:ok, %Notification{} = notification} <- get(user, notification_id) do
95 |> changeset(%{seen: true})
100 def get(%{id: user_id} = _user, id) do
105 join: activity in assoc(n, :activity),
106 preload: [activity: activity]
109 notification = Repo.one(query)
112 %{user_id: ^user_id} ->
116 {:error, "Cannot get notification"}
121 from(n in Notification, where: n.user_id == ^user.id)
125 def destroy_multiple(%{id: user_id} = _user, ids) do
126 from(n in Notification,
128 where: n.user_id == ^user_id
133 def dismiss(%{id: user_id} = _user, id) do
134 notification = Repo.get(Notification, id)
137 %{user_id: ^user_id} ->
138 Repo.delete(notification)
141 {:error, "Cannot dismiss notification"}
145 def create_notifications(%Activity{data: %{"to" => _, "type" => type}} = activity)
146 when type in ["Create", "Like", "Announce", "Follow"] do
147 users = get_notified_from_activity(activity)
149 notifications = Enum.map(users, fn user -> create_notification(activity, user) end)
153 def create_notifications(_), do: {:ok, []}
155 # TODO move to sql, too.
156 def create_notification(%Activity{} = activity, %User{} = user) do
157 unless skip?(activity, user) do
158 notification = %Notification{user_id: user.id, activity: activity}
159 {:ok, notification} = Repo.insert(notification)
160 Pleroma.Web.Streamer.stream("user", notification)
161 Pleroma.Web.Push.send(notification)
166 def get_notified_from_activity(activity, local_only \\ true)
168 def get_notified_from_activity(
169 %Activity{data: %{"to" => _, "type" => type} = _data} = activity,
172 when type in ["Create", "Like", "Announce", "Follow"] do
175 |> Utils.maybe_notify_to_recipients(activity)
176 |> Utils.maybe_notify_mentioned_recipients(activity)
177 |> Utils.maybe_notify_subscribers(activity)
180 User.get_users_from_set(recipients, local_only)
183 def get_notified_from_activity(_, _local_only), do: []
185 def skip?(activity, user) do
186 [:self, :blocked, :local, :muted, :followers, :follows, :recently_followed]
187 |> Enum.any?(&skip?(&1, activity, user))
190 def skip?(:self, activity, user) do
191 activity.data["actor"] == user.ap_id
194 def skip?(:blocked, activity, user) do
195 actor = activity.data["actor"]
196 User.blocks?(user, %{ap_id: actor})
199 def skip?(:local, %{local: true}, %{info: %{notification_settings: %{"local" => false}}}),
202 def skip?(:local, %{local: false}, %{info: %{notification_settings: %{"remote" => false}}}),
205 def skip?(:muted, activity, user) do
206 actor = activity.data["actor"]
208 User.mutes?(user, %{ap_id: actor}) or CommonAPI.thread_muted?(user, activity)
214 %{info: %{notification_settings: %{"followers" => false}}} = user
216 actor = activity.data["actor"]
217 follower = User.get_cached_by_ap_id(actor)
218 User.following?(follower, user)
221 def skip?(:follows, activity, %{info: %{notification_settings: %{"follows" => false}}} = user) do
222 actor = activity.data["actor"]
223 followed = User.get_by_ap_id(actor)
224 User.following?(user, followed)
227 def skip?(:recently_followed, %{data: %{"type" => "Follow"}} = activity, user) do
228 actor = activity.data["actor"]
230 Notification.for_user(user)
232 %{activity: %{data: %{"type" => "Follow", "actor" => ^actor}}} -> true
237 def skip?(_, _, _), do: false