2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-06 13:29:04 +01:00
|
|
|
defmodule Pleroma.Web.Push do
|
2019-08-31 18:08:56 +02:00
|
|
|
alias Pleroma.Workers.WebPusherWorker
|
2018-12-06 13:29:04 +01:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
2019-04-05 14:46:28 +02:00
|
|
|
def init do
|
2019-04-05 14:38:44 +02:00
|
|
|
unless enabled() do
|
|
|
|
Logger.warn("""
|
|
|
|
VAPID key pair is not found. If you wish to enabled web push, please run
|
|
|
|
|
|
|
|
mix web_push.gen.keypair
|
2018-12-06 13:29:04 +01:00
|
|
|
|
2019-04-05 14:38:44 +02:00
|
|
|
and add the resulting output to your configuration file.
|
|
|
|
""")
|
|
|
|
end
|
2018-12-06 13:29:04 +01:00
|
|
|
end
|
|
|
|
|
2019-03-05 04:18:43 +01:00
|
|
|
def vapid_config do
|
2018-12-09 13:45:21 +01:00
|
|
|
Application.get_env(:web_push_encryption, :vapid_details, [])
|
|
|
|
end
|
2018-12-06 13:29:04 +01:00
|
|
|
|
2019-03-05 04:18:43 +01:00
|
|
|
def enabled do
|
2018-12-09 13:45:21 +01:00
|
|
|
case vapid_config() do
|
|
|
|
[] -> false
|
|
|
|
list when is_list(list) -> true
|
|
|
|
_ -> false
|
2018-12-06 13:29:04 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-13 19:20:26 +02:00
|
|
|
def send(notification) do
|
2019-08-31 20:58:42 +02:00
|
|
|
WebPusherWorker.enqueue("web_push", %{"notification_id" => notification.id})
|
2019-08-13 19:20:26 +02:00
|
|
|
end
|
2018-12-06 13:29:04 +01:00
|
|
|
end
|