2019-08-09 17:08:01 +00: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 16:08:56 +00:00
|
|
|
defmodule Pleroma.Workers.SubscriberWorker do
|
2019-08-09 17:08:01 +00:00
|
|
|
alias Pleroma.Repo
|
2019-08-13 17:20:26 +00:00
|
|
|
alias Pleroma.Web.Federator
|
2019-08-27 11:34:37 +00:00
|
|
|
alias Pleroma.Web.Websub
|
2019-08-09 17:08:01 +00:00
|
|
|
|
2019-08-31 16:08:56 +00:00
|
|
|
# Note: `max_attempts` is intended to be overridden in `new/2` call
|
2019-08-09 17:08:01 +00:00
|
|
|
use Oban.Worker,
|
|
|
|
queue: "federator_outgoing",
|
2019-08-23 06:23:10 +00:00
|
|
|
max_attempts: 1
|
2019-08-09 17:08:01 +00:00
|
|
|
|
|
|
|
@impl Oban.Worker
|
2019-08-23 06:23:10 +00:00
|
|
|
def perform(%{"op" => "refresh_subscriptions"}, _job) do
|
2019-08-13 17:20:26 +00:00
|
|
|
Federator.perform(:refresh_subscriptions)
|
2019-08-09 17:08:01 +00:00
|
|
|
end
|
|
|
|
|
2019-08-23 06:23:10 +00:00
|
|
|
def perform(%{"op" => "request_subscription", "websub_id" => websub_id}, _job) do
|
2019-08-27 11:34:37 +00:00
|
|
|
websub = Repo.get(Websub.WebsubClientSubscription, websub_id)
|
2019-08-13 17:20:26 +00:00
|
|
|
Federator.perform(:request_subscription, websub)
|
2019-08-09 17:08:01 +00:00
|
|
|
end
|
|
|
|
|
2019-08-23 06:23:10 +00:00
|
|
|
def perform(%{"op" => "verify_websub", "websub_id" => websub_id}, _job) do
|
2019-08-27 11:34:37 +00:00
|
|
|
websub = Repo.get(Websub.WebsubServerSubscription, websub_id)
|
2019-08-13 17:20:26 +00:00
|
|
|
Federator.perform(:verify_websub, websub)
|
2019-08-09 17:08:01 +00:00
|
|
|
end
|
|
|
|
end
|