Class: Lamby::Handler
- Inherits:
-
Object
- Object
- Lamby::Handler
- Defined in:
- lib/lamby/handler.rb
Class Method Summary collapse
Instance Method Summary collapse
- #base64_encodeable?(hdrs = @headers) ⇒ Boolean
- #body ⇒ Object
- #body64 ⇒ Object
- #call ⇒ Object
- #headers ⇒ Object
-
#initialize(app, event, context, options = {}) ⇒ Handler
constructor
A new instance of Handler.
- #response ⇒ Object
- #set_cookies ⇒ Object
- #status ⇒ Object
Constructor Details
#initialize(app, event, context, options = {}) ⇒ Handler
Returns a new instance of Handler.
13 14 15 16 17 18 |
# File 'lib/lamby/handler.rb', line 13 def initialize(app, event, context, = {}) @app = app @event = event @context = context @options = end |
Class Method Details
.call(app, event, context, options = {}) ⇒ Object
6 7 8 9 |
# File 'lib/lamby/handler.rb', line 6 def call(app, event, context, = {}) Lamby::ColdStartMetrics.instrument! if Lamby.config.cold_start_metrics? new(app, event, context, ).call.response end |
Instance Method Details
#base64_encodeable?(hdrs = @headers) ⇒ Boolean
51 52 53 54 55 56 57 |
# File 'lib/lamby/handler.rb', line 51 def base64_encodeable?(hdrs = @headers) hdrs && ( hdrs['Content-Transfer-Encoding'] == 'binary' || content_encoding_compressed?(hdrs) || hdrs['X-Lamby-Base64'] == '1' ) end |
#body ⇒ Object
39 40 41 42 43 44 |
# File 'lib/lamby/handler.rb', line 39 def body @rbody ||= ''.tap do |rbody| @body.each { |part| rbody << part if part } @body.close if @body.respond_to? :close end end |
#body64 ⇒ Object
59 60 61 |
# File 'lib/lamby/handler.rb', line 59 def body64 Base64.strict_encode64(body) end |
#call ⇒ Object
46 47 48 49 |
# File 'lib/lamby/handler.rb', line 46 def call @response ||= call_app self end |
#headers ⇒ Object
28 29 30 |
# File 'lib/lamby/handler.rb', line 28 def headers @headers end |
#response ⇒ Object
20 21 22 |
# File 'lib/lamby/handler.rb', line 20 def response @response end |
#set_cookies ⇒ Object
32 33 34 35 36 37 |
# File 'lib/lamby/handler.rb', line 32 def return @set_cookies if defined?(@set_cookies) @set_cookies = if @headers && @headers['Set-Cookie'] @headers.delete('Set-Cookie').split("\n") end end |
#status ⇒ Object
24 25 26 |
# File 'lib/lamby/handler.rb', line 24 def status @status end |