pleroma/lib/pleroma/notification.ex

167 lines
4.4 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 16:41:47 +01:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Notification do
use Ecto.Schema
2019-02-09 16:16:26 +01:00
alias Pleroma.Activity
alias Pleroma.Notification
alias Pleroma.Repo
alias Pleroma.User
alias Pleroma.Web.CommonAPI
alias Pleroma.Web.CommonAPI.Utils
2019-02-09 16:16:26 +01:00
import Ecto.Query
import Ecto.Changeset
schema "notifications" do
2018-03-30 15:01:53 +02:00
field(:seen, :boolean, default: false)
2019-01-09 16:08:24 +01:00
belongs_to(:user, User, type: Pleroma.FlakeId)
belongs_to(:activity, Activity, type: Pleroma.FlakeId)
timestamps()
end
def changeset(%Notification{} = notification, attrs) do
notification
|> cast(attrs, [:seen])
end
2017-09-12 09:11:36 +02:00
# TODO: Make generic and unify (see activity_pub.ex)
defp restrict_max(query, %{"max_id" => max_id}) do
2018-03-30 15:01:53 +02:00
from(activity in query, where: activity.id < ^max_id)
2017-09-12 09:11:36 +02:00
end
2018-03-30 15:01:53 +02:00
2017-09-12 09:11:36 +02:00
defp restrict_max(query, _), do: query
defp restrict_since(query, %{"since_id" => since_id}) do
2018-03-30 15:01:53 +02:00
from(activity in query, where: activity.id > ^since_id)
2017-09-12 09:11:36 +02:00
end
2018-03-30 15:01:53 +02:00
2017-09-12 09:11:36 +02:00
defp restrict_since(query, _), do: query
def for_user(user, opts \\ %{}) do
2018-03-30 15:01:53 +02:00
query =
from(
n in Notification,
where: n.user_id == ^user.id,
order_by: [desc: n.id],
2019-01-26 15:55:53 +01:00
join: activity in assoc(n, :activity),
preload: [activity: activity],
2018-03-30 15:01:53 +02:00
limit: 20
)
query =
query
|> restrict_since(opts)
|> restrict_max(opts)
2017-09-12 09:11:36 +02:00
Repo.all(query)
end
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
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
def get(%{id: user_id} = _user, id) do
2018-03-30 15:01:53 +02:00
query =
from(
n in Notification,
where: n.id == ^id,
2019-01-26 15:55:53 +01:00
join: activity in assoc(n, :activity),
preload: [activity: activity]
2018-03-30 15:01:53 +02:00
)
notification = Repo.one(query)
2018-03-30 15:01:53 +02:00
case notification do
%{user_id: ^user_id} ->
{:ok, notification}
2018-03-30 15:01:53 +02:00
_ ->
{:error, "Cannot get notification"}
end
end
def clear(user) do
2018-12-24 22:29:13 +01:00
from(n in Notification, where: n.user_id == ^user.id)
|> Repo.delete_all()
end
def dismiss(%{id: user_id} = _user, id) do
notification = Repo.get(Notification, id)
2018-03-30 15:01:53 +02:00
case notification do
%{user_id: ^user_id} ->
Repo.delete(notification)
2018-03-30 15:01:53 +02:00
_ ->
{:error, "Cannot dismiss notification"}
end
end
2019-01-09 16:08:24 +01:00
def create_notifications(%Activity{data: %{"to" => _, "type" => type}} = activity)
2018-03-30 15:01:53 +02:00
when type in ["Create", "Like", "Announce", "Follow"] do
users = get_notified_from_activity(activity)
2018-03-30 15:01:53 +02:00
notifications = Enum.map(users, fn user -> create_notification(activity, user) end)
{:ok, notifications}
end
2018-03-30 15:01:53 +02:00
def create_notifications(_), do: {:ok, []}
# TODO move to sql, too.
def create_notification(%Activity{} = activity, %User{} = user) do
unless User.blocks?(user, %{ap_id: activity.data["actor"]}) or
CommonAPI.thread_muted?(user, activity) or user.ap_id == activity.data["actor"] or
(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
notification = %Notification{user_id: user.id, activity: activity}
{:ok, notification} = Repo.insert(notification)
Pleroma.Web.Streamer.stream("user", notification)
2018-12-06 13:29:04 +01:00
Pleroma.Web.Push.send(notification)
notification
end
end
def get_notified_from_activity(activity, local_only \\ true)
def get_notified_from_activity(
2018-12-09 10:12:48 +01:00
%Activity{data: %{"to" => _, "type" => type} = _data} = activity,
local_only
)
when type in ["Create", "Like", "Announce", "Follow"] do
recipients =
[]
|> Utils.maybe_notify_to_recipients(activity)
|> Utils.maybe_notify_mentioned_recipients(activity)
|> Enum.uniq()
User.get_users_from_set(recipients, local_only)
end
2018-12-09 10:12:48 +01:00
def get_notified_from_activity(_, _local_only), do: []
end