Sha256: 5f38ab713521f124d89252931dd017e66df1d563ee3416ff9c58fe3f0556c2c7

Contents?: true

Size: 1.41 KB

Versions: 6

Compression:

Stored size: 1.41 KB

Contents

require 'ripper'

module ExpressTemplates
  module Template
    class Handler
      def self.call(template)
        new.call(template)
      end

      def call(template)
        # call ripper stuff method

        # returns a string to be eval'd
        source = "(#{ExpressTemplates.compile(template)}).html_safe"
        warn_contains_logic(source)  # pass the source code
        source
      end

      def warn_contains_logic(compiled_template)
        keywords = %w(if until unless case for do loop while)                                                                 # array of conditional keywords
        tokens = []
        if Ripper.lex(compiled_template).select do |element|                                                                  # since it outputs an array [[line, col], type, token]
          element[1]==:on_kw                                                                                                  # type must match ':on_kw' type (type is keyword)
        end.each { |match| tokens.push(match) if keywords.include? match[2] }                                                 # check if token is in given /keyword/ array, then push to new array match
          tokens.each do |first|
            warn "PAGE TEMPLATE INCLUDES #{first[2]} STATEMENT AT LINE #{first[0][0]}: #{first}\n#{compiled_template}"        # warn on first occurence of conditional logic
          end
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
express_admin-1.6.9 vendor/gems/express_templates/lib/express_templates/template/handler.rb
express_admin-1.6.8 vendor/gems/express_templates/lib/express_templates/template/handler.rb
express_admin-1.6.7 vendor/gems/express_templates/lib/express_templates/template/handler.rb
express_templates-0.11.3 lib/express_templates/template/handler.rb
express_admin-1.6.4 vendor/gems/express_templates/lib/express_templates/template/handler.rb
express_templates-0.11.2 lib/express_templates/template/handler.rb