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.



3889
3890
3891
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3889

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.



3894
3895
3896
3897
3898
3899
3900
3901
3902
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3894

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.



3905
3906
3907
3908
3909
3910
3911
3912
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 3905

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