2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-05 11:50:21 +00:00
|
|
|
class HubPingWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
def perform(account_id)
|
|
|
|
account = Account.find(account_id)
|
2016-12-02 13:14:49 +00:00
|
|
|
return unless account.local?
|
|
|
|
OStatus2::Publication.new(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url]).publish
|
2016-10-05 11:50:21 +00:00
|
|
|
end
|
|
|
|
end
|