1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionview/lib/action_view/template/resolver.rb

395 lines
12 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require "pathname"
2009-09-02 18:00:22 -04:00
require "active_support/core_ext/class"
2013-12-02 16:36:58 -05:00
require "active_support/core_ext/module/attribute_accessors"
require "action_view/template"
require "thread"
require "concurrent/map"
2009-04-14 20:22:51 -04:00
module ActionView
2010-06-20 16:26:31 -04:00
# = Action View Resolver
class Resolver
# Keeps all information about view path and builds virtual path.
2012-06-21 15:13:13 -04:00
class Path
attr_reader :name, :prefix, :partial, :virtual
alias_method :partial?, :partial
2011-05-09 04:42:54 -04:00
def self.build(name, prefix, partial)
virtual = +""
2011-05-09 04:42:54 -04:00
virtual << "#{prefix}/" unless prefix.empty?
virtual << (partial ? "_#{name}" : name)
new name, prefix, partial, virtual
end
2011-05-09 04:42:54 -04:00
def initialize(name, prefix, partial, virtual)
2012-06-21 15:13:13 -04:00
@name = name
@prefix = prefix
@partial = partial
@virtual = virtual
end
2012-06-21 15:13:13 -04:00
def to_str
@virtual
end
alias :to_s :to_str
end
# Threadsafe template cache
class Cache #:nodoc:
class SmallCache < Concurrent::Map
def initialize(options = {})
2016-08-06 13:36:34 -04:00
super(options.merge(initial_capacity: 2))
end
end
# preallocate all the default blocks for performance/memory consumption reasons
PARTIAL_BLOCK = lambda { |cache, partial| cache[partial] = SmallCache.new }
PREFIX_BLOCK = lambda { |cache, prefix| cache[prefix] = SmallCache.new(&PARTIAL_BLOCK) }
NAME_BLOCK = lambda { |cache, name| cache[name] = SmallCache.new(&PREFIX_BLOCK) }
KEY_BLOCK = lambda { |cache, key| cache[key] = SmallCache.new(&NAME_BLOCK) }
2013-04-12 10:35:02 -04:00
# usually a majority of template look ups return nothing, use this canonical preallocated array to save memory
NO_TEMPLATES = [].freeze
def initialize
@data = SmallCache.new(&KEY_BLOCK)
2015-07-15 17:32:45 -04:00
@query_cache = SmallCache.new
end
def inspect
"#<#{self.class.name}:0x#{(object_id << 1).to_s(16)} keys=#{@data.size} queries=#{@query_cache.size}>"
end
# Cache the templates returned by the block
def cache(key, name, prefix, partial, locals)
@data[key][name][prefix][partial][locals] ||= canonical_no_templates(yield)
end
2015-07-15 17:32:45 -04:00
def cache_query(query) # :nodoc:
@query_cache[query] ||= canonical_no_templates(yield)
2015-07-15 17:32:45 -04:00
end
def clear
@data.clear
2015-07-15 17:32:45 -04:00
@query_cache.clear
end
# Get the cache size. Do not call this
# method. This method is not guaranteed to be here ever.
def size # :nodoc:
size = 0
@data.each_value do |v1|
v1.each_value do |v2|
v2.each_value do |v3|
v3.each_value do |v4|
size += v4.size
end
end
end
end
size + @query_cache.size
end
private
def canonical_no_templates(templates)
templates.empty? ? NO_TEMPLATES : templates
end
end
cattr_accessor :caching, default: true
class << self
alias :caching? :caching
end
2010-03-07 06:49:27 -05:00
def initialize
@cache = Cache.new
end
2010-03-08 17:13:24 -05:00
def clear_cache
@cache.clear
2010-03-08 17:13:24 -05:00
end
# Normalizes the arguments and passes it on to find_templates.
def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = [])
locals = locals.map(&:to_s).sort!.freeze
cached(key, [name, prefix, partial], details, locals) do
2019-04-12 18:40:33 -04:00
_find_all(name, prefix, partial, details, key, locals)
2009-09-02 18:00:22 -04:00
end
end
2009-09-02 18:00:22 -04:00
alias :find_all_anywhere :find_all
deprecate :find_all_anywhere
2015-07-15 17:32:45 -04:00
def find_all_with_query(query) # :nodoc:
@cache.cache_query(query) { find_template_paths(File.join(@path, query)) }
end
private
2019-04-12 18:40:33 -04:00
def _find_all(name, prefix, partial, details, key, locals)
find_templates(name, prefix, partial, details, locals)
end
delegate :caching?, to: :class
2010-03-07 06:49:27 -05:00
# This is what child classes implement. No defaults are needed
# because Resolver guarantees that the arguments are present and
# normalized.
def find_templates(name, prefix, partial, details, locals = [])
raise NotImplementedError, "Subclasses must implement a find_templates(name, prefix, partial, details, locals = []) method"
end
# Handles templates caching. If a key is given and caching is on
# always check the cache before hitting the resolver. Otherwise,
# it always hits the resolver but if the key is present, check if the
# resolver is fresher before returning it.
2016-12-24 08:08:23 -05:00
def cached(key, path_info, details, locals)
name, prefix, partial = path_info
if key
@cache.cache(key, name, prefix, partial, locals) do
yield
end
else
yield
end
end
end
2009-04-14 20:22:51 -04:00
# An abstract class that implements a Resolver with path semantics.
class PathResolver < Resolver #:nodoc:
2016-08-06 13:36:34 -04:00
EXTENSIONS = { locale: ".", formats: ".", variants: "+", handlers: "." }
DEFAULT_PATTERN = ":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}"
def initialize(pattern = nil)
if pattern
ActiveSupport::Deprecation.warn "Specifying a custom path for #{self.class} is deprecated. Implement a custom Resolver subclass instead."
@pattern = pattern
else
@pattern = DEFAULT_PATTERN
end
@unbound_templates = Concurrent::Map.new
super()
end
def clear_cache
@unbound_templates.clear
super()
end
private
2019-04-12 18:40:33 -04:00
def _find_all(name, prefix, partial, details, key, locals)
path = Path.build(name, prefix, partial)
2019-04-12 18:40:33 -04:00
query(path, details, details[:formats], locals, cache: !!key)
end
2009-09-02 18:00:22 -04:00
def query(path, details, formats, locals, cache:)
template_paths = find_template_paths_from_details(path, details)
template_paths = reject_files_external_to_app(template_paths)
template_paths.map do |template|
unbound_template =
if cache
@unbound_templates.compute_if_absent([template, path.virtual]) do
build_unbound_template(template, path.virtual)
end
else
build_unbound_template(template, path.virtual)
end
unbound_template.bind_locals(locals)
end
end
def build_unbound_template(template, virtual_path)
handler, format, variant = extract_handler_and_format_and_variant(template)
source = Template::Sources::File.new(template)
UnboundTemplate.new(
source,
template,
handler,
virtual_path: virtual_path,
format: format,
variant: variant,
)
end
def reject_files_external_to_app(files)
files.reject { |filename| !inside_path?(@path, filename) }
end
def find_template_paths_from_details(path, details)
query = build_query(path, details)
find_template_paths(query)
end
def find_template_paths(query)
Dir[query].uniq.reject do |filename|
File.directory?(filename) ||
# deals with case-insensitive file systems.
!File.fnmatch(query, filename, File::FNM_EXTGLOB)
end
end
def inside_path?(path, filename)
filename = File.expand_path(filename)
path = File.join(path, "")
filename.start_with?(path)
end
# Helper for building query glob string based on resolver's pattern.
def build_query(path, details)
query = @pattern.dup
2011-08-16 18:16:45 -04:00
prefix = path.prefix.empty? ? "" : "#{escape_entry(path.prefix)}\\1"
query.gsub!(/:prefix(\/)?/, prefix)
2011-08-16 18:16:45 -04:00
partial = escape_entry(path.partial? ? "_#{path.name}" : path.name)
query.gsub!(/:action/, partial)
details.each do |ext, candidates|
if ext == :variants && candidates == :any
query.gsub!(/:#{ext}/, "*")
else
query.gsub!(/:#{ext}/, "{#{candidates.compact.uniq.join(',')}}")
end
end
File.expand_path(query, @path)
end
def escape_entry(entry)
entry.gsub(/[*?{}\[\]]/, '\\\\\\&')
end
2011-08-16 18:16:45 -04:00
# Extract handler, formats and variant from path. If a format cannot be found neither
# from the path, or the handler, we should return the array of formats given
# to the resolver.
def extract_handler_and_format_and_variant(path)
pieces = File.basename(path).split(".")
pieces.shift
extension = pieces.pop
handler = Template.handler_for_extension(extension)
format, variant = pieces.last.split(EXTENSIONS[:variants], 2) if pieces.last
format = if format
Template::Types[format]&.ref
else
if handler.respond_to?(:default_format) # default_format can return nil
handler.default_format
else
2019-02-25 22:33:50 -05:00
nil
end
end
# Template::Types[format] and handler.default_format can return nil
2019-02-25 22:33:50 -05:00
[handler, format, variant]
end
2009-04-14 20:22:51 -04:00
end
# A resolver that loads files from the filesystem.
2009-09-02 18:00:22 -04:00
class FileSystemResolver < PathResolver
attr_reader :path
def initialize(path, pattern = nil)
2009-09-02 18:00:22 -04:00
raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver)
super(pattern)
@path = File.expand_path(path)
2009-09-02 18:00:22 -04:00
end
def to_s
@path.to_s
end
alias :to_path :to_s
def eql?(resolver)
self.class.equal?(resolver.class) && to_path == resolver.to_path
2009-09-02 18:00:22 -04:00
end
alias :== :eql?
end
# An Optimized resolver for Rails' most common case.
class OptimizedFileSystemResolver < FileSystemResolver #:nodoc:
def initialize(path)
super(path)
end
private
def find_template_paths_from_details(path, details)
# Instead of checking for every possible path, as our other globs would
# do, scan the directory for files with the right prefix.
query = "#{escape_entry(File.join(@path, path))}*"
regex = build_regex(path, details)
Dir[query].uniq.reject do |filename|
# This regex match does double duty of finding only files which match
# details (instead of just matching the prefix) and also filtering for
# case-insensitive file systems.
2018-12-12 16:29:29 -05:00
!regex.match?(filename) ||
File.directory?(filename)
end.sort_by do |filename|
# Because we scanned the directory, instead of checking for files
# one-by-one, they will be returned in an arbitrary order.
# We can use the matches found by the regex and sort by their index in
# details.
match = filename.match(regex)
EXTENSIONS.keys.reverse.map do |ext|
2018-09-12 21:21:18 -04:00
if ext == :variants && details[ext] == :any
match[ext].nil? ? 0 : 1
elsif match[ext].nil?
# No match should be last
details[ext].length
else
found = match[ext].to_sym
details[ext].index(found)
end
end
Lock down new `ImplicitRender` behavior for 5.0 RC 1. Conceptually revert #20276 The feature was implemented for the `responders` gem. In the end, they did not need that feature, and have found a better fix (see plataformatec/responders#131). `ImplicitRender` is the place where Rails specifies our default policies for the case where the user did not explicitly tell us what to render, essentially describing a set of heuristics. If the gem (or the user) knows exactly what they want, they could just perform the correct `render` to avoid falling through to here, as `responders` did (the user called `respond_with`). Reverting the patch allows us to avoid exploding the complexity and defining “the fallback for a fallback” policies. 2. `respond_to` and templates are considered exhaustive enumerations If the user specified a list of formats/variants in a `respond_to` block, anything that is not explicitly included should result in an `UnknownFormat` error (which is then caught upstream to mean “406 Not Acceptable” by default). This is already how it works before this commit. Same goes for templates – if the user defined a set of templates (usually in the file system), that set is now considered exhaustive, which means that “missing” templates are considered `UnknownFormat` errors (406). 3. To keep API endpoints simple, the implicit render behavior for actions with no templates defined at all (regardless of formats, locales, variants, etc) are defaulted to “204 No Content”. This is a strictly narrower version of the feature landed in #19036 and #19377. 4. To avoid confusion when interacting in the browser, these actions will raise an `UnknownFormat` error for “interactive” requests instead. (The precise definition of “interactive” requests might change – the spirit here is to give helpful messages and avoid confusions.) Closes #20666, #23062, #23077, #23564 [Godfrey Chan, Jon Moss, Kasper Timm Hansen, Mike Clark, Matthew Draper]
2016-02-23 12:41:26 -05:00
end
end
def build_regex(path, details)
query = escape_entry(File.join(@path, path))
exts = EXTENSIONS.map do |ext, prefix|
match =
if ext == :variants && details[ext] == :any
".*?"
else
details[ext].compact.uniq.map { |e| Regexp.escape(e) }.join("|")
end
prefix = Regexp.escape(prefix)
"(#{prefix}(?<#{ext}>#{match}))?"
end.join
%r{\A#{query}#{exts}\z}
end
end
# The same as FileSystemResolver but does not allow templates to store
# a virtual path since it is invalid for such resolvers.
class FallbackFileSystemResolver < FileSystemResolver #:nodoc:
private_class_method :new
def self.instances
[new(""), new("/")]
end
def build_unbound_template(template, _)
super(template, nil)
end
def reject_files_external_to_app(files)
files
end
end
end