Class: TheCity::UserListReader

Inherits:
ApiReader show all
Defined in:
lib/readers/user_list_reader.rb

Instance Attribute Summary

Attributes inherited from ApiReader

#headers

Instance Method Summary collapse

Methods inherited from ApiReader

#load_feed, #rate_limit, #rate_limit_remaining

Constructor Details

#initialize(options = {}, cacher = nil) ⇒ UserListReader

Constructor.

Parameters:

  • options (defaults to: {})

    A hash of options for requesting data from the server.

  • cacher (CacheAdapter) (defaults to: nil)

    (optional) The cacher to be used to cache data.



9
10
11
12
13
14
15
16
17
18
# File 'lib/readers/user_list_reader.rb', line 9

def initialize(options = {}, cacher = nil) 
  options[:page] ||= 1

  #@class_key = "user_list_#{page}_#{filter.to_s.downcase.gsub(' ','')}"   
  @url_data_path = "/users"
  @url_data_params = white_list_options(options)
  
  # The object to store and load the cache.
  @cacher = cacher unless cacher.nil?    
end

Instance Method Details

#white_list_options(options) ⇒ Object



20
21
22
23
# File 'lib/readers/user_list_reader.rb', line 20

def white_list_options(options)
  white_list = [:page, :per_page, :filter, :include_participation, :include_custom_fields, :include_barcodes, :include_addresses, :include_family]
  options.clone.delete_if { |key, value| !white_list.include?(key) }
end