Sha256: 5af63bde63f5d0381babff6c1b3badedecb3a9f4b000224fe388b2c2c6d50bf1

Contents?: true

Size: 1.46 KB

Versions: 4

Compression:

Stored size: 1.46 KB

Contents

require 'grape/middleware/base'

module Grape
  module Middleware
    module Versioner
      # This middleware sets various version related rack environment variables
      # based on the request parameters and removes that parameter from the
      # request parameters for subsequent middleware and API.
      # If the version substring does not match any potential initialized
      # versions, a 404 error is thrown.
      # If the version substring is not passed the version (highest mounted)
      # version will be used.
      #
      # Example: For a uri path
      #   /resource?apiver=v1
      #
      # The following rack env variables are set and path is rewritten to
      # '/resource':
      #
      #   env['api.version'] => 'v1'
      class Param < Base
        def default_options
          {
            parameter: "apiver"
          }
        end

        def before
          paramkey = options[:parameter]
          potential_version = Rack::Utils.parse_nested_query(env['QUERY_STRING'])[paramkey]
          unless potential_version.nil?
            if options[:versions] && !options[:versions].find { |v| v.to_s == potential_version }
              throw :error, status: 404, message: "404 API Version Not Found", headers: { 'X-Cascade' => 'pass' }
            end
            env['api.version'] = potential_version
            env['rack.request.query_hash'].delete(paramkey) if env.key? 'rack.request.query_hash'
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
grape-security-0.8.0 lib/grape/middleware/versioner/param.rb
grape-0.9.0 lib/grape/middleware/versioner/param.rb
grape-0.8.0 lib/grape/middleware/versioner/param.rb
grape-0.7.0 lib/grape/middleware/versioner/param.rb