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