Class: Roda::RodaPlugins::Middleware::Forwarder
- Inherits:
-
Object
- Object
- Roda::RodaPlugins::Middleware::Forwarder
- Defined in:
- lib/roda/plugins/middleware.rb
Overview
Forward instances are what is actually used as middleware.
Instance Method Summary collapse
-
#call(env) ⇒ Object
When calling the middleware, first call the current middleware.
-
#initialize(mid, app) ⇒ Forwarder
constructor
Store the current middleware and the next middleware to call.
Constructor Details
#initialize(mid, app) ⇒ Forwarder
Store the current middleware and the next middleware to call.
40 41 42 43 |
# File 'lib/roda/plugins/middleware.rb', line 40 def initialize(mid, app) @mid = mid.app @app = app end |
Instance Method Details
#call(env) ⇒ Object
When calling the middleware, first call the current middleware. If this returns a result, return that result directly. Otherwise, pass handling of the request to the next middleware.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/roda/plugins/middleware.rb', line 48 def call(env) res = nil call_next = catch(:next) do res = @mid.call(env) false end if call_next @app.call(env) else res end end |