From 5057a8df4561b3212f2f349c022ee9361a83e1c6 Mon Sep 17 00:00:00 2001 From: Gibheer Date: Sat, 22 Dec 2012 16:06:30 +0100 Subject: kick out Zero::Request from router To make the router more loose, I replaced the router with the plain environment. The custom parameters are stored in the same key, so can be used by the request later. --- lib/zero/router.rb | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/zero/router.rb b/lib/zero/router.rb index 5f77624..8d1273f 100644 --- a/lib/zero/router.rb +++ b/lib/zero/router.rb @@ -21,6 +21,10 @@ module Zero VARIABLE_MATCH = %r{:(\w+)[^/]?} # the replacement string to make it an regex VARIABLE_REGEX = '(?<\1>.+?)' + # environment key to store custom parameters + ENV_KEY_CUSTOM = 'zero.params.custom' + # environment key to the path info + ENV_KEY_PATH_INFO = 'PATH_INFO' # create a new router instance # @@ -47,14 +51,14 @@ module Zero # @param env [Hash] a rack environment # @return [Array] a rack compatible response def call(env) - request = Zero::Request.new(env) + env[ENV_KEY_CUSTOM] ||= {} @routes.each do |route, target| - match = route.match(request.path) + match = route.match(env[ENV_KEY_PATH_INFO]) if match match.names.each_index do |i| - request.params[match.names[i]] = match.captures[i] + env[ENV_KEY_CUSTOM][match.names[i]] = match.captures[i] end - return target.call(request.env) + return target.call(env) end end [404, {'Content-Type' => 'text/html'}, ['Not found!']] -- cgit v1.2.3-70-g09d2