Class: Ecoportal::API::Common::WrappedResponse

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/ecoportal/api/common/wrapped_response.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response, klass) ⇒ WrappedResponse

Returns a new instance of WrappedResponse.



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

def initialize(response, klass)
  @response = response
  @klass    = klass

  return unless @response.success?

  @result =
    if @response.body.is_a?(Array)
      @response.body.map do |doc|
        @klass.new(doc)
      end
    else
      @klass.new(@response.body)
    end
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



7
8
9
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 7

def response
  @response
end

#resultObject (readonly)

Returns the value of attribute result.



7
8
9
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 7

def result
  @result
end

Instance Method Details

#bodyObject



25
26
27
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 25

def body
  response.body.to_s
end

#each(&block) ⇒ Object



29
30
31
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 29

def each(&block)
  [*result].each(&block)
end


41
42
43
44
45
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 41

def print_pretty
  return each(&:print_pretty) if success?

  "Request failed."
end

#statusObject



33
34
35
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 33

def status
  response.status.code
end

#success?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/ecoportal/api/common/wrapped_response.rb', line 37

def success?
  response.success?
end