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



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

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



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

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)


73
74
75
# File 'lib/protocol/http/response.rb', line 73

def bad_request?
	@status == 400
end

#continue?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/protocol/http/response.rb', line 49

def continue?
	@status == 100
end

#failure?Boolean

Returns:

  • (Boolean)


69
70
71
# File 'lib/protocol/http/response.rb', line 69

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

#hijack?Boolean

Returns:

  • (Boolean)


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

def hijack?
	false
end

#partial?Boolean

Returns:

  • (Boolean)


57
58
59
# File 'lib/protocol/http/response.rb', line 57

def partial?
	@status == 206
end

#preserve_method?Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/protocol/http/response.rb', line 65

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

#redirection?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/protocol/http/response.rb', line 61

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

#server_failure?Boolean

Returns:

  • (Boolean)


77
78
79
# File 'lib/protocol/http/response.rb', line 77

def server_failure?
	@status == 500
end

#success?Boolean

Returns:

  • (Boolean)


53
54
55
# File 'lib/protocol/http/response.rb', line 53

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

#to_aryObject



95
96
97
# File 'lib/protocol/http/response.rb', line 95

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

#to_sObject



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

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