2019-03-06 14:20:12 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-03-06 14:20:12 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.Push.Impl do
|
|
|
|
@moduledoc "The module represents implementation push web notification"
|
|
|
|
|
|
|
|
alias Pleroma.Activity
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.Notification
|
2019-03-06 14:20:12 +01:00
|
|
|
alias Pleroma.Object
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.User
|
2019-03-06 14:20:12 +01:00
|
|
|
alias Pleroma.Web.Metadata.Utils
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.Web.Push.Subscription
|
2019-03-06 14:20:12 +01:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
import Ecto.Query
|
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
defdelegate mastodon_notification_type(activity), to: Activity
|
|
|
|
|
2019-11-26 12:48:56 +01:00
|
|
|
@types ["Create", "Follow", "Announce", "Like", "Move"]
|
2019-03-06 14:20:12 +01:00
|
|
|
|
|
|
|
@doc "Performs sending notifications for user subscriptions"
|
2019-09-29 17:43:27 +02:00
|
|
|
@spec perform(Notification.t()) :: list(any) | :error
|
2019-04-05 14:38:44 +02:00
|
|
|
def perform(
|
2019-04-29 18:15:30 +02:00
|
|
|
%{
|
2019-10-29 19:33:17 +01:00
|
|
|
activity: %{data: %{"type" => activity_type}} = activity,
|
|
|
|
user: %User{id: user_id}
|
2020-04-07 20:52:32 +02:00
|
|
|
} = notification
|
2019-03-11 19:32:21 +01:00
|
|
|
)
|
2019-03-06 14:20:12 +01:00
|
|
|
when activity_type in @types do
|
2020-04-07 20:52:32 +02:00
|
|
|
actor = User.get_cached_by_ap_id(notification.activity.data["actor"])
|
2019-03-06 14:20:12 +01:00
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
mastodon_type = mastodon_notification_type(notification.activity)
|
2019-03-06 14:20:12 +01:00
|
|
|
gcm_api_key = Application.get_env(:web_push_encryption, :gcm_api_key)
|
|
|
|
avatar_url = User.avatar_url(actor)
|
2019-04-29 18:15:30 +02:00
|
|
|
object = Object.normalize(activity)
|
2019-11-26 13:53:43 +01:00
|
|
|
user = User.get_cached_by_id(user_id)
|
|
|
|
direct_conversation_id = Activity.direct_conversation_id(activity, user)
|
2019-03-06 14:20:12 +01:00
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
for subscription <- fetch_subscriptions(user_id),
|
|
|
|
Subscription.enabled?(subscription, mastodon_type) do
|
2019-03-06 14:20:12 +01:00
|
|
|
%{
|
|
|
|
access_token: subscription.token.token,
|
2020-04-07 20:52:32 +02:00
|
|
|
notification_id: notification.id,
|
|
|
|
notification_type: mastodon_type,
|
2019-03-06 14:20:12 +01:00
|
|
|
icon: avatar_url,
|
2019-03-11 19:23:21 +01:00
|
|
|
preferred_locale: "en",
|
|
|
|
pleroma: %{
|
2020-04-07 20:52:32 +02:00
|
|
|
activity_id: notification.activity.id,
|
2019-11-26 20:32:55 +01:00
|
|
|
direct_conversation_id: direct_conversation_id
|
2019-03-11 19:23:21 +01:00
|
|
|
}
|
2019-03-06 14:20:12 +01:00
|
|
|
}
|
2020-04-07 20:52:32 +02:00
|
|
|
|> Map.merge(build_content(notification, actor, object, mastodon_type))
|
2019-03-06 14:20:12 +01:00
|
|
|
|> Jason.encode!()
|
|
|
|
|> push_message(build_sub(subscription), gcm_api_key, subscription)
|
|
|
|
end
|
2020-04-22 13:28:34 +02:00
|
|
|
|> (&{:ok, &1}).()
|
2019-03-06 14:20:12 +01:00
|
|
|
end
|
|
|
|
|
2019-04-05 14:38:44 +02:00
|
|
|
def perform(_) do
|
2019-03-06 14:20:12 +01:00
|
|
|
Logger.warn("Unknown notification type")
|
2020-04-22 13:28:34 +02:00
|
|
|
{:error, :unknown_type}
|
2019-03-06 14:20:12 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Push message to web"
|
|
|
|
def push_message(body, sub, api_key, subscription) do
|
|
|
|
case WebPushEncryption.send_web_push(body, sub, api_key) do
|
|
|
|
{:ok, %{status_code: code}} when 400 <= code and code < 500 ->
|
|
|
|
Logger.debug("Removing subscription record")
|
|
|
|
Repo.delete!(subscription)
|
|
|
|
:ok
|
|
|
|
|
|
|
|
{:ok, %{status_code: code}} when 200 <= code and code < 300 ->
|
|
|
|
:ok
|
|
|
|
|
|
|
|
{:ok, %{status_code: code}} ->
|
|
|
|
Logger.error("Web Push Notification failed with code: #{code}")
|
|
|
|
:error
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
Logger.error("Web Push Notification failed with unknown error")
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Gets user subscriptions"
|
2020-04-07 20:52:32 +02:00
|
|
|
def fetch_subscriptions(user_id) do
|
2019-03-06 14:20:12 +01:00
|
|
|
Subscription
|
|
|
|
|> where(user_id: ^user_id)
|
|
|
|
|> preload(:token)
|
|
|
|
|> Repo.all()
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_sub(subscription) do
|
|
|
|
%{
|
|
|
|
keys: %{
|
|
|
|
p256dh: subscription.key_p256dh,
|
|
|
|
auth: subscription.key_auth
|
|
|
|
},
|
|
|
|
endpoint: subscription.endpoint
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
def build_content(notification, actor, object, mastodon_type \\ nil)
|
|
|
|
|
2019-10-29 19:33:17 +01:00
|
|
|
def build_content(
|
|
|
|
%{
|
|
|
|
user: %{notification_settings: %{privacy_option: true}}
|
2020-05-06 23:30:05 +02:00
|
|
|
} = notification,
|
2020-05-06 23:42:27 +02:00
|
|
|
_actor,
|
2020-04-07 20:52:32 +02:00
|
|
|
_object,
|
2020-05-06 23:30:05 +02:00
|
|
|
mastodon_type
|
2019-10-29 19:33:17 +01:00
|
|
|
) do
|
2020-05-06 23:42:27 +02:00
|
|
|
%{body: format_title(notification, mastodon_type)}
|
2019-10-29 19:33:17 +01:00
|
|
|
end
|
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
def build_content(notification, actor, object, mastodon_type) do
|
|
|
|
mastodon_type = mastodon_type || mastodon_notification_type(notification.activity)
|
|
|
|
|
2019-10-29 19:33:17 +01:00
|
|
|
%{
|
2020-04-07 20:52:32 +02:00
|
|
|
title: format_title(notification, mastodon_type),
|
|
|
|
body: format_body(notification, actor, object, mastodon_type)
|
2019-10-29 19:33:17 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
def format_body(activity, actor, object, mastodon_type \\ nil)
|
|
|
|
|
2019-03-06 14:20:12 +01:00
|
|
|
def format_body(
|
2019-04-29 18:15:30 +02:00
|
|
|
%{activity: %{data: %{"type" => "Create"}}},
|
|
|
|
actor,
|
2020-04-07 20:52:32 +02:00
|
|
|
%{data: %{"content" => content}},
|
|
|
|
_mastodon_type
|
2019-03-06 14:20:12 +01:00
|
|
|
) do
|
|
|
|
"@#{actor.nickname}: #{Utils.scrub_html_and_truncate(content, 80)}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_body(
|
2019-04-29 18:15:30 +02:00
|
|
|
%{activity: %{data: %{"type" => "Announce"}}},
|
|
|
|
actor,
|
2020-04-07 20:52:32 +02:00
|
|
|
%{data: %{"content" => content}},
|
|
|
|
_mastodon_type
|
2019-03-06 14:20:12 +01:00
|
|
|
) do
|
|
|
|
"@#{actor.nickname} repeated: #{Utils.scrub_html_and_truncate(content, 80)}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_body(
|
2020-04-07 20:52:32 +02:00
|
|
|
%{activity: %{data: %{"type" => type}}} = notification,
|
2019-04-29 18:15:30 +02:00
|
|
|
actor,
|
2020-04-07 20:52:32 +02:00
|
|
|
_object,
|
|
|
|
mastodon_type
|
2019-03-06 14:20:12 +01:00
|
|
|
)
|
|
|
|
when type in ["Follow", "Like"] do
|
2020-04-07 20:52:32 +02:00
|
|
|
mastodon_type = mastodon_type || mastodon_notification_type(notification.activity)
|
|
|
|
|
2020-04-09 14:13:37 +02:00
|
|
|
case mastodon_type do
|
|
|
|
"follow" -> "@#{actor.nickname} has followed you"
|
|
|
|
"follow_request" -> "@#{actor.nickname} has requested to follow you"
|
|
|
|
"favourite" -> "@#{actor.nickname} has favorited your post"
|
2019-03-06 14:20:12 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-07 20:52:32 +02:00
|
|
|
def format_title(activity, mastodon_type \\ nil)
|
|
|
|
|
|
|
|
def format_title(%{activity: %{data: %{"directMessage" => true}}}, _mastodon_type) do
|
2019-10-19 00:51:34 +02:00
|
|
|
"New Direct Message"
|
|
|
|
end
|
|
|
|
|
2020-04-09 14:13:37 +02:00
|
|
|
def format_title(%{activity: activity}, mastodon_type) do
|
|
|
|
mastodon_type = mastodon_type || mastodon_notification_type(activity)
|
2020-04-07 20:52:32 +02:00
|
|
|
|
2020-04-09 14:13:37 +02:00
|
|
|
case mastodon_type do
|
|
|
|
"mention" -> "New Mention"
|
|
|
|
"follow" -> "New Follower"
|
|
|
|
"follow_request" -> "New Follow Request"
|
|
|
|
"reblog" -> "New Repeat"
|
|
|
|
"favourite" -> "New Favorite"
|
|
|
|
type -> "New #{String.capitalize(type || "event")}"
|
2019-03-06 14:20:12 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|