Class: Io::Flow::V0::Clients::Timezones

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Timezones

Returns a new instance of Timezones.



4338
4339
4340
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 4338

def initialize(client)
  @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client)
end

Instance Method Details

#get_geolocation_and_timezones(incoming = {}) ⇒ Object

Provides timezone based on address or geolocated IP.



4343
4344
4345
4346
4347
4348
4349
4350
4351
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 4343

def get_geolocation_and_timezones(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  query = {
    :address => (x = opts.delete(:address); x.nil? ? nil : HttpClient::Preconditions.assert_class('address', x, String)),
    :ip => (x = opts.delete(:ip); x.nil? ? nil : HttpClient::Preconditions.assert_class('ip', x, String))
  }.delete_if { |k, v| v.nil? }
  r = @client.request("/geolocation/timezones").with_query(query).get
  r.map { |x| ::Io::Flow::V0::Models::Timezone.new(x) }
end

#get_reference_and_timezones(incoming = {}) ⇒ Object

Returns a list of timezones.



4354
4355
4356
4357
4358
4359
4360
4361
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 4354

def get_reference_and_timezones(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  query = {
    :q => (x = opts.delete(:q); x.nil? ? nil : HttpClient::Preconditions.assert_class('q', x, String))
  }.delete_if { |k, v| v.nil? }
  r = @client.request("/reference/timezones").with_query(query).get
  r.map { |x| ::Io::Flow::V0::Models::Timezone.new(x) }
end