2019-08-13 19:20:26 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-08-31 18:08:56 +02:00
|
|
|
defmodule Pleroma.Workers.WebPusherWorker do
|
2019-08-13 19:20:26 +02:00
|
|
|
alias Pleroma.Notification
|
|
|
|
alias Pleroma.Repo
|
|
|
|
|
2019-08-31 20:58:42 +02:00
|
|
|
use Pleroma.Workers.WorkerHelper, queue: "web_push"
|
|
|
|
|
2019-08-13 19:20:26 +02:00
|
|
|
@impl Oban.Worker
|
2019-08-23 08:23:10 +02:00
|
|
|
def perform(%{"op" => "web_push", "notification_id" => notification_id}, _job) do
|
2019-09-17 20:12:27 +02:00
|
|
|
notification =
|
|
|
|
Notification
|
|
|
|
|> Repo.get(notification_id)
|
|
|
|
|> Repo.preload([:activity])
|
|
|
|
|
2019-08-13 19:20:26 +02:00
|
|
|
Pleroma.Web.Push.Impl.perform(notification)
|
|
|
|
end
|
|
|
|
end
|