about summary refs log tree commit diff
path: root/app/workers/activitypub/followers_synchronization_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/activitypub/followers_synchronization_worker.rb')
-rw-r--r--app/workers/activitypub/followers_synchronization_worker.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/workers/activitypub/followers_synchronization_worker.rb b/app/workers/activitypub/followers_synchronization_worker.rb
new file mode 100644
index 000000000..35a3ef0b9
--- /dev/null
+++ b/app/workers/activitypub/followers_synchronization_worker.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+class ActivityPub::FollowersSynchronizationWorker
+  include Sidekiq::Worker
+
+  sidekiq_options queue: 'push', lock: :until_executed
+
+  def perform(account_id, url)
+    @account = Account.find_by(id: account_id)
+    return true if @account.nil?
+
+    ActivityPub::SynchronizeFollowersService.new.call(@account, url)
+  end
+end