Sha256: f25108dfc463267572437433244764bc92ed834165d80c99b3d7afc3f8aa598f

Contents?: true

Size: 952 Bytes

Versions: 1

Compression:

Stored size: 952 Bytes

Contents

module InsalesApi
  module Resource
    module WithUpdatedSince
      def find_in_batches(options = {}, &block)
        return super unless updated_since = options.delete(:updated_since)
        find_updated_since(updated_since, options, &block)
      end

      def find_updated_since(updated_since, options = {})
        per_page = options[:per_page] || PER_PAGE_DEFAULT
        params    = { per_page: per_page }.merge(options[:params] || {})
        last_id   = nil
        loop do
          items = all(params: params.merge(
            updated_since:  updated_since,
            from_id:        last_id,
          ))

          raise ActiveResource::ResourceNotFound if items.nil?

          return unless items.any?

          yield items
          return if items.count < per_page
          last_item     = items.last
          last_id       = last_item.id
          updated_since = last_item.updated_at
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
insales_api-0.1.2 lib/insales_api/resource/with_updated_since.rb