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
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-09-12 07:11:36 +00:00
|
|
|
# TODO: Make generic and unify (see activity_pub.ex)
|
|
|
|
defp restrict_max(query, %{"max_id" => max_id}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: activity.id < ^max_id)
|
2017-09-12 07:11:36 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-12 07:11:36 +00:00
|
|
|
defp restrict_max(query, _), do: query
|
|
|
|
|
|
|
|
defp restrict_since(query, %{"since_id" => since_id}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
from(activity in query, where: activity.id > ^since_id)
|
2017-09-12 07:11:36 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-12 07:11:36 +00:00
|
|
|
defp restrict_since(query, _), do: query
|
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
def for_user(user, opts \\ %{}) do
|
2018-03-30 13:01:53 +00:00
|
|
|
query =
|
|
|
|
from(
|
|
|
|
n in Notification,
|
|
|
|
where: n.user_id == ^user.id,
|
|
|
|
order_by: [desc: n.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
|
|
|
limit: 20
|
|
|
|
)
|
|
|
|
|
|
|
|
query =
|
|
|
|
query
|
|
|
|
|> restrict_since(opts)
|
|
|
|
|> restrict_max(opts)
|
2017-09-12 07:11:36 +00:00
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
Repo.all(query)
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
2018-05-07 18:51:14 +00:00
|
|
|
unless User.blocks?(user, %{ap_id: activity.data["actor"]}) or
|
2019-02-11 10:59:51 +00:00
|
|
|
CommonAPI.thread_muted?(user, activity) or user.ap_id == activity.data["actor"] or
|
2019-01-05 22:54:25 +00:00
|
|
|
(activity.data["type"] == "Follow" and
|
|
|
|
Enum.any?(Notification.for_user(user), fn notif ->
|
|
|
|
notif.activity.data["type"] == "Follow" and
|
|
|
|
notif.activity.data["actor"] == activity.data["actor"]
|
|
|
|
end)) 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)
|
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: []
|
2017-09-11 14:15:28 +00:00
|
|
|
end
|