2019-08-13 17:20:26 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Workers.WebPusher do
|
|
|
|
alias Pleroma.Notification
|
|
|
|
alias Pleroma.Repo
|
|
|
|
|
|
|
|
# Note: `max_attempts` is intended to be overridden in `new/1` call
|
|
|
|
use Oban.Worker,
|
|
|
|
queue: "web_push",
|
2019-08-23 06:23:10 +00:00
|
|
|
max_attempts: 1
|
2019-08-13 17:20:26 +00:00
|
|
|
|
|
|
|
@impl Oban.Worker
|
2019-08-23 06:23:10 +00:00
|
|
|
def perform(%{"op" => "web_push", "notification_id" => notification_id}, _job) do
|
2019-08-13 17:20:26 +00:00
|
|
|
notification = Repo.get(Notification, notification_id)
|
|
|
|
Pleroma.Web.Push.Impl.perform(notification)
|
|
|
|
end
|
|
|
|
end
|