pleroma/lib/pleroma/web/push.ex

34 lines
933 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-12-06 12:29:04 +00:00
defmodule Pleroma.Web.Push do
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
unless enabled() do
Logger.warning("""
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
and add the resulting output to your configuration file.
""")
end
2018-12-06 12:29:04 +00:00
end
def vapid_config do
Application.get_env(:web_push_encryption, :vapid_details, nil)
end
2018-12-06 12:29:04 +00:00
def enabled, do: match?([subject: _, public_key: _, private_key: _], vapid_config())
2018-12-06 12:29:04 +00:00
2024-06-08 23:20:38 +00:00
@spec send(Pleroma.Notification.t()) ::
{:ok, Oban.Job.t()} | {:error, Oban.Job.changeset() | term()}
def send(notification) do
WebPusherWorker.enqueue("web_push", %{"notification_id" => notification.id})
end
2018-12-06 12:29:04 +00:00
end