d598e4fd93
Enables frozen for the following: * lib/*.rb * lib/banzai/**/*.rb * lib/bitbucket/**/*.rb * lib/constraints/**/*.rb * lib/container_registry/**/*.rb * lib/declarative_policy/**/*.rb Partially addresses #47424.
38 lines
749 B
Ruby
38 lines
749 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
end
|
|
|
|
def items
|
|
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, pagelen: PAGE_LENGTH, sort: :created_on)
|
|
Page.new(parsed_response, type)
|
|
end
|
|
end
|
|
end
|