2019-08-09 19:08:01 +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.SubscriberWorker do
|
2019-08-09 19:08:01 +02:00
|
|
|
alias Pleroma.Repo
|
2019-08-13 19:20:26 +02:00
|
|
|
alias Pleroma.Web.Federator
|
2019-08-27 13:34:37 +02:00
|
|
|
alias Pleroma.Web.Websub
|
2019-08-09 19:08:01 +02:00
|
|
|
|
2019-08-31 20:58:42 +02:00
|
|
|
use Pleroma.Workers.WorkerHelper, queue: "federator_outgoing"
|
|
|
|
|
2019-08-09 19:08:01 +02:00
|
|
|
@impl Oban.Worker
|
2019-08-23 08:23:10 +02:00
|
|
|
def perform(%{"op" => "refresh_subscriptions"}, _job) do
|
2019-08-13 19:20:26 +02:00
|
|
|
Federator.perform(:refresh_subscriptions)
|
2019-08-09 19:08:01 +02:00
|
|
|
end
|
|
|
|
|
2019-08-23 08:23:10 +02:00
|
|
|
def perform(%{"op" => "request_subscription", "websub_id" => websub_id}, _job) do
|
2019-08-27 13:34:37 +02:00
|
|
|
websub = Repo.get(Websub.WebsubClientSubscription, websub_id)
|
2019-08-13 19:20:26 +02:00
|
|
|
Federator.perform(:request_subscription, websub)
|
2019-08-09 19:08:01 +02:00
|
|
|
end
|
|
|
|
|
2019-08-23 08:23:10 +02:00
|
|
|
def perform(%{"op" => "verify_websub", "websub_id" => websub_id}, _job) do
|
2019-08-27 13:34:37 +02:00
|
|
|
websub = Repo.get(Websub.WebsubServerSubscription, websub_id)
|
2019-08-13 19:20:26 +02:00
|
|
|
Federator.perform(:verify_websub, websub)
|
2019-08-09 19:08:01 +02:00
|
|
|
end
|
|
|
|
end
|