aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2012-12-22 16:06:30 +0100
committerGibheer <gibheer@gmail.com>2012-12-22 16:06:30 +0100
commit5057a8df4561b3212f2f349c022ee9361a83e1c6 (patch)
tree49a7635907f9c9cee11dd23aa3d81627c54811e3
parentb20c0c527c89ec08548849163388d43207609fcd (diff)
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.
-rw-r--r--lib/zero/router.rb12
1 files changed, 8 insertions, 4 deletions
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!']]