Class: HalApi::PagedCollection

Inherits:
Object
  • Object
show all
Extended by:
ActiveModel::Naming, Forwardable
Defined in:
lib/hal_api/paged_collection.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(items, request = nil, options = nil) ⇒ PagedCollection

Returns a new instance of PagedCollection.



30
31
32
33
34
35
# File 'lib/hal_api/paged_collection.rb', line 30

def initialize(items, request=nil, options=nil)
  self.items   = items
  self.request = request || request_stub
  self.options = options || {}
  self.options[:is_root_resource] = true unless (self.options[:is_root_resource] == false)
end

Instance Attribute Details

#facetsObject

Returns the value of attribute facets.



9
10
11
# File 'lib/hal_api/paged_collection.rb', line 9

def facets
  @facets
end

#itemsObject

Returns the value of attribute items.



9
10
11
# File 'lib/hal_api/paged_collection.rb', line 9

def items
  @items
end

#optionsObject

Returns the value of attribute options.



9
10
11
# File 'lib/hal_api/paged_collection.rb', line 9

def options
  @options
end

#requestObject

Returns the value of attribute request.



9
10
11
# File 'lib/hal_api/paged_collection.rb', line 9

def request
  @request
end

Class Method Details

.representerObject



18
19
20
# File 'lib/hal_api/paged_collection.rb', line 18

def self.representer
  representer_class || HalApi::PagedCollectionRepresenter
end

Instance Method Details

#cache_keyObject



37
38
39
40
41
42
43
44
45
# File 'lib/hal_api/paged_collection.rb', line 37

def cache_key
  item_keys = items.inject([]) do |keys, i|
    keys << i.try(:id)
    keys << i.try(:updated_at).try(:utc).to_i
  end
  key_components = ['c', item_class.model_name.cache_key]
  key_components << OpenSSL::Digest::MD5.hexdigest(item_keys.join)
  ActiveSupport::Cache.expand_cache_key(key_components)
end

#countObject



81
82
83
# File 'lib/hal_api/paged_collection.rb', line 81

def count
  items.length
end

#is_root_resourceObject



51
52
53
# File 'lib/hal_api/paged_collection.rb', line 51

def is_root_resource
  !!self.options[:is_root_resource]
end

#item_classObject



59
60
61
# File 'lib/hal_api/paged_collection.rb', line 59

def item_class
  options[:item_class] || self.items.first.try(:item_class) || self.items.first.class
end

#item_decoratorObject



63
64
65
# File 'lib/hal_api/paged_collection.rb', line 63

def item_decorator
  options[:item_decorator] || "Api::#{item_class.name}Representer".constantize
end

#parentObject

If this is an embedded collection, the parent will be set here for use in urls



73
74
75
76
77
78
79
# File 'lib/hal_api/paged_collection.rb', line 73

def parent
  rep = options[:parent]
  return rep unless rep.respond_to?(:becomes, true)

  klass = rep.class.try(:base_class)
  klass && (klass != rep.class) ? rep.becomes(klass) : rep
end

#persisted?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/hal_api/paged_collection.rb', line 26

def persisted?
  false
end

#request_stubObject



47
48
49
# File 'lib/hal_api/paged_collection.rb', line 47

def request_stub
  OpenStruct.new(params: {})
end

#show_curiesObject



55
56
57
# File 'lib/hal_api/paged_collection.rb', line 55

def show_curies
  is_root_resource && !options[:no_curies]
end

#to_modelObject



22
23
24
# File 'lib/hal_api/paged_collection.rb', line 22

def to_model
  self
end

#urlObject

url to use for the self:href, can be a string or proc



68
69
70
# File 'lib/hal_api/paged_collection.rb', line 68

def url
  options[:url]
end