2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
defmodule Pleroma.Notification do
|
|
|
|
use Ecto.Schema
|
2019-02-09 15:16:26 +00:00
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Notification
|
2019-03-23 02:19:34 +00:00
|
|
|
alias Pleroma.Object
|
2019-03-18 01:32:23 +00:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
2019-06-16 10:33:25 +00:00
|
|
|
alias Pleroma.Web.Push
|
|
|
|
alias Pleroma.Web.Streamer
|
2019-02-09 15:16:26 +00:00
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
import Ecto.Query
|
2019-03-15 17:06:28 +00:00
|
|
|
import Ecto.Changeset
|
2017-09-11 14:15:28 +00:00
|
|
|
|
|
|
|
schema "notifications" do
|
2018-03-30 13:01:53 +00:00
|
|
|
field(:seen, :boolean, default: false)
|
2019-01-09 15:08:24 +00:00
|
|
|
belongs_to(:user, User, type: Pleroma.FlakeId)
|
|
|
|
belongs_to(:activity, Activity, type: Pleroma.FlakeId)
|
2017-09-11 14:15:28 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-03-15 17:06:28 +00:00
|
|
|
def changeset(%Notification{} = notification, attrs) do
|
|
|
|
notification
|
|
|
|
|> cast(attrs, [:seen])
|
2017-09-12 07:11:36 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-07-14 13:29:31 +00:00
|
|
|
def for_user_query(user, opts) do
|
|
|
|
query =
|
|
|
|
Notification
|
|
|
|
|> where(user_id: ^user.id)
|
|
|
|
|> where(
|
|
|
|
[n, a],
|
2019-03-04 12:55:11 +00:00
|
|
|
fragment(
|
2019-07-14 13:29:31 +00:00
|
|
|
"? not in (SELECT ap_id FROM users WHERE info->'deactivated' @> 'true')",
|
|
|
|
a.actor
|
2019-03-04 12:55:11 +00:00
|
|
|
)
|
2019-07-14 13:29:31 +00:00
|
|
|
)
|
|
|
|
|> join(:inner, [n], activity in assoc(n, :activity))
|
|
|
|
|> join(:left, [n, a], object in Object,
|
|
|
|
on:
|
|
|
|
fragment(
|
|
|
|
"(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
|
|
|
|
object.data,
|
|
|
|
a.data
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|> preload([n, a, o], activity: {a, object: o})
|
|
|
|
|
|
|
|
if opts[:with_muted] do
|
|
|
|
query
|
|
|
|
else
|
|
|
|
where(query, [n, a], a.actor not in ^user.info.muted_notifications)
|
|
|
|
|> where([n, a], a.actor not in ^user.info.blocks)
|
|
|
|
|> where(
|
|
|
|
[n, a],
|
|
|
|
fragment("substring(? from '.*://([^/]*)')", a.actor) not in ^user.info.domain_blocks
|
|
|
|
)
|
|
|
|
|> join(:left, [n, a], tm in Pleroma.ThreadMute,
|
|
|
|
on: tm.user_id == ^user.id and tm.context == fragment("?->>'context'", a.data)
|
|
|
|
)
|
2019-07-15 17:53:07 +00:00
|
|
|
|> where([n, a, o, tm], is_nil(tm.user_id))
|
2019-07-14 13:29:31 +00:00
|
|
|
end
|
2017-09-12 07:11:36 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
def for_user(user, opts \\ %{}) do
|
2019-03-18 01:32:23 +00:00
|
|
|
user
|
2019-07-14 13:29:31 +00:00
|
|
|
|> for_user_query(opts)
|
2019-03-18 01:32:23 +00:00
|
|
|
|> Pagination.fetch_paginated(opts)
|
2017-09-11 14:15:28 +00:00
|
|
|
end
|
|
|
|
|
2018-11-06 22:50:43 +00:00
|
|
|
def set_read_up_to(%{id: user_id} = _user, id) do
|
|
|
|
query =
|
|
|
|
from(
|
|
|
|
n in Notification,
|
|
|
|
where: n.user_id == ^user_id,
|
|
|
|
where: n.id <= ^id,
|
|
|
|
update: [
|
|
|
|
set: [seen: true]
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
Repo.update_all(query, [])
|
|
|
|
end
|
|
|
|
|
2019-03-15 17:06:28 +00:00
|
|
|
def read_one(%User{} = user, notification_id) do
|
|
|
|
with {:ok, %Notification{} = notification} <- get(user, notification_id) do
|
|
|
|
notification
|
|
|
|
|> changeset(%{seen: true})
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
def get(%{id: user_id} = _user, id) do
|
2018-03-30 13:01:53 +00:00
|
|
|
query =
|
|
|
|
from(
|
|
|
|
n in Notification,
|
|
|
|
where: n.id == ^id,
|
2019-01-26 14:55:53 +00:00
|
|
|
join: activity in assoc(n, :activity),
|
|
|
|
preload: [activity: activity]
|
2018-03-30 13:01:53 +00:00
|
|
|
)
|
2017-11-10 13:24:39 +00:00
|
|
|
|
|
|
|
notification = Repo.one(query)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
case notification do
|
|
|
|
%{user_id: ^user_id} ->
|
|
|
|
{:ok, notification}
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
_ ->
|
|
|
|
{:error, "Cannot get notification"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear(user) do
|
2018-12-24 21:29:13 +00:00
|
|
|
from(n in Notification, where: n.user_id == ^user.id)
|
|
|
|
|> Repo.delete_all()
|
2017-11-10 13:24:39 +00:00
|
|
|
end
|
|
|
|
|
2019-04-12 02:28:46 +00:00
|
|
|
def destroy_multiple(%{id: user_id} = _user, ids) do
|
|
|
|
from(n in Notification,
|
|
|
|
where: n.id in ^ids,
|
|
|
|
where: n.user_id == ^user_id
|
|
|
|
)
|
|
|
|
|> Repo.delete_all()
|
|
|
|
end
|
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
def dismiss(%{id: user_id} = _user, id) do
|
|
|
|
notification = Repo.get(Notification, id)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
case notification do
|
|
|
|
%{user_id: ^user_id} ->
|
|
|
|
Repo.delete(notification)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
_ ->
|
|
|
|
{:error, "Cannot dismiss notification"}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-22 06:44:47 +00:00
|
|
|
def create_notifications(%Activity{data: %{"to" => _, "type" => "Create"}} = activity) do
|
2019-06-01 13:07:01 +00:00
|
|
|
object = Object.normalize(activity)
|
|
|
|
|
|
|
|
unless object && object.data["type"] == "Answer" do
|
|
|
|
users = get_notified_from_activity(activity)
|
|
|
|
notifications = Enum.map(users, fn user -> create_notification(activity, user) end)
|
|
|
|
{:ok, notifications}
|
|
|
|
else
|
|
|
|
{:ok, []}
|
|
|
|
end
|
2017-09-11 14:15:28 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-06-22 06:44:47 +00:00
|
|
|
def create_notifications(%Activity{data: %{"to" => _, "type" => type}} = activity)
|
|
|
|
when type in ["Like", "Announce", "Follow"] do
|
|
|
|
users = get_notified_from_activity(activity)
|
|
|
|
notifications = Enum.map(users, fn user -> create_notification(activity, user) end)
|
|
|
|
{:ok, notifications}
|
|
|
|
end
|
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
def create_notifications(_), do: {:ok, []}
|
|
|
|
|
|
|
|
# TODO move to sql, too.
|
|
|
|
def create_notification(%Activity{} = activity, %User{} = user) do
|
2019-03-27 19:09:39 +00:00
|
|
|
unless skip?(activity, user) do
|
2017-11-16 15:49:51 +00:00
|
|
|
notification = %Notification{user_id: user.id, activity: activity}
|
2017-11-02 21:08:22 +00:00
|
|
|
{:ok, notification} = Repo.insert(notification)
|
2019-06-16 10:33:25 +00:00
|
|
|
Streamer.stream("user", notification)
|
|
|
|
Streamer.stream("user:notification", notification)
|
|
|
|
Push.send(notification)
|
2017-11-02 21:08:22 +00:00
|
|
|
notification
|
|
|
|
end
|
2017-09-11 14:15:28 +00:00
|
|
|
end
|
2018-11-09 08:41:26 +00:00
|
|
|
|
2018-11-09 09:07:40 +00:00
|
|
|
def get_notified_from_activity(activity, local_only \\ true)
|
|
|
|
|
2018-11-09 08:41:26 +00:00
|
|
|
def get_notified_from_activity(
|
2018-12-09 09:12:48 +00:00
|
|
|
%Activity{data: %{"to" => _, "type" => type} = _data} = activity,
|
2018-11-09 09:07:40 +00:00
|
|
|
local_only
|
2018-11-09 08:41:26 +00:00
|
|
|
)
|
|
|
|
when type in ["Create", "Like", "Announce", "Follow"] do
|
|
|
|
recipients =
|
|
|
|
[]
|
2019-01-24 20:30:43 +00:00
|
|
|
|> Utils.maybe_notify_to_recipients(activity)
|
|
|
|
|> Utils.maybe_notify_mentioned_recipients(activity)
|
2019-04-05 13:20:13 +00:00
|
|
|
|> Utils.maybe_notify_subscribers(activity)
|
2018-11-09 08:41:26 +00:00
|
|
|
|> Enum.uniq()
|
|
|
|
|
|
|
|
User.get_users_from_set(recipients, local_only)
|
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def get_notified_from_activity(_, _local_only), do: []
|
2019-03-27 19:09:39 +00:00
|
|
|
|
2019-07-14 13:29:31 +00:00
|
|
|
@spec skip?(Activity.t(), User.t()) :: boolean()
|
2019-03-27 19:09:39 +00:00
|
|
|
def skip?(activity, user) do
|
2019-05-25 05:19:47 +00:00
|
|
|
[
|
|
|
|
:self,
|
|
|
|
:followers,
|
|
|
|
:follows,
|
|
|
|
:non_followers,
|
|
|
|
:non_follows,
|
|
|
|
:recently_followed
|
|
|
|
]
|
2019-03-27 19:09:39 +00:00
|
|
|
|> Enum.any?(&skip?(&1, activity, user))
|
|
|
|
end
|
|
|
|
|
2019-07-14 13:29:31 +00:00
|
|
|
@spec skip?(atom(), Activity.t(), User.t()) :: boolean()
|
2019-03-27 19:09:39 +00:00
|
|
|
def skip?(:self, activity, user) do
|
|
|
|
activity.data["actor"] == user.ap_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip?(
|
|
|
|
:followers,
|
|
|
|
activity,
|
|
|
|
%{info: %{notification_settings: %{"followers" => false}}} = user
|
|
|
|
) do
|
|
|
|
actor = activity.data["actor"]
|
|
|
|
follower = User.get_cached_by_ap_id(actor)
|
|
|
|
User.following?(follower, user)
|
|
|
|
end
|
|
|
|
|
2019-05-25 05:19:47 +00:00
|
|
|
def skip?(
|
|
|
|
:non_followers,
|
|
|
|
activity,
|
|
|
|
%{info: %{notification_settings: %{"non_followers" => false}}} = user
|
|
|
|
) do
|
|
|
|
actor = activity.data["actor"]
|
|
|
|
follower = User.get_cached_by_ap_id(actor)
|
|
|
|
!User.following?(follower, user)
|
|
|
|
end
|
|
|
|
|
2019-03-27 19:09:39 +00:00
|
|
|
def skip?(:follows, activity, %{info: %{notification_settings: %{"follows" => false}}} = user) do
|
|
|
|
actor = activity.data["actor"]
|
2019-04-22 07:20:43 +00:00
|
|
|
followed = User.get_cached_by_ap_id(actor)
|
2019-03-27 19:09:39 +00:00
|
|
|
User.following?(user, followed)
|
|
|
|
end
|
|
|
|
|
2019-05-25 05:19:47 +00:00
|
|
|
def skip?(
|
|
|
|
:non_follows,
|
|
|
|
activity,
|
|
|
|
%{info: %{notification_settings: %{"non_follows" => false}}} = user
|
|
|
|
) do
|
|
|
|
actor = activity.data["actor"]
|
|
|
|
followed = User.get_cached_by_ap_id(actor)
|
|
|
|
!User.following?(user, followed)
|
|
|
|
end
|
|
|
|
|
2019-03-28 11:52:09 +00:00
|
|
|
def skip?(:recently_followed, %{data: %{"type" => "Follow"}} = activity, user) do
|
2019-03-27 19:09:39 +00:00
|
|
|
actor = activity.data["actor"]
|
|
|
|
|
|
|
|
Notification.for_user(user)
|
|
|
|
|> Enum.any?(fn
|
|
|
|
%{activity: %{data: %{"type" => "Follow", "actor" => ^actor}}} -> true
|
|
|
|
_ -> false
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip?(_, _, _), do: false
|
2017-09-11 14:15:28 +00:00
|
|
|
end
|