about summary refs log tree commit diff
path: root/app/workers/activitypub/synchronize_featured_tags_collection_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/activitypub/synchronize_featured_tags_collection_worker.rb')
-rw-r--r--app/workers/activitypub/synchronize_featured_tags_collection_worker.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/workers/activitypub/synchronize_featured_tags_collection_worker.rb b/app/workers/activitypub/synchronize_featured_tags_collection_worker.rb
new file mode 100644
index 000000000..14af4f725
--- /dev/null
+++ b/app/workers/activitypub/synchronize_featured_tags_collection_worker.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+class ActivityPub::SynchronizeFeaturedTagsCollectionWorker
+  include Sidekiq::Worker
+
+  sidekiq_options queue: 'pull', lock: :until_executed
+
+  def perform(account_id, url)
+    ActivityPub::FetchFeaturedTagsCollectionService.new.call(Account.find(account_id), url)
+  rescue ActiveRecord::RecordNotFound
+    true
+  end
+end