Class: Restify::Processors::Base

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

Direct Known Subclasses

Json

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context, response) ⇒ Base

Returns a new instance of Base.



14
15
16
17
# File 'lib/restify/processors/base.rb', line 14

def initialize(context, response)
  @context  = context
  @response = response
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



9
10
11
# File 'lib/restify/processors/base.rb', line 9

def context
  @context
end

#responseObject (readonly)

Returns the value of attribute response.



12
13
14
# File 'lib/restify/processors/base.rb', line 12

def response
  @response
end

Class Method Details

.accept?(response) ⇒ Boolean

Returns:

  • (Boolean)


64
65
66
# File 'lib/restify/processors/base.rb', line 64

def accept?(response)
  false
end

Instance Method Details

#bodyObject



44
# File 'lib/restify/processors/base.rb', line 44

delegate body: :@response

#loadObject

Return resource or data.

Should be overridden in subclass.



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

def load

end

#resourceObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/restify/processors/base.rb', line 19

def resource
  @resource ||= begin
    resource = load

    unless resource.is_a? Restify::Resource
      resource = Resource.new context, response: response, data: resource
    end

    resource._restify_response = response
    merge_relations! resource._restify_relations

    resource
  end
end