Class: BridgeAPI::ApiArray
- Inherits:
-
Object
- Object
- BridgeAPI::ApiArray
- Includes:
- Enumerable
- Defined in:
- lib/bridge_api/api_array.rb
Instance Attribute Summary collapse
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#members ⇒ Object
readonly
Returns the value of attribute members.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Class Method Summary collapse
Instance Method Summary collapse
- #[](i) ⇒ Object
- #all_pages! ⇒ Object
- #each(&block) ⇒ Object
- #each_page(&block) ⇒ Object
-
#initialize(response, api_client, result_mapping) ⇒ ApiArray
constructor
A new instance of ApiArray.
- #last ⇒ Object
- #length ⇒ Object
- #linked ⇒ Object
- #meta ⇒ Object
- #next_page ⇒ Object
- #pages? ⇒ Boolean
Constructor Details
#initialize(response, api_client, result_mapping) ⇒ ApiArray
Returns a new instance of ApiArray.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/bridge_api/api_array.rb', line 15 def initialize(response, api_client, result_mapping) @meta_fields = %w(meta linked) @api_client = api_client @linked = {} @meta = {} @extra_meta_fields = [] pattern = /.*(\/api\/.*)/ path = response.env.url matches = pattern.match(path.to_s) mapping = nil if matches mapping_exists = result_mapping.key?(matches[1]) mapping = result_mapping[matches[1]] if mapping_exists end unless mapping.nil? @extra_meta_fields.concat(mapping[:meta]) end case response.status when *((200..206).to_a + [302]) (response) @members = get_response_content(response) end end |
Instance Attribute Details
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
9 10 11 |
# File 'lib/bridge_api/api_array.rb', line 9 def headers @headers end |
#members ⇒ Object (readonly)
Returns the value of attribute members.
9 10 11 |
# File 'lib/bridge_api/api_array.rb', line 9 def members @members end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
9 10 11 |
# File 'lib/bridge_api/api_array.rb', line 9 def status @status end |
Class Method Details
Instance Method Details
#[](i) ⇒ Object
43 44 45 |
# File 'lib/bridge_api/api_array.rb', line 43 def [](i) @members[i] end |
#all_pages! ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/bridge_api/api_array.rb', line 82 def all_pages! if pages? response = get_page(@next_page) (response) @members.concat(get_response_content(response)) while @next_page response = get_page(@next_page) (response) @members.concat(get_response_content(response)) end end self end |
#each(&block) ⇒ Object
51 52 53 |
# File 'lib/bridge_api/api_array.rb', line 51 def each(&block) @members.each { |member| block.call(member) } end |
#each_page(&block) ⇒ Object
71 72 73 74 75 76 77 78 79 80 |
# File 'lib/bridge_api/api_array.rb', line 71 def each_page(&block) block.call(@members, @linked, @meta) while @next_page response = get_page(@next_page) (response, false) @members = get_response_content(response) block.call(@members, @linked, @meta) end @link_hash = {} end |
#last ⇒ Object
47 48 49 |
# File 'lib/bridge_api/api_array.rb', line 47 def last @members.last end |
#length ⇒ Object
39 40 41 |
# File 'lib/bridge_api/api_array.rb', line 39 def length @members.length end |
#linked ⇒ Object
63 64 65 |
# File 'lib/bridge_api/api_array.rb', line 63 def linked @linked end |
#meta ⇒ Object
59 60 61 |
# File 'lib/bridge_api/api_array.rb', line 59 def @meta end |
#next_page ⇒ Object
67 68 69 |
# File 'lib/bridge_api/api_array.rb', line 67 def next_page load_page(@next_page) end |
#pages? ⇒ Boolean
55 56 57 |
# File 'lib/bridge_api/api_array.rb', line 55 def pages? !@next_page.nil? end |