2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 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
|
2019-08-31 16:08:56 +00:00
|
|
|
alias Pleroma.Workers.WebPusherWorker
|
2018-12-06 12:29:04 +00:00
|
|
|
|
|
|
|
require Logger
|
|
|
|
|
2019-04-05 12:46:28 +00:00
|
|
|
def init do
|
2019-04-05 12:38:44 +00: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 12:29:04 +00:00
|
|
|
|
2019-04-05 12:38:44 +00:00
|
|
|
and add the resulting output to your configuration file.
|
|
|
|
""")
|
|
|
|
end
|
2018-12-06 12:29:04 +00:00
|
|
|
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-08-13 17:20:26 +00:00
|
|
|
def send(notification) do
|
2019-08-31 18:58:42 +00:00
|
|
|
WebPusherWorker.enqueue("web_push", %{"notification_id" => notification.id})
|
2019-08-13 17:20:26 +00:00
|
|
|
end
|
2018-12-06 12:29:04 +00:00
|
|
|
end
|