Class: Tml::Api::Client

Inherits:
Base
  • Object
show all
Defined in:
lib/tml/api/client.rb

Constant Summary collapse

API_PATH =
'/v1'

Instance Attribute Summary

Attributes inherited from Base

#attributes

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

attributes, belongs_to, has_many, #hash_value, hash_value, #initialize, #method_missing, #to_hash, #update_attributes

Constructor Details

This class inherits a constructor from Tml::Base

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Tml::Base

Class Method Details

.error?(data) ⇒ Boolean

checks if there are any API errors

Returns:

  • (Boolean)


68
69
70
# File 'lib/tml/api/client.rb', line 68

def self.error?(data)
  not data['error'].nil?
end

Instance Method Details

#access_tokenObject

access token



183
184
185
# File 'lib/tml/api/client.rb', line 183

def access_token
  application.token
end

#api(path, params = {}, opts = {}) ⇒ Object

checks mode and cache, and fetches data



206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/tml/api/client.rb', line 206

def api(path, params = {}, opts = {})
  # inline mode should always use API calls
  if live_api_request?
    params = params.merge(:access_token => access_token, :app_id => application.key)
    return process_response(execute_request(path, params, opts), opts)
  end

  return unless cache_enabled?(opts)

  # ensure the cache version is not outdated
  verify_cache_version

  return if Tml.cache.version.invalid?

  # get request uses local cache, then CDN
  data = Tml.cache.fetch(opts[:cache_key]) do
    fetched_data = get_from_cdn(opts[:cache_key]) unless Tml.cache.read_only?
    fetched_data || {}
  end

  process_response(data, opts)
end

#cache_enabled?(opts) ⇒ Boolean

checks if cache is enable

Returns:

  • (Boolean)


197
198
199
200
201
202
203
# File 'lib/tml/api/client.rb', line 197

def cache_enabled?(opts)
  # only gets ever get cached
  return false unless opts[:method] == :get
  return false if opts[:cache_key].nil?
  return false unless Tml.cache.enabled?
  true
end

#cdn_connectionObject

cdn_connection



134
135
136
137
138
139
# File 'lib/tml/api/client.rb', line 134

def cdn_connection
  @cdn_connection ||= Faraday.new(:url => cdn_host) do |faraday|
    faraday.request(:url_encoded) # form-encode POST params
    faraday.adapter(Faraday.default_adapter) # make requests with Net::HTTP
  end
end

#cdn_hostObject



113
114
115
# File 'lib/tml/api/client.rb', line 113

def cdn_host
  @cdn_host ||= URI.join(application.cdn_host, '/').to_s
end

#connectionObject

API connection



78
79
80
81
82
83
84
# File 'lib/tml/api/client.rb', line 78

def connection
  @connection ||= Faraday.new(:url => host) do |faraday|
    faraday.request(:url_encoded) # form-encode POST params
    # faraday.response :logger                  # log requests to STDOUT
    faraday.adapter(Faraday.default_adapter) # make requests with Net::HTTP
  end
end

#delete(path, params = {}, opts = {}) ⇒ Object

delete from API



63
64
65
# File 'lib/tml/api/client.rb', line 63

def delete(path, params = {}, opts = {})
  api(path, params, opts.merge(:method => :delete))
end

#execute_request(path, params = {}, opts = {}) ⇒ Object

execute API request



281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# File 'lib/tml/api/client.rb', line 281

def execute_request(path, params = {}, opts = {})
  response = nil
  error = nil

  path = prepare_api_path(path)

  opts[:method] ||= :get

  trace_api_call(path, params, opts.merge(:host => host)) do
    begin
      if opts[:method] == :post
        response = connection.post(path, params)
      elsif opts[:method] == :put
        response = connection.put(path, params)
      elsif opts[:method] == :delete
        response = connection.delete(path, params)
      else
        response = connection.get do |request|
          prepare_request(request, path, params, opts)
        end
      end
    rescue => ex
      Tml.logger.error("Failed to execute request: #{ex.message[0..255]}")
      error = ex
      nil
    end
  end

  if error
    raise Tml::Exception.new("Error: #{error}")
  end

  if response.status >= 500 && response.status < 600
    raise Tml::Exception.new("Error: #{response.body}")
  end

  if opts[:method] == :get && !opts[:uncompressed]
    compressed_data = response.body
    return if compressed_data.nil? or compressed_data == ''

    data = Zlib::GzipReader.new(StringIO.new(compressed_data.to_s)).read
    Tml.logger.debug("Compressed: #{compressed_data.length} Uncompressed: #{data.length}")
  else
    data = response.body
  end

  return data if opts[:raw]

  begin
    data = JSON.parse(data)
  rescue => ex
    raise Tml::Exception.new("Failed to parse response: #{ex.message[0..255]}")
  end

  if data.is_a?(Hash) and not data['error'].nil?
    raise Tml::Exception.new("Error: #{data['error']}")
  end

  data
end

#get(path, params = {}, opts = {}) ⇒ Object

get from API



48
49
50
# File 'lib/tml/api/client.rb', line 48

def get(path, params = {}, opts = {})
  api(path, params, opts.merge(:method => :get))
end

#get_cache_versionObject

get cache version from CDN



87
88
89
90
91
92
93
94
95
96
# File 'lib/tml/api/client.rb', line 87

def get_cache_version
  data = get_from_cdn('version', {t: Time.now.to_i}, {public: true, uncompressed: true})

  unless data
    Tml.logger.debug('No releases have been published yet')
    return '0'
  end

  data['version']
end

#get_cdn_path(key, opts = {}) ⇒ Object



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/tml/api/client.rb', line 117

def get_cdn_path(key, opts = {})
  base_path = URI(application.cdn_host).path
  base_path += '/' unless base_path.last == '/'

  adjusted_path = "#{base_path}#{application.key}/"

  if key == 'version'
    adjusted_path += "#{key}.json"
  else
    adjusted_path += "#{Tml.cache.version.to_s}/#{key}.json#{opts[:uncompressed] ? '' : '.gz'}"
  end

  pp adjusted_path
  adjusted_path
end

#get_from_cdn(key, params = {}, opts = {}) ⇒ Object

get from the CDN



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/tml/api/client.rb', line 142

def get_from_cdn(key, params = {}, opts = {})
  if Tml.cache.version.invalid? and key != 'version'
    return nil
  end

  response = nil
  cdn_path = get_cdn_path(key, opts)

  trace_api_call(cdn_path, params, opts.merge(:host => application.cdn_host)) do
    begin
      response = cdn_connection.get do |request|
        prepare_request(request, cdn_path, params, opts)
      end
    rescue => ex
      Tml.logger.error("Failed to execute request: #{ex.message[0..255]}")
      return nil
    end
  end
  return if response.status >= 500 and response.status < 600
  return if response.body.nil? or response.body == '' or response.body.match(/xml/)

  compressed_data = response.body
  return if compressed_data.nil? or compressed_data == ''

  data = compressed_data

  unless opts[:uncompressed]
    data = Zlib::GzipReader.new(StringIO.new(compressed_data.to_s)).read
    Tml.logger.debug("Compressed: #{compressed_data.length} Uncompressed: #{data.length}")
  end

  begin
    data = JSON.parse(data)
  rescue => ex
    return nil
  end

  data
end

#hostObject

API Host



73
74
75
# File 'lib/tml/api/client.rb', line 73

def host
  application.host
end

#live_api_request?Boolean

should the API go to live server

Returns:

  • (Boolean)


188
189
190
191
192
193
194
# File 'lib/tml/api/client.rb', line 188

def live_api_request?
  # if no access token, never use live mode
  return false if access_token.nil?

  # if block is specifically asking for it or inline mode is activated
  Tml.session.inline_mode? or Tml.session.block_option(:live)
end

#object_class(opts) ⇒ Object

get object class from options



343
344
345
346
# File 'lib/tml/api/client.rb', line 343

def object_class(opts)
  return unless opts[:class]
  opts[:class].is_a?(String) ? opts[:class].constantize : opts[:class]
end

#paginate(path, params = {}, opts = {}) ⇒ Object

paginates through API results



230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/tml/api/client.rb', line 230

def paginate(path, params = {}, opts = {})
  data = get(path, params, opts.merge({'raw' => true}))

  while data
    if data['results'].is_a?(Array)
      data['results'].each do |result|
        yield(result)
      end
    else
      yield(data['results'])
    end

    if data['pagination'] and data['pagination']['links']['next']
      data = get(data['pagination']['links']['next'], {}, opts.merge({'raw' => true}))
    else
      data = nil
    end
  end
end

#post(path, params = {}, opts = {}) ⇒ Object

post to API



53
54
55
# File 'lib/tml/api/client.rb', line 53

def post(path, params = {}, opts = {})
  api(path, params, opts.merge(:method => :post))
end

#prepare_api_path(path) ⇒ Object

prepares API path



251
252
253
254
255
256
257
258
259
260
# File 'lib/tml/api/client.rb', line 251

def prepare_api_path(path)
  return path if path.match(/^https?:\/\//)
  clean_path = trim_prepending_slash(path)

  if clean_path.index('v1') == 0 || clean_path.index('v2') == 0
    "/#{clean_path}"
  else
    "#{API_PATH}/#{clean_path}"
  end
end

#prepare_request(request, path, params, opts = {}) ⇒ Object

prepares request



267
268
269
270
271
272
273
274
275
276
277
278
# File 'lib/tml/api/client.rb', line 267

def prepare_request(request, path, params, opts = {})
  request.options.timeout = Tml.config.api_client[:timeout]
  request.options.open_timeout = Tml.config.api_client[:open_timeout]
  request.headers['User-Agent'] = "tml-ruby v#{Tml::VERSION} (Faraday v#{Faraday::VERSION})"
  request.headers['Accept'] = 'application/json'

  unless opts[:uncompressed]
    request.headers['Accept-Encoding'] = 'gzip, deflate'
  end

  request.url(path, params)
end

#process_response(data, opts) ⇒ Object

process API response



349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
# File 'lib/tml/api/client.rb', line 349

def process_response(data, opts)
  return nil if data.nil?
  return data if opts[:raw] or opts[:raw_json]

  if data.is_a?(Hash) and data['results']
    #Tml.logger.debug("received #{data['results'].size} result(s)")
    return data['results'] unless object_class(opts)
    objects = []
    data['results'].each do |data|
      objects << object_class(opts).new(data.merge(opts[:attributes] || {}))
    end
    return objects
  end

  return data unless object_class(opts)
  object_class(opts).new(data.merge(opts[:attributes] || {}))
end

#put(path, params = {}, opts = {}) ⇒ Object

put to API



58
59
60
# File 'lib/tml/api/client.rb', line 58

def put(path, params = {}, opts = {})
  api(path, params, opts.merge(:method => :put))
end

#results(path, params = {}, opts = {}) ⇒ Object

get results from API



43
44
45
# File 'lib/tml/api/client.rb', line 43

def results(path, params = {}, opts = {})
  get(path, params, opts)['results']
end

#to_query(hash) ⇒ Object

convert params to query



368
369
370
371
372
373
374
# File 'lib/tml/api/client.rb', line 368

def to_query(hash)
  query = []
  hash.each do |key, value|
    query << "#{key.to_s}=#{value.to_s}"
  end
  query.join('&')
end

#trace_api_call(path, params, opts = {}) ⇒ Object

trace api call for logging



377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
# File 'lib/tml/api/client.rb', line 377

def trace_api_call(path, params, opts = {})
  if Tml.config.logger[:secure]
    [:access_token].each do |param|
      params = params.merge(param => "##filtered##") if params[param]
    end
  end

  path = "#{path[0] == '/' ? '' : '/'}#{path}"

  if opts[:method] == :post
    Tml.logger.debug("post: #{opts[:host]}#{path}")
  else
    if params.any?
      Tml.logger.debug("get: #{opts[:host]}#{path}?#{to_query(params)}")
    else
      Tml.logger.debug("get: #{opts[:host]}#{path}")
    end
  end

  t0 = Time.now
  if block_given?
    ret = yield
  end
  t1 = Time.now

  Tml.logger.debug("call took #{t1 - t0} seconds")
  ret
end

#trim_prepending_slash(str) ⇒ Object



262
263
264
# File 'lib/tml/api/client.rb', line 262

def trim_prepending_slash(str)
  str.index('/') == 0 ? str[1..-1] : str
end

#verify_cache_versionObject

verify cache version



99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/tml/api/client.rb', line 99

def verify_cache_version
  return if Tml.cache.version.defined?

  current_version = Tml.cache.version.fetch

  if current_version == 'undefined'
    Tml.cache.version.store(get_cache_version)
  else
    Tml.cache.version.set(current_version)
  end

  Tml.logger.info("Cache Version: #{Tml.cache.version}")
end