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
|
2019-02-11 10:59:51 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
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])
|
|
|
|
end
|
|
|
|
|
2019-03-18 01:32:23 +00:00
|
|
|
def for_user_query(user) do
|
|
|
|
Notification
|
|
|
|
|> where(user_id: ^user.id)
|
|
|
|
|> join(:inner, [n], activity in assoc(n, :activity))
|
2019-03-23 02:19:34 +00:00
|
|
|
|> join(:left, [n, a], object in Object,
|
2019-03-23 02:30:53 +00:00
|
|
|
on:
|
|
|
|
fragment(
|
|
|
|
"(?->>'id') = COALESCE((? -> 'object'::text) ->> 'id'::text)",
|
|
|
|
object.data,
|
|
|
|
a.data
|
|
|
|
)
|
2019-03-23 02:19:34 +00:00
|
|
|
)
|
|
|
|
|> preload([n, a, o], activity: {a, object: o})
|
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
|
|
|
|
|> for_user_query()
|
|
|
|
|> 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-01-09 15:08:24 +00:00
|
|
|
def create_notifications(%Activity{data: %{"to" => _, "type" => type}} = activity)
|
2018-03-30 13:01:53 +00:00
|
|
|
when type in ["Create", "Like", "Announce", "Follow"] do
|
2018-11-09 08:41:26 +00:00
|
|
|
users = get_notified_from_activity(activity)
|
2017-09-11 14:15:28 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
notifications = Enum.map(users, fn user -> create_notification(activity, user) end)
|
2017-09-11 14:15:28 +00:00
|
|
|
{:ok, notifications}
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
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)
|
2017-11-16 15:49:51 +00:00
|
|
|
Pleroma.Web.Streamer.stream("user", notification)
|
2018-12-06 12:29:04 +00:00
|
|
|
Pleroma.Web.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
|
|
|
|
|
|
|
def skip?(activity, user) do
|
|
|
|
[:self, :blocked, :local, :muted, :followers, :follows, :recently_followed]
|
|
|
|
|> Enum.any?(&skip?(&1, activity, user))
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip?(:self, activity, user) do
|
|
|
|
activity.data["actor"] == user.ap_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip?(:blocked, activity, user) do
|
|
|
|
actor = activity.data["actor"]
|
|
|
|
User.blocks?(user, %{ap_id: actor})
|
|
|
|
end
|
|
|
|
|
2019-03-28 11:52:09 +00:00
|
|
|
def skip?(:local, %{local: true}, %{info: %{notification_settings: %{"local" => false}}}),
|
|
|
|
do: true
|
2019-03-27 19:09:39 +00:00
|
|
|
|
2019-03-28 11:52:09 +00:00
|
|
|
def skip?(:local, %{local: false}, %{info: %{notification_settings: %{"remote" => false}}}),
|
|
|
|
do: true
|
2019-03-27 19:09:39 +00:00
|
|
|
|
|
|
|
def skip?(:muted, activity, user) do
|
|
|
|
actor = activity.data["actor"]
|
|
|
|
|
2019-04-12 02:28:46 +00:00
|
|
|
User.mutes?(user, %{ap_id: actor}) or CommonAPI.thread_muted?(user, activity)
|
2019-03-27 19:09:39 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
def skip?(:follows, activity, %{info: %{notification_settings: %{"follows" => false}}} = user) do
|
|
|
|
actor = activity.data["actor"]
|
|
|
|
followed = User.get_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
|