1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
require 'rack/body_proxy'
# A middleware that ensures the RequestStore stays around until
# the last part of the body is rendered. This is useful when
# using streaming.
#
# Uses Rack::BodyProxy, adapted from Rack::Lock's usage of the
# same pattern.
module RequestStore
class Middleware
def initialize(app)
@app = app
end
def call(env)
RequestStore.begin!
status, headers, body = @app.call(env)
body = Rack::BodyProxy.new(body) do
RequestStore.end!
RequestStore.clear!
end
returned = true
[status, headers, body]
ensure
unless returned
RequestStore.end!
RequestStore.clear!
end
end
end
end
|