File: middleware.rb

package info (click to toggle)
ruby-request-store 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 136 kB
  • sloc: ruby: 257; makefile: 3
file content (36 lines) | stat: -rw-r--r-- 750 bytes parent folder | download
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