require that all blocks have arity of 2

This commit is contained in:
Aaron Patterson 2011-10-31 16:26:11 -04:00
parent 3178cc9a80
commit 4589b2419b
2 changed files with 11 additions and 6 deletions

@ -43,13 +43,19 @@ def redirect(*args, &block)
path = args.shift
path_proc = if path.is_a?(String)
proc { |params| (params.empty? || !path.match(/%\{\w*\}/)) ? path : (path % params) }
proc { |params, request| (params.empty? || !path.match(/%\{\w*\}/)) ? path : (path % params) }
elsif options.any?
options_proc(options)
elsif path.respond_to?(:call)
proc { |params, request| path.call(params, request) }
elsif block
block
if block.arity < 2
msg = "redirect blocks with arity of #{block.arity} are deprecated. Your block must take 2 parameters: the environment, and a request object"
ActiveSupport::Deprecation.warn msg
lambda { |params, _| block.call(params) }
else
block
end
else
raise ArgumentError, "redirection argument not supported"
end
@ -85,8 +91,7 @@ def redirection_proc(status, path_proc)
lambda do |env|
req = Request.new(env)
params = [req.symbolized_path_parameters]
params << req if path_proc.arity > 1
params = [req.symbolized_path_parameters, req]
uri = URI.parse(path_proc.call(*params))
uri.scheme ||= req.scheme
@ -107,4 +112,4 @@ def redirection_proc(status, path_proc)
end
end
end
end

@ -79,7 +79,7 @@ def self.call(params, request)
match 'sign_in' => "sessions#new"
match 'account/modulo/:name', :to => redirect("/%{name}s")
match 'account/proc/:name', :to => redirect {|params| "/#{params[:name].pluralize}" }
match 'account/proc/:name', :to => redirect {|params, req| "/#{params[:name].pluralize}" }
match 'account/proc_req' => redirect {|params, req| "/#{req.method}" }
match 'account/google' => redirect('http://www.google.com/', :status => 302)