[#1149] Refactored Oban workers API (introduced `enqueue/3`).
[akkoma] / lib / pleroma / workers / web_pusher_worker.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Workers.WebPusherWorker do
6 alias Pleroma.Notification
7 alias Pleroma.Repo
8
9 # Note: `max_attempts` is intended to be overridden in `new/2` call
10 use Oban.Worker,
11 queue: "web_push",
12 max_attempts: 1
13
14 use Pleroma.Workers.WorkerHelper, queue: "web_push"
15
16 @impl Oban.Worker
17 def perform(%{"op" => "web_push", "notification_id" => notification_id}, _job) do
18 notification = Repo.get(Notification, notification_id)
19 Pleroma.Web.Push.Impl.perform(notification)
20 end
21 end