Sha256: d83bd961980e9e9626d6759314c4f1b0633d2325e7ddee34ac08d87ba710f8b9

Contents?: true

Size: 1.33 KB

Versions: 6

Compression:

Stored size: 1.33 KB

Contents

# Tag for injecting view helpers. Example tag:
#   {{cms:helper method_name, param_a, param_b, foo: bar}}
# This expands into something like this:
#   <%= method_name("param_a", "param_b", "foo" => "bar") %>
# Whitelist is can be used to control what helpers are available.
# By default there's a blacklist of methods that should not be called.
#
class ComfortableMexicanSofa::Content::Tag::Helper < ComfortableMexicanSofa::Content::Tag

  BLACKLIST = %w[eval class_eval instance_eval render].freeze

  attr_reader :method_name

  def initialize(context, params_string)
    super
    @method_name = params.shift

    unless @method_name.present?
      raise Error, "Missing method name for helper tag"
    end
  end

  # we output erb into rest of the content
  def allow_erb
    true
  end

  def content
    helper_params = params.map do |p|
      case p
      when Hash
        p.to_s
      else
        "\"#{p}\""
      end
    end.join(",")
    "<%= #{method_name}(#{helper_params}) %>"
  end

  def render
    whitelist = ComfortableMexicanSofa.config.allowed_helpers
    if whitelist.is_a?(Array)
      content if whitelist.map!(&:to_s).member?(method_name)
    else
      content unless BLACKLIST.member?(method_name)
    end
  end

end

ComfortableMexicanSofa::Content::Renderer.register_tag(
  :helper, ComfortableMexicanSofa::Content::Tag::Helper
)

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.8 lib/comfortable_mexican_sofa/content/tags/helper.rb
comfortable_mexican_sofa-2.0.7 lib/comfortable_mexican_sofa/content/tags/helper.rb
comfortable_mexican_sofa-2.0.6 lib/comfortable_mexican_sofa/content/tags/helper.rb
comfortable_mexican_sofa-2.0.5 lib/comfortable_mexican_sofa/content/tags/helper.rb
comfortable_mexican_sofa-2.0.4 lib/comfortable_mexican_sofa/content/tags/helper.rb
comfortable_mexican_sofa-2.0.3 lib/comfortable_mexican_sofa/content/tags/helper.rb