mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 00:40:40 -07:00
60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
require 'set'
|
|
|
|
module Liquid
|
|
|
|
# Strainer is the parent class for the filters system.
|
|
# New filters are mixed into the strainer class which is then instantiated for each liquid template render run.
|
|
#
|
|
# The Strainer only allows method calls defined in filters given to it via Strainer.global_filter,
|
|
# Context#add_filters or Template.register_filter
|
|
class Strainer #:nodoc:
|
|
@@global_strainer = Class.new(Strainer) do
|
|
@filter_methods = Set.new
|
|
end
|
|
@@strainer_class_cache = Hash.new do |hash, filters|
|
|
hash[filters] = Class.new(@@global_strainer) do
|
|
@filter_methods = @@global_strainer.filter_methods.dup
|
|
filters.each { |f| add_filter(f) }
|
|
end
|
|
end
|
|
|
|
def initialize(context)
|
|
@context = context
|
|
end
|
|
|
|
def self.filter_methods
|
|
@filter_methods
|
|
end
|
|
|
|
def self.add_filter(filter)
|
|
raise ArgumentError, "Expected module but got: #{f.class}" unless filter.is_a?(Module)
|
|
unless self.class.include?(filter)
|
|
self.send(:include, filter)
|
|
@filter_methods.merge(filter.public_instance_methods.map(&:to_s))
|
|
end
|
|
end
|
|
|
|
def self.global_filter(filter)
|
|
@@global_strainer.add_filter(filter)
|
|
end
|
|
|
|
def self.invokable?(method)
|
|
@filter_methods.include?(method.to_s)
|
|
end
|
|
|
|
def self.create(context, filters = [])
|
|
@@strainer_class_cache[filters].new(context)
|
|
end
|
|
|
|
def invoke(method, *args)
|
|
if self.class.invokable?(method)
|
|
send(method, *args)
|
|
else
|
|
args.first
|
|
end
|
|
rescue ::ArgumentError => e
|
|
raise Liquid::ArgumentError.new(e.message)
|
|
end
|
|
end
|
|
end
|