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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of PagedCollection.



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

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

#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

Instance Method Details

#cache_keyObject



31
32
33
34
35
36
37
38
39
# File 'lib/hal_api/paged_collection.rb', line 31

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



74
75
76
# File 'lib/hal_api/paged_collection.rb', line 74

def count
  items.length
end

#is_root_resourceObject



45
46
47
# File 'lib/hal_api/paged_collection.rb', line 45

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

#item_classObject



53
54
55
# File 'lib/hal_api/paged_collection.rb', line 53

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

#item_decoratorObject



57
58
59
# File 'lib/hal_api/paged_collection.rb', line 57

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



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

def parent
  rep = options[:parent]
  return rep unless rep.respond_to?(:becomes)
  klass = rep.class.try(:base_class)
  (klass && (klass != rep.class)) ? rep.becomes(klass) : rep
end

#persisted?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/hal_api/paged_collection.rb', line 20

def persisted?
  false
end

#request_stubObject



41
42
43
# File 'lib/hal_api/paged_collection.rb', line 41

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

#show_curiesObject



49
50
51
# File 'lib/hal_api/paged_collection.rb', line 49

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

#to_modelObject



16
17
18
# File 'lib/hal_api/paged_collection.rb', line 16

def to_model
  self
end

#urlObject

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



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

def url
  options[:url]
end