summaryrefslogtreecommitdiff
path: root/lib/pleroma/workers/web_pusher_worker.ex
blob: 0cfdc6a6f80ddea9e996bf02bce4044563f174ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 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
  def perform(%Job{args: %{"op" => "web_push", "notification_id" => notification_id}}) do
    notification =
      Notification
      |> Repo.get(notification_id)
      |> Repo.preload([:activity, :user])

    Pleroma.Web.Push.Impl.perform(notification)
  end
end