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



169
170
171
# File 'lib/tml/api/client.rb', line 169

def access_token
  application.token
end

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

checks mode and cache, and fetches data



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/tml/api/client.rb', line 192

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)


183
184
185
186
187
188
189
# File 'lib/tml/api/client.rb', line 183

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



114
115
116
117
118
119
# File 'lib/tml/api/client.rb', line 114

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

Raises:



253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
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
# File 'lib/tml/api/client.rb', line 253

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

  path = prepare_api_path(path)

  @compressed = false
  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|
          @compressed = true
          prepare_request(request, path, params)
        end
      end
    rescue Exception => ex
      Tml.logger.error("Failed to execute request: #{ex.message[0..255]}")
      error = ex
      nil
    end
  end
  raise Tml::Exception.new("Error: #{error}") if error

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

  if @compressed and (not 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 Exception => 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_from_cdn(key, params = {}, opts = {}) ⇒ Object

get from the CDN



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
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
# File 'lib/tml/api/client.rb', line 122

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

  response = nil
  cdn_path = "/#{application.key}"

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

  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)
      end
    rescue Exception => 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 Exception => 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)


174
175
176
177
178
179
180
# File 'lib/tml/api/client.rb', line 174

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



312
313
314
315
# File 'lib/tml/api/client.rb', line 312

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



216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# File 'lib/tml/api/client.rb', line 216

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



237
238
239
240
# File 'lib/tml/api/client.rb', line 237

def prepare_api_path(path)
  return path if path.match(/^https?:\/\//)
  "#{API_PATH}#{path[0] == '/' ? '' : '/'}#{path}"
end

#prepare_request(request, path, params) ⇒ Object

prepares request



243
244
245
246
247
248
249
250
# File 'lib/tml/api/client.rb', line 243

def prepare_request(request, path, params)
  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'
  request.headers['Accept-Encoding']  = 'gzip, deflate'
  request.url(path, params)
end

#process_response(data, opts) ⇒ Object

process API response



318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# File 'lib/tml/api/client.rb', line 318

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



337
338
339
340
341
342
343
# File 'lib/tml/api/client.rb', line 337

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



346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
# File 'lib/tml/api/client.rb', line 346

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

#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