Sha256: 2fd5352bfce00fe3782947155b8df744fd05acf0ebc1c0efbdd41c2c9cb68467

Contents?: true

Size: 1.19 KB

Versions: 12

Compression:

Stored size: 1.19 KB

Contents

require 'rack/body_proxy'
require 'rack/utils'

module ActiveSupport
  module Cache
    module Strategy
      module LocalCache

        #--
        # This class wraps up local storage for middlewares. Only the middleware method should
        # construct them.
        class Middleware # :nodoc:
          attr_reader :name, :local_cache_key

          def initialize(name, local_cache_key)
            @name             = name
            @local_cache_key = local_cache_key
            @app              = nil
          end

          def new(app)
            @app = app
            self
          end

          def call(env)
            LocalCacheRegistry.set_cache_for(local_cache_key, LocalStore.new)
            response = @app.call(env)
            response[2] = ::Rack::BodyProxy.new(response[2]) do
              LocalCacheRegistry.set_cache_for(local_cache_key, nil)
            end
            cleanup_on_body_close = true
            response
          rescue Rack::Utils::InvalidParameterError
            [400, {}, []]
          ensure
            LocalCacheRegistry.set_cache_for(local_cache_key, nil) unless
              cleanup_on_body_close
          end
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.7.2 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.7.1 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.7 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.6 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.6.rc1 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.5 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.5.rc2 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.5.rc1 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.4 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.4.rc1 lib/active_support/cache/strategy/local_cache_middleware.rb
activesupport-5.0.3 lib/active_support/cache/strategy/local_cache_middleware.rb