mashirozx/mastodon

View on GitHub
app/services/activitypub/prepare_followers_synchronization_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class ActivityPub::PrepareFollowersSynchronizationService < BaseService
  include JsonLdHelper

  def call(account, params)
    @account = account

    return if params['collectionId'] != @account.followers_url || invalid_origin?(params['url']) || @account.local_followers_hash == params['digest']

    ActivityPub::FollowersSynchronizationWorker.perform_async(@account.id, params['url'])
  end
end