2024-09-24T03:53:27.770757+00:00 NightmareMoon pleroma: path=/notice/AmJcSqyeyij4W70K36 [error] Preloading for /notice/AmJcSqyeyij4W70K36 failed. ** (FunctionClauseError) no function clause matching in Keyword.get/3 (elixir 1.15.8) lib/keyword.ex:388: Keyword.get(nil, :public_key, nil) (pleroma 2.7.0-3067-g9b76dbd4-dev-lanodan2) lib/pleroma/web/mastodon_api/views/instance_view.ex:262: Pleroma.Web.MastodonAPI.InstanceView.pleroma_configuration/1 (pleroma 2.7.0-3067-g9b76dbd4-dev-lanodan2) lib/pleroma/web/mastodon_api/views/instance_view.ex:45: Pleroma.Web.MastodonAPI.InstanceView.render/2 (pleroma 2.7.0-3067-g9b76dbd4-dev-lanodan2) lib/pleroma/web/preload/providers/instance.ex:28: Pleroma.Web.Preload.Providers.Instance.build_info_tag/1 (pleroma 2.7.0-3067-g9b76dbd4-dev-lanodan2) lib/pleroma/web/preload/providers/instance.ex:21: Pleroma.Web.Preload.Providers.Instance.generate_terms/1 (pleroma 2.7.0-3067-g9b76dbd4-dev-lanodan2) lib/pleroma/web/preload.ex:13: anonymous fn/3 in Pleroma.Web.Preload.build_tags/2
34 lines
957 B
Elixir
34 lines
957 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.Push do
|
|
alias Pleroma.Workers.WebPusherWorker
|
|
|
|
require Logger
|
|
|
|
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
|
|
|
|
and add the resulting output to your configuration file.
|
|
""")
|
|
end
|
|
end
|
|
|
|
def vapid_config do
|
|
Application.get_env(:web_push_encryption, :vapid_details, [])
|
|
end
|
|
|
|
def enabled, do: match?([subject: _, public_key: _, private_key: _], vapid_config())
|
|
|
|
@spec send(Pleroma.Notification.t()) ::
|
|
{:ok, Oban.Job.t()} | {:error, Oban.Job.changeset() | term()}
|
|
def send(notification) do
|
|
WebPusherWorker.new(%{"op" => "web_push", "notification_id" => notification.id})
|
|
|> Oban.insert()
|
|
end
|
|
end
|