Sha256: c5d72e2308eb61501f40c3e854f8e51714c65585f130974253f850a4b95b2447

Contents?: true

Size: 854 Bytes

Versions: 1

Compression:

Stored size: 854 Bytes

Contents

class PageByPage
  module Jump

    def start url
      @start = url
    end

    def iterate selector
      @iterate = selector
    end

    def jump
      url, items, page_count = @start, [], 0

      while true do
        doc = parse url
        doc.css(@selector).each{ |item| items << item }

        next_url = doc.at_css(@iterate)
        break unless next_url

        path = next_url.attr('href')
        url = concat_host path

        page_count += 1
        update_progress Thread.current, page_count if @progress
        break if page_count >= limit

        sleep @interval if @interval
      end

      items
    end

    private

    def concat_host path
      @prefix = (
        regex = path.start_with?('/') ? /([^:|\/])\/.*/ : /(.*[^:|\/])\/.*/
        @start.gsub(regex, '\1')
      )
      File.join @prefix, path
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
page_by_page-0.1.10 lib/page_by_page/jump.rb