1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Push.Impl do
6 @moduledoc "The module represents implementation push web notification"
9 alias Pleroma.Notification
13 alias Pleroma.Web.Metadata.Utils
14 alias Pleroma.Web.Push.Subscription
19 @types ["Create", "Follow", "Announce", "Like"]
21 @doc "Performs sending notifications for user subscriptions"
22 @spec perform(Notification.t()) :: list(any) | :error
25 activity: %{data: %{"type" => activity_type}, id: activity_id} = activity,
29 when activity_type in @types do
30 actor = User.get_cached_by_ap_id(notif.activity.data["actor"])
32 type = Activity.mastodon_notification_type(notif.activity)
33 gcm_api_key = Application.get_env(:web_push_encryption, :gcm_api_key)
34 avatar_url = User.avatar_url(actor)
35 object = Object.normalize(activity)
36 user = User.get_cached_by_id(user_id)
37 direct_conversation_id = Activity.direct_conversation_id(activity, user)
39 for subscription <- fetch_subsriptions(user_id),
40 get_in(subscription.data, ["alerts", type]) do
42 title: format_title(notif),
43 access_token: subscription.token.token,
44 body: format_body(notif, actor, object),
45 notification_id: notif.id,
46 notification_type: type,
48 preferred_locale: "en",
50 activity_id: activity_id,
51 direct_conversation_id: direct_conversation_id
55 |> push_message(build_sub(subscription), gcm_api_key, subscription)
60 Logger.warn("Unknown notification type")
64 @doc "Push message to web"
65 def push_message(body, sub, api_key, subscription) do
66 case WebPushEncryption.send_web_push(body, sub, api_key) do
67 {:ok, %{status_code: code}} when 400 <= code and code < 500 ->
68 Logger.debug("Removing subscription record")
69 Repo.delete!(subscription)
72 {:ok, %{status_code: code}} when 200 <= code and code < 300 ->
75 {:ok, %{status_code: code}} ->
76 Logger.error("Web Push Notification failed with code: #{code}")
80 Logger.error("Web Push Notification failed with unknown error")
85 @doc "Gets user subscriptions"
86 def fetch_subsriptions(user_id) do
88 |> where(user_id: ^user_id)
93 def build_sub(subscription) do
96 p256dh: subscription.key_p256dh,
97 auth: subscription.key_auth
99 endpoint: subscription.endpoint
104 %{activity: %{data: %{"type" => "Create"}}},
106 %{data: %{"content" => content}}
108 "@#{actor.nickname}: #{Utils.scrub_html_and_truncate(content, 80)}"
112 %{activity: %{data: %{"type" => "Announce"}}},
114 %{data: %{"content" => content}}
116 "@#{actor.nickname} repeated: #{Utils.scrub_html_and_truncate(content, 80)}"
120 %{activity: %{data: %{"type" => type}}},
124 when type in ["Follow", "Like"] do
126 "Follow" -> "@#{actor.nickname} has followed you"
127 "Like" -> "@#{actor.nickname} has favorited your post"
131 def format_title(%{activity: %{data: %{"directMessage" => true}}}) do
135 def format_title(%{activity: %{data: %{"type" => type}}}) do
137 "Create" -> "New Mention"
138 "Follow" -> "New Follower"
139 "Announce" -> "New Repeat"
140 "Like" -> "New Favorite"