Module: Mapbox::APIOperations::Request::ClassMethods

Defined in:
lib/mapbox/api_operations.rb

Constant Summary collapse

OPTS_KEYS_TO_PERSIST =
Set[:access_token, :api_base]

Instance Method Summary collapse

Instance Method Details

#request(method, url, params = {}, opts = {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/mapbox/api_operations.rb', line 7

def request(method, url, params={}, opts={})
  headers = opts.clone
  access_token = headers.delete(:access_token)
  api_base = headers.delete(:api_base)
  # Assume all remaining opts must be headers

  response, opts[:api_key] = Mapbox.request(method, url, access_token, params, headers, api_base)

  # Hash#select returns an array before 1.9
  opts_to_persist = {}
  opts.each do |k, v|
    if OPTS_KEYS_TO_PERSIST.include?(k)
      opts_to_persist[k] = v
    end
  end

  [response, opts_to_persist]
end