pleroma/lib/pleroma/workers/web_pusher_worker.ex

24 lines
658 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2022-02-26 00:11:42 -06:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Workers.WebPusherWorker do
alias Pleroma.Notification
alias Pleroma.Repo
use Pleroma.Workers.WorkerHelper, queue: "web_push"
@impl Oban.Worker
2020-06-23 07:09:01 -05:00
def perform(%Job{args: %{"op" => "web_push", "notification_id" => notification_id}}) do
2019-09-17 13:12:27 -05:00
notification =
Notification
|> Repo.get(notification_id)
|> Repo.preload([:activity, :user])
2019-09-17 13:12:27 -05:00
Pleroma.Web.Push.Impl.perform(notification)
end
2022-11-11 12:42:29 -06:00
@impl Oban.Worker
def timeout(_job), do: :timer.seconds(5)
end