Sha256: fb7f44ceccdfd7faf6835692278663039094434bf9748f21a9c68e3e3ff08046

Contents?: true

Size: 983 Bytes

Versions: 3

Compression:

Stored size: 983 Bytes

Contents

# Tag for injecting template rendering. Example tag:
#   {{cms:template template/path}}
# This expands into something like this:
#   <%= render template: "template/path" %>
# Whitelist is can be used to control what templates are available.
#
class ComfortableMexicanSofa::Content::Tag::Template < ComfortableMexicanSofa::Content::Tag

  attr_reader :path

  def initialize(context, params_string)
    super
    @path = params[0]

    unless @path.present?
      raise Error, "Missing template path for template tag"
    end
  end

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

  def content
    "<%= render template: \"#{path}\" %>"
  end

  def render
    whitelist = ComfortableMexicanSofa.config.allowed_templates
    if whitelist.is_a?(Array)
      whitelist.member?(@path) ? content : ""
    else
      content
    end
  end
end

ComfortableMexicanSofa::Content::Renderer.register_tag(
  :template, ComfortableMexicanSofa::Content::Tag::Template
)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.2 lib/comfortable_mexican_sofa/content/tags/template.rb
comfortable_mexican_sofa-2.0.1 lib/comfortable_mexican_sofa/content/tags/template.rb
comfortable_mexican_sofa-2.0.0 lib/comfortable_mexican_sofa/content/tags/template.rb