1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

translate AST to a formatter before url generation

This commit is contained in:
Aaron Patterson 2014-05-20 13:12:59 -07:00
parent 53008447ec
commit e883db02bc
2 changed files with 72 additions and 1 deletions

View file

@ -76,7 +76,8 @@ module ActionDispatch
value.to_s == defaults[key].to_s && !required_parts.include?(key)
end
Visitors::Formatter.new(path_options).accept(path.spec)
format = Visitors::FormatBuilder.new.accept(path.spec)
format.evaluate path_options
end
def optimized_path

View file

@ -2,6 +2,52 @@
module ActionDispatch
module Journey # :nodoc:
class Format
ESCAPE_PATH = ->(value) { Router::Utils.escape_path(value) }
ESCAPE_SEGMENT = ->(value) { Router::Utils.escape_segment(value) }
class Parameter < Struct.new(:name, :escaper)
def escape(value); escaper.call value; end
end
def self.required_path(symbol)
Parameter.new symbol, ESCAPE_PATH
end
def self.required_segment(symbol)
Parameter.new symbol, ESCAPE_SEGMENT
end
def initialize(parts)
@parts = parts
@children = []
@parameters = []
parts.each_with_index do |object,i|
case object
when Journey::Format
@children << i
when Parameter
@parameters << i
end
end
end
def evaluate(hash)
parts = @parts.dup
@parameters.each do |index|
param = parts[index]
value = hash.fetch(param.name) { return ''.freeze }
parts[index] = param.escape value
end
@children.each { |index| parts[index] = parts[index].evaluate(hash) }
parts.join
end
end
module Visitors # :nodoc:
class Visitor # :nodoc:
DISPATCH_CACHE = {}
@ -45,6 +91,30 @@ module ActionDispatch
end
end
class FormatBuilder < Visitor # :nodoc:
def accept(node); Journey::Format.new(super); end
def terminal(node); [node.left]; end
def binary(node)
visit(node.left) + visit(node.right)
end
def visit_GROUP(n); [Journey::Format.new(unary(n))]; end
def visit_STAR(n)
[Journey::Format.required_path(n.left.to_sym)]
end
def visit_SYMBOL(n)
symbol = n.to_sym
if symbol == :controller
[Journey::Format.required_path(symbol)]
else
[Journey::Format.required_segment(symbol)]
end
end
end
# Loop through the requirements AST
class Each < Visitor # :nodoc:
attr_reader :block