0
0

Add method for media-referencing status in AccountStatusCleanupPolicy (#31798)

This commit is contained in:
Matt Jankowski 2024-09-09 04:33:51 -04:00 committed by GitHub
parent 1f13b87567
commit e6969cf4e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -157,7 +157,7 @@ class AccountStatusesCleanupPolicy < ApplicationRecord
end
def without_media_scope
Status.where('NOT EXISTS (SELECT 1 FROM media_attachments media WHERE media.status_id = statuses.id)')
Status.where.not(status_media_reference_exists)
end
def without_poll_scope
@ -175,6 +175,14 @@ class AccountStatusesCleanupPolicy < ApplicationRecord
Status.where(account_id: account_id)
end
def status_media_reference_exists
MediaAttachment
.where(MediaAttachment.arel_table[:status_id].eq Status.arel_table[:id])
.select(1)
.arel
.exists
end
def self_status_reference_exists(model)
model
.where(model.arel_table[:account_id].eq Status.arel_table[:account_id])