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.



3597
3598
3599
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3597

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.



3602
3603
3604
3605
3606
3607
3608
3609
3610
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3602

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.



3613
3614
3615
3616
3617
3618
3619
3620
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3613

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