Class: Grape::Middleware::Versioner::Param

Inherits:
Base
  • Object
show all
Defined in:
lib/grape/middleware/versioner/param.rb

Overview

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'

Constant Summary

Constants inherited from Base

Base::TEXT_HTML

Instance Attribute Summary

Attributes inherited from Base

#app, #env, #options

Instance Method Summary collapse

Methods inherited from Base

#after, #call, #call!, #content_type, #content_type_for, #content_types, #initialize, #mime_types, #response

Methods included from DSL::Headers

#header

Methods included from Helpers

#context

Constructor Details

This class inherits a constructor from Grape::Middleware::Base

Instance Method Details

#beforeObject



32
33
34
35
36
37
38
39
# File 'lib/grape/middleware/versioner/param.rb', line 32

def before
  potential_version = Rack::Utils.parse_nested_query(env[Grape::Http::Headers::QUERY_STRING])[paramkey]
  return if potential_version.nil?

  throw :error, status: 404, message: '404 API Version Not Found', headers: { Grape::Http::Headers::X_CASCADE => 'pass' } if options[:versions] && !options[:versions].find { |v| v.to_s == potential_version }
  env[Grape::Env::API_VERSION] = potential_version
  env[Grape::Env::RACK_REQUEST_QUERY_HASH].delete(paramkey) if env.key? Grape::Env::RACK_REQUEST_QUERY_HASH
end

#default_optionsObject



24
25
26
27
28
29
30
# File 'lib/grape/middleware/versioner/param.rb', line 24

def default_options
  {
    version_options: {
      parameter: 'apiver'
    }
  }
end