Class: ApiAdaptor::Base

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/api_adaptor/base.rb

Defined Under Namespace

Classes: InvalidAPIURL

Class Attribute Summary collapse

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(endpoint_url, options = {}) ⇒ Base

Returns a new instance of Base.

Raises:



45
46
47
48
49
50
51
52
53
# File 'lib/api_adaptor/base.rb', line 45

def initialize(endpoint_url, options = {})
  options[:endpoint_url] = endpoint_url
  raise InvalidAPIURL unless endpoint_url =~ URI::RFC3986_Parser::RFC3986_URI

  base_options = { logger: ApiAdaptor::Base.logger }
  default_options = base_options.merge(ApiAdaptor::Base.default_options || {})
  @options = default_options.merge(options)
  self.endpoint = options[:endpoint_url]
end

Class Attribute Details

.default_optionsObject

Returns the value of attribute default_options.



38
39
40
# File 'lib/api_adaptor/base.rb', line 38

def default_options
  @default_options
end

.loggerObject



41
42
43
# File 'lib/api_adaptor/base.rb', line 41

def self.logger
  @logger ||= ApiAdaptor::NullLogger.new
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



34
35
36
# File 'lib/api_adaptor/base.rb', line 34

def options
  @options
end

Instance Method Details

#clientObject



15
16
17
# File 'lib/api_adaptor/base.rb', line 15

def client
  @client ||= create_client
end

#create_clientObject



19
20
21
# File 'lib/api_adaptor/base.rb', line 19

def create_client
  ApiAdaptor::JsonClient.new(options)
end

#get_list(url) ⇒ Object



59
60
61
62
63
# File 'lib/api_adaptor/base.rb', line 59

def get_list(url)
  get_json(url) do |r|
    ApiAdaptor::ListResponse.new(r, self)
  end
end

#url_for_slug(slug, options = {}) ⇒ Object



55
56
57
# File 'lib/api_adaptor/base.rb', line 55

def url_for_slug(slug, options = {})
  "#{base_url}/#{slug}.json#{query_string(options)}"
end