2023-08-25 00:40:04 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccountStatusesSearch
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
after_update_commit :enqueue_update_public_statuses_index, if: :saved_change_to_indexable?
|
|
|
|
after_destroy_commit :enqueue_remove_from_public_statuses_index, if: :indexable?
|
|
|
|
end
|
|
|
|
|
|
|
|
def enqueue_update_public_statuses_index
|
|
|
|
if indexable?
|
|
|
|
enqueue_add_to_public_statuses_index
|
|
|
|
else
|
|
|
|
enqueue_remove_from_public_statuses_index
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def enqueue_add_to_public_statuses_index
|
|
|
|
return unless Chewy.enabled?
|
|
|
|
|
|
|
|
AddToPublicStatusesIndexWorker.perform_async(id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def enqueue_remove_from_public_statuses_index
|
|
|
|
return unless Chewy.enabled?
|
|
|
|
|
|
|
|
RemoveFromPublicStatusesIndexWorker.perform_async(id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_public_statuses_index!
|
|
|
|
return unless Chewy.enabled?
|
|
|
|
|
2023-09-05 23:37:23 +10:00
|
|
|
statuses.without_reblogs.where(visibility: :public).reorder(nil).find_in_batches do |batch|
|
2023-08-28 23:04:57 +10:00
|
|
|
PublicStatusesIndex.import(batch)
|
2023-08-25 00:40:04 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_public_statuses_index!
|
|
|
|
return unless Chewy.enabled?
|
|
|
|
|
|
|
|
PublicStatusesIndex.filter(term: { account_id: id }).delete_all
|
|
|
|
end
|
|
|
|
end
|