Class: Binking::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/binking/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_token: Binking.config.api_token, host: Binking.config.host, sandbox: Binking.config.sandbox, cache: Binking.config.cache, cache_expires_in: Binking.config.cache_expires_in, logger: Binking.config.logger, options: Binking.config.request_options) ⇒ Client

Returns a new instance of Client.



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/binking/client.rb', line 9

def initialize(api_token: Binking.config.api_token,
               host: Binking.config.host,
               sandbox: Binking.config.sandbox,
               cache: Binking.config.cache,
               cache_expires_in: Binking.config.cache_expires_in,
               logger: Binking.config.logger,
               options: Binking.config.request_options)
  @api_token = api_token
  @host = host
  @sandbox = sandbox
  @cache = cache
  @cache_expires_in = cache_expires_in
  @logger = logger
  @options = options
end

Instance Attribute Details

#api_tokenObject

Returns the value of attribute api_token.



7
8
9
# File 'lib/binking/client.rb', line 7

def api_token
  @api_token
end

#cacheObject

Returns the value of attribute cache.



7
8
9
# File 'lib/binking/client.rb', line 7

def cache
  @cache
end

#cache_expires_inObject

Returns the value of attribute cache_expires_in.



7
8
9
# File 'lib/binking/client.rb', line 7

def cache_expires_in
  @cache_expires_in
end

#hostObject

Returns the value of attribute host.



7
8
9
# File 'lib/binking/client.rb', line 7

def host
  @host
end

#loggerObject

Returns the value of attribute logger.



7
8
9
# File 'lib/binking/client.rb', line 7

def logger
  @logger
end

#optionsObject

Returns the value of attribute options.



7
8
9
# File 'lib/binking/client.rb', line 7

def options
  @options
end

#sandboxObject

Returns the value of attribute sandbox.



7
8
9
# File 'lib/binking/client.rb', line 7

def sandbox
  @sandbox
end

Instance Method Details

#get(path, params = nil) ⇒ Object



25
26
27
28
29
30
# File 'lib/binking/client.rb', line 25

def get(path, params = nil)
  connection.get(path.gsub(%r{^/}, ""), params) do |req|
    req.params["apiKey"] = api_token if api_token
    req.params["sandbox"] = 1 if sandbox
  end
end