Class: Protocol::HTTP::Response

Inherits:
Object
  • Object
show all
Includes:
Body::Reader
Defined in:
lib/protocol/http/response.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Body::Reader

#body?, #close, #each, #finish, #read, #save

Constructor Details

#initialize(version = nil, status = 200, headers = [], body = nil, protocol = nil) ⇒ Response

Returns a new instance of Response.



31
32
33
34
35
36
37
# File 'lib/protocol/http/response.rb', line 31

def initialize(version = nil, status = 200, headers = [], body = nil, protocol = nil)
  @version = version
  @status = status
  @headers = headers
  @body = body
  @protocol = protocol
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



42
43
44
# File 'lib/protocol/http/response.rb', line 42

def body
  @body
end

#headersObject

Returns the value of attribute headers.



41
42
43
# File 'lib/protocol/http/response.rb', line 41

def headers
  @headers
end

#protocolObject

Returns the value of attribute protocol.



43
44
45
# File 'lib/protocol/http/response.rb', line 43

def protocol
  @protocol
end

#statusObject

Returns the value of attribute status.



40
41
42
# File 'lib/protocol/http/response.rb', line 40

def status
  @status
end

#versionObject

Returns the value of attribute version.



39
40
41
# File 'lib/protocol/http/response.rb', line 39

def version
  @version
end

Class Method Details

.[](status, headers = [], body = nil, protocol = nil) ⇒ Object



91
92
93
94
95
# File 'lib/protocol/http/response.rb', line 91

def self.[](status, headers = [], body = nil, protocol = nil)
  body = Body::Buffered.wrap(body)
  
  self.new(nil, status, headers, body, protocol)
end

.for_exception(exception) ⇒ Object



97
98
99
# File 'lib/protocol/http/response.rb', line 97

def self.for_exception(exception)
  Response[500, Headers['content-type' => 'text/plain'], ["#{exception.class}: #{exception.message}"]]
end

Instance Method Details

#bad_request?Boolean

Returns:

  • (Boolean)


83
84
85
# File 'lib/protocol/http/response.rb', line 83

def bad_request?
  @status == 400
end

#continue?Boolean

Returns:

  • (Boolean)


55
56
57
# File 'lib/protocol/http/response.rb', line 55

def continue?
  @status == 100
end

#failure?Boolean

Returns:

  • (Boolean)


79
80
81
# File 'lib/protocol/http/response.rb', line 79

def failure?
  @status and @status >= 400 && @status < 600
end

#hijack?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/protocol/http/response.rb', line 51

def hijack?
  false
end

#not_modified?Boolean

Returns:

  • (Boolean)


71
72
73
# File 'lib/protocol/http/response.rb', line 71

def not_modified?
  @status == 304
end

#partial?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/protocol/http/response.rb', line 63

def partial?
  @status == 206
end

#preserve_method?Boolean

Returns:

  • (Boolean)


75
76
77
# File 'lib/protocol/http/response.rb', line 75

def preserve_method?
  @status == 307 || @status == 308
end

#redirection?Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/protocol/http/response.rb', line 67

def redirection?
  @status and @status >= 300 && @status < 400
end

#server_failure?Boolean

Returns:

  • (Boolean)


87
88
89
# File 'lib/protocol/http/response.rb', line 87

def server_failure?
  @status == 500
end

#success?Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/protocol/http/response.rb', line 59

def success?
  @status and @status >= 200 && @status < 300
end

#to_aryObject



105
106
107
# File 'lib/protocol/http/response.rb', line 105

def to_ary
  return @status, @headers, @body
end

#to_sObject



101
102
103
# File 'lib/protocol/http/response.rb', line 101

def to_s
  "#{@status} #{@version}"
end

#trailersObject



45
46
47
48
49
# File 'lib/protocol/http/response.rb', line 45

def trailers
  if @headers.respond_to?(:trailers)
    @headers.trailers
  end
end