Browse Source

Move PubSubHubbub pinging to a background worker

It can take as much as 0.5s if not longer to complete
closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
3319473b2c
5 changed files with 13 additions and 4 deletions
  1. +1
    -1
      app/services/favourite_service.rb
  2. +1
    -1
      app/services/follow_service.rb
  3. +1
    -1
      app/services/post_status_service.rb
  4. +1
    -1
      app/services/reblog_service.rb
  5. +9
    -0
      app/workers/hub_ping_worker.rb

+ 1
- 1
app/services/favourite_service.rb View File

@ -5,7 +5,7 @@ class FavouriteService < BaseService
# @return [Favourite]
def call(account, status)
favourite = Favourite.create!(account: account, status: status)
account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
HubPingWorker.perform_async(account.id)
if status.local?
NotificationMailer.favourite(status, account).deliver_later unless status.account.blocking?(account)

+ 1
- 1
app/services/follow_service.rb View File

@ -17,7 +17,7 @@ class FollowService < BaseService
end
merge_into_timeline(target_account, source_account)
source_account.ping!(account_url(source_account, format: 'atom'), [Rails.configuration.x.hub_url])
HubPingWorker.perform_async(source_account.id)
follow
end

+ 1
- 1
app/services/post_status_service.rb View File

@ -10,7 +10,7 @@ class PostStatusService < BaseService
attach_media(status, media_ids)
process_mentions_service.call(status)
DistributionWorker.perform_async(status.id)
account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
HubPingWorker.perform_async(account.id)
status
end

+ 1
- 1
app/services/reblog_service.rb View File

@ -6,7 +6,7 @@ class ReblogService < BaseService
def call(account, reblogged_status)
reblog = account.statuses.create!(reblog: reblogged_status, text: '')
DistributionWorker.perform_async(reblog.id)
account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
HubPingWorker.perform_async(account.id)
if reblogged_status.local?
NotificationMailer.reblog(reblogged_status, account).deliver_later unless reblogged_status.account.blocking?(account)

+ 9
- 0
app/workers/hub_ping_worker.rb View File

@ -0,0 +1,9 @@
class HubPingWorker
include Sidekiq::Worker
include RoutingHelper
def perform(account_id)
account = Account.find(account_id)
account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
end
end

Loading…
Cancel
Save