Class: Angelo::Responder
- Inherits:
-
Object
show all
- Includes:
- Celluloid::Logger
- Defined in:
- lib/angelo/responder.rb,
lib/angelo/responder/websocket.rb,
lib/angelo/responder/eventsource.rb
Defined Under Namespace
Classes: Eventsource, Websocket
Class Attribute Summary collapse
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(&block) ⇒ Responder
Returns a new instance of Responder.
37
38
39
|
# File 'lib/angelo/responder.rb', line 37
def initialize &block
@response_handler = Base.compile! :request_handler, &block
end
|
Class Attribute Details
22
23
24
25
|
# File 'lib/angelo/responder.rb', line 22
def
@default_headers ||= DEFAULT_RESPONSE_HEADERS
@default_headers
end
|
Instance Attribute Details
#base=(value) ⇒ Object
35
36
37
|
# File 'lib/angelo/responder.rb', line 35
def base=(value)
@base = value
end
|
#connection ⇒ Object
Returns the value of attribute connection.
33
34
35
|
# File 'lib/angelo/responder.rb', line 33
def connection
@connection
end
|
#request ⇒ Object
Returns the value of attribute request.
34
35
36
|
# File 'lib/angelo/responder.rb', line 34
def request
@request
end
|
Class Method Details
.content_type(type) ⇒ Object
.symhash ⇒ Object
27
28
29
|
# File 'lib/angelo/responder.rb', line 27
def symhash
Hash.new {|hash,key| hash[key.to_s] if Symbol === key }
end
|
Instance Method Details
#content_type(type) ⇒ Object
#error_message(_error) ⇒ Object
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# File 'lib/angelo/responder.rb', line 87
def error_message _error
case
when respond_with?(:json)
{ error: _error.message }.to_json
else
case _error.message
when Hash
_error.message.to_s
else
_error.message
end
end
end
|
#handle_error(_error, type = :internal_server_error, report = @base.report_errors?) ⇒ Object
76
77
78
79
80
81
82
83
84
85
|
# File 'lib/angelo/responder.rb', line 76
def handle_error _error, type = :internal_server_error, report = @base.report_errors?
err_msg = error_message _error
Angelo.log @connection, @request, nil, type, err_msg.size
@connection.respond type, , err_msg
@connection.close
if report
error "#{_error.class} - #{_error.message}"
::STDERR.puts _error.backtrace
end
end
|
#handle_request ⇒ Object
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# File 'lib/angelo/responder.rb', line 49
def handle_request
if @response_handler
@base.filter :before
@body = catch(:halt) { @response_handler.bind(@base).call || EMPTY_STRING }
case @body
when HALT_STRUCT
@base.filter :after if @body.body != :sse
else
@base.filter :after
end
respond
else
raise NotImplementedError
end
rescue JSON::ParserError => jpe
handle_error jpe, :bad_request
rescue FormEncodingError => fee
handle_error fee, :bad_request
rescue RequestError => re
handle_error re, re.type
rescue => e
handle_error e
end
|
101
102
103
104
105
|
# File 'lib/angelo/responder.rb', line 101
def hs = nil
@headers ||= self.class..dup
@headers.merge! hs if hs
@headers
end
|
#redirect(url) ⇒ Object
162
163
164
|
# File 'lib/angelo/responder.rb', line 162
def redirect url
@redirect = url
end
|
#respond ⇒ Object
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# File 'lib/angelo/responder.rb', line 129
def respond
status = nil
case @body
when HALT_STRUCT
status = @body.status
@body = @body.body
@body = nil if @body == :sse
if Hash === @body
@body = {error: @body} if status != :ok or status < 200 && status >= 300
@body = @body.to_json if respond_with? :json
end
when String
JSON.parse @body if respond_with? :json
when Hash
raise 'html response requires String' if respond_with? :html
@body = @body.to_json if respond_with? :json
when NilClass
@body = EMPTY_STRING
end
status ||= @redirect.nil? ? :ok : :moved_permanently
LOCATION_HEADER_KEY => @redirect if @redirect
size = @body.nil? ? 0 : @body.size
Angelo.log @connection, @request, nil, status, size
@request.respond status, , @body
rescue => e
handle_error e, :internal_server_error
end
|
#respond_with?(type) ⇒ Boolean
120
121
122
123
124
125
126
127
|
# File 'lib/angelo/responder.rb', line 120
def respond_with? type
case [CONTENT_TYPE_HEADER_KEY]
when JSON_TYPE
type == :json
else
type == :html
end
end
|