2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-06 12:29:04 +00:00
|
|
|
defmodule Pleroma.Web.Push do
|
|
|
|
use GenServer
|
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
alias Pleroma.Web.Push.Impl
|
2018-12-06 12:29:04 +00:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
##############
|
|
|
|
# Client API #
|
|
|
|
##############
|
2018-12-06 12:29:04 +00:00
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def start_link do
|
2018-12-06 12:29:04 +00:00
|
|
|
GenServer.start_link(__MODULE__, :ok, name: __MODULE__)
|
|
|
|
end
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def vapid_config do
|
2018-12-09 12:45:21 +00:00
|
|
|
Application.get_env(:web_push_encryption, :vapid_details, [])
|
|
|
|
end
|
2018-12-06 12:29:04 +00:00
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
def enabled do
|
2018-12-09 12:45:21 +00:00
|
|
|
case vapid_config() do
|
|
|
|
[] -> false
|
|
|
|
list when is_list(list) -> true
|
|
|
|
_ -> false
|
2018-12-06 12:29:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
def send(notification),
|
|
|
|
do: GenServer.cast(__MODULE__, {:send, notification})
|
|
|
|
|
|
|
|
####################
|
|
|
|
# Server Callbacks #
|
|
|
|
####################
|
2018-12-06 12:29:04 +00:00
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
@impl true
|
2018-12-09 12:45:21 +00:00
|
|
|
def init(:ok) do
|
2019-03-06 13:20:12 +00:00
|
|
|
if enabled() do
|
|
|
|
{:ok, nil}
|
|
|
|
else
|
2018-12-09 12:45:21 +00:00
|
|
|
Logger.warn("""
|
|
|
|
VAPID key pair is not found. If you wish to enabled web push, please run
|
|
|
|
|
|
|
|
mix web_push.gen.keypair
|
|
|
|
|
|
|
|
and add the resulting output to your configuration file.
|
|
|
|
""")
|
|
|
|
|
|
|
|
:ignore
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
@impl true
|
|
|
|
def handle_cast({:send, notification}, state) do
|
|
|
|
if enabled() do
|
|
|
|
Impl.perform_send(notification)
|
2019-03-04 17:47:34 +00:00
|
|
|
end
|
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
{:noreply, state}
|
2018-12-06 12:29:04 +00:00
|
|
|
end
|
|
|
|
end
|