2018-12-06 12:29:04 +00:00
|
|
|
defmodule Pleroma.Web.Push do
|
|
|
|
use GenServer
|
|
|
|
|
|
|
|
alias Pleroma.{Repo, User}
|
|
|
|
alias Pleroma.Web.Push.Subscription
|
|
|
|
|
|
|
|
require Logger
|
|
|
|
import Ecto.Query
|
|
|
|
|
|
|
|
@types ["Create", "Follow", "Announce", "Like"]
|
|
|
|
|
|
|
|
@gcm_api_key nil
|
|
|
|
|
|
|
|
def start_link() do
|
|
|
|
GenServer.start_link(__MODULE__, :ok, name: __MODULE__)
|
|
|
|
end
|
|
|
|
|
|
|
|
def init(:ok) do
|
|
|
|
case Application.get_env(:web_push_encryption, :vapid_details) do
|
|
|
|
nil ->
|
2018-12-06 12:56:56 +00:00
|
|
|
Logger.warn(
|
2018-12-06 12:29:04 +00:00
|
|
|
"VAPID key pair is not found. Please, add VAPID configuration to config. Run `mix web_push.gen.keypair` mix task to create a key pair"
|
|
|
|
)
|
|
|
|
|
2018-12-06 12:56:56 +00:00
|
|
|
:ignore
|
2018-12-06 12:29:04 +00:00
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:ok, %{}}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def send(notification) do
|
2018-12-06 12:56:56 +00:00
|
|
|
if Application.get_env(:web_push_encryption, :vapid_details) do
|
|
|
|
GenServer.cast(Pleroma.Web.Push, {:send, notification})
|
|
|
|
end
|
2018-12-06 12:29:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast(
|
|
|
|
{:send, %{activity: %{data: %{"type" => type}}, user_id: user_id} = notification},
|
|
|
|
state
|
|
|
|
)
|
|
|
|
when type in @types do
|
|
|
|
actor = User.get_cached_by_ap_id(notification.activity.data["actor"])
|
|
|
|
body = notification |> format(actor) |> Jason.encode!()
|
|
|
|
|
|
|
|
Subscription
|
|
|
|
|> where(user_id: ^user_id)
|
|
|
|
|> Repo.all()
|
|
|
|
|> Enum.each(fn record ->
|
|
|
|
subscription = %{
|
|
|
|
keys: %{
|
|
|
|
p256dh: record.key_p256dh,
|
|
|
|
auth: record.key_auth
|
|
|
|
},
|
|
|
|
endpoint: record.endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
case WebPushEncryption.send_web_push(body, subscription, @gcm_api_key) do
|
|
|
|
{:ok, %{status_code: code}} when 400 <= code and code < 500 ->
|
|
|
|
Logger.debug("Removing subscription record")
|
|
|
|
Repo.delete!(record)
|
|
|
|
:ok
|
|
|
|
|
|
|
|
{:ok, %{status_code: code}} when 200 <= code and code < 300 ->
|
|
|
|
:ok
|
|
|
|
|
|
|
|
{:ok, %{status_code: code}} ->
|
|
|
|
Logger.error("Web Push Nonification failed with code: #{code}")
|
|
|
|
:error
|
|
|
|
|
2018-12-06 13:55:46 +00:00
|
|
|
_ ->
|
2018-12-06 12:29:04 +00:00
|
|
|
Logger.error("Web Push Nonification failed with unknown error")
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
{:noreply, state}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast({:send, _}, state) do
|
|
|
|
Logger.warn("Unknown notification type")
|
|
|
|
{:noreply, state}
|
|
|
|
end
|
|
|
|
|
|
|
|
def format(%{activity: %{data: %{"type" => "Create"}}}, actor) do
|
|
|
|
%{
|
|
|
|
title: "New Mention",
|
|
|
|
body: "@#{actor.nickname} has mentiond you",
|
2018-12-06 13:55:46 +00:00
|
|
|
icon: User.avatar_url(actor)
|
2018-12-06 12:29:04 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def format(%{activity: %{data: %{"type" => "Follow"}}}, actor) do
|
|
|
|
%{
|
|
|
|
title: "New Follower",
|
|
|
|
body: "@#{actor.nickname} has followed you",
|
2018-12-06 13:55:46 +00:00
|
|
|
icon: User.avatar_url(actor)
|
2018-12-06 12:29:04 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def format(%{activity: %{data: %{"type" => "Announce"}}}, actor) do
|
|
|
|
%{
|
2018-12-07 08:55:28 +00:00
|
|
|
title: "New Repeat",
|
|
|
|
body: "@#{actor.nickname} has repeated your post",
|
2018-12-06 13:55:46 +00:00
|
|
|
icon: User.avatar_url(actor)
|
2018-12-06 12:29:04 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def format(%{activity: %{data: %{"type" => "Like"}}}, actor) do
|
|
|
|
%{
|
2018-12-07 08:55:28 +00:00
|
|
|
title: "New Favorite",
|
|
|
|
body: "@#{actor.nickname} has favorited your post",
|
2018-12-06 13:55:46 +00:00
|
|
|
icon: User.avatar_url(actor)
|
2018-12-06 12:29:04 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|