Sha256: ace99b9061f2ab313e38c33b81bc6b6ef7fc470acb5450b219cec554779527d3

Contents?: true

Size: 1020 Bytes

Versions: 3

Compression:

Stored size: 1020 Bytes

Contents

module Gizzard
  module Base
    extend ActiveSupport::Concern

    class_methods do
      def delete_all_by_id(batch_size: 1000)
        ids = pluck(:id)
        ids.sort!
        ids.each_slice(batch_size) do |chunked_ids|
          # unscoped入れないと既に適用されているスコープが引き継がれる
          unscoped.all.where(id: chunked_ids).delete_all
        end
      end

      def less_than_id(id)
        less_than(:id, id)
      end

      def greater_than_id(id)
        greater_than(:id, id)
      end

      def less_than(key, value)
        value.present? ? all.where(arel_table[key].lt(value)) : all
      end

      def less_than_equal(key, value)
        value.present? ? all.where(arel_table[key].lteq(value)) : all
      end

      def greater_than(key, value)
        value.present? ? all.where(arel_table[key].gt(value)) : all
      end

      def greater_than_equal(key, value)
        value.present? ? all.where(arel_table[key].gteq(value)) : all
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gizzard-0.6.1 lib/gizzard/base.rb
gizzard-0.6.0 lib/gizzard/base.rb
gizzard-0.5.0 lib/gizzard/base.rb