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)
37 for subscription <- fetch_subsriptions(user_id),
38 get_in(subscription.data, ["alerts", type]) do
40 title: format_title(notif),
41 access_token: subscription.token.token,
42 body: format_body(notif, actor, object),
43 notification_id: notif.id,
44 notification_type: type,
46 preferred_locale: "en",
48 activity_id: activity_id
52 |> push_message(build_sub(subscription), gcm_api_key, subscription)
57 Logger.warn("Unknown notification type")
61 @doc "Push message to web"
62 def push_message(body, sub, api_key, subscription) do
63 case WebPushEncryption.send_web_push(body, sub, api_key) do
64 {:ok, %{status_code: code}} when 400 <= code and code < 500 ->
65 Logger.debug("Removing subscription record")
66 Repo.delete!(subscription)
69 {:ok, %{status_code: code}} when 200 <= code and code < 300 ->
72 {:ok, %{status_code: code}} ->
73 Logger.error("Web Push Notification failed with code: #{code}")
77 Logger.error("Web Push Notification failed with unknown error")
82 @doc "Gets user subscriptions"
83 def fetch_subsriptions(user_id) do
85 |> where(user_id: ^user_id)
90 def build_sub(subscription) do
93 p256dh: subscription.key_p256dh,
94 auth: subscription.key_auth
96 endpoint: subscription.endpoint
101 %{activity: %{data: %{"type" => "Create"}}},
103 %{data: %{"content" => content}}
105 "@#{actor.nickname}: #{Utils.scrub_html_and_truncate(content, 80)}"
109 %{activity: %{data: %{"type" => "Announce"}}},
111 %{data: %{"content" => content}}
113 "@#{actor.nickname} repeated: #{Utils.scrub_html_and_truncate(content, 80)}"
117 %{activity: %{data: %{"type" => type}}},
121 when type in ["Follow", "Like"] do
123 "Follow" -> "@#{actor.nickname} has followed you"
124 "Like" -> "@#{actor.nickname} has favorited your post"
128 def format_title(%{activity: %{data: %{"type" => type}}}) do
130 "Create" -> "New Mention"
131 "Follow" -> "New Follower"
132 "Announce" -> "New Repeat"
133 "Like" -> "New Favorite"