37 lines
810 B
Ruby
37 lines
810 B
Ruby
|
module Bitbucket
|
||
|
class Page
|
||
|
attr_reader :attrs, :items
|
||
|
|
||
|
def initialize(raw, type)
|
||
|
@attrs = parse_attrs(raw)
|
||
|
@items = parse_values(raw, representation_class(type))
|
||
|
end
|
||
|
|
||
|
def next?
|
||
|
attrs.fetch(:next, false)
|
||
|
end
|
||
|
|
||
|
def next
|
||
|
attrs.fetch(:next)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def parse_attrs(raw)
|
||
|
attrs = %w(size page pagelen next previous)
|
||
|
attrs.map { |attr| { attr.to_sym => raw[attr] } }.reduce(&:merge)
|
||
|
end
|
||
|
|
||
|
def parse_values(raw, representation_class)
|
||
|
return [] if raw['values'].nil? || !raw['values'].is_a?(Array)
|
||
|
|
||
|
raw['values'].map { |hash| representation_class.new(hash) }
|
||
|
end
|
||
|
|
||
|
def representation_class(type)
|
||
|
class_name = "Bitbucket::Representation::#{type.to_s.camelize}"
|
||
|
class_name.constantize
|
||
|
end
|
||
|
end
|
||
|
end
|