gitlab-org--gitlab-foss/lib/bitbucket/paginator.rb

39 lines
764 B
Ruby
Raw Normal View History

module Bitbucket
class Paginator
PAGE_LENGTH = 50 # The minimum length is 10 and the maximum is 100.
def initialize(connection, url, type)
@connection = connection
@type = type
@url = url
@page = nil
2016-12-07 09:33:32 +00:00
connection.set_default_query_parameters(pagelen: PAGE_LENGTH, sort: :created_on)
end
def next
raise StopIteration unless has_next_page?
@page = fetch_next_page
@page.items
end
private
attr_reader :connection, :page, :url, :type
def has_next_page?
page.nil? || page.next?
end
def next_url
page.nil? ? url : page.next
end
def fetch_next_page
parsed_response = connection.get(next_url)
Page.new(parsed_response, type)
end
end
end