ManageIQ/manageiq

View on GitHub
app/models/binary_blob/purging.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class BinaryBlob < ApplicationRecord
  module Purging
    extend ActiveSupport::Concern
    include PurgingMixin

    module ClassMethods
      def purge_mode_and_value
        [:scope, purge_date]
      end

      def purge_date
        ::Settings.binary_blob.keep_orphaned.to_i_with_method.seconds.ago.utc
      end

      def purge_window_size
        ::Settings.binary_blob.purge_window_size
      end

      def purge_scope(older_than = nil)
        where(:resource_id => nil).where(arel_table[:created_at].lteq(older_than))
      end

      def purge_associated_records(ids)
        BinaryBlobPart.where(:binary_blob_id => ids).delete_all
      end
    end
  end
end