2017-06-26 16:15:01 +02:00
|
|
|
package liquid
|
|
|
|
|
|
|
|
import (
|
2017-06-27 13:43:42 +02:00
|
|
|
"io"
|
2017-06-26 16:15:01 +02:00
|
|
|
|
2017-06-27 18:06:24 +02:00
|
|
|
"github.com/osteele/liquid/filters"
|
2017-07-04 17:03:18 +02:00
|
|
|
"github.com/osteele/liquid/render"
|
2017-06-30 22:46:17 +02:00
|
|
|
"github.com/osteele/liquid/tags"
|
2017-06-26 16:15:01 +02:00
|
|
|
)
|
|
|
|
|
2017-07-07 11:51:31 +02:00
|
|
|
// An Engine parses template source into renderable text.
|
|
|
|
//
|
|
|
|
// An engine can be configured with additional filters and tags.
|
2017-07-10 15:16:35 +02:00
|
|
|
type Engine struct{ cfg render.Config }
|
2017-07-07 11:51:31 +02:00
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// NewEngine returns a new Engine.
|
|
|
|
func NewEngine() *Engine {
|
|
|
|
e := Engine{render.NewConfig()}
|
2017-07-07 13:30:32 +02:00
|
|
|
filters.AddStandardFilters(&e.cfg)
|
2017-07-07 11:51:31 +02:00
|
|
|
tags.AddStandardTags(e.cfg)
|
2017-07-10 15:16:35 +02:00
|
|
|
return &e
|
2017-06-26 16:15:01 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// RegisterBlock defines a block e.g. {% tag %}…{% endtag %}.
|
|
|
|
func (e *Engine) RegisterBlock(name string, td Renderer) {
|
2017-07-07 11:51:31 +02:00
|
|
|
e.cfg.AddBlock(name).Renderer(func(w io.Writer, ctx render.Context) error {
|
2017-07-04 13:41:17 +02:00
|
|
|
s, err := td(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = w.Write([]byte(s))
|
|
|
|
return err
|
|
|
|
})
|
2017-06-30 14:04:31 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// RegisterFilter defines a Liquid filter, for use as `{{ value | my_filter }}` or `{{ value | my_filter: arg }}`.
|
|
|
|
//
|
|
|
|
// A filter is a function that takes at least one input, and returns one or two outputs.
|
|
|
|
// If it returns two outputs, the second must have type error.
|
|
|
|
//
|
|
|
|
// Examples:
|
|
|
|
//
|
|
|
|
// * https://github.com/osteele/liquid/blob/master/filters/filters.go
|
|
|
|
//
|
|
|
|
// * https://github.com/osteele/gojekyll/blob/master/filters/filters.go
|
|
|
|
//
|
|
|
|
func (e *Engine) RegisterFilter(name string, fn interface{}) {
|
2017-07-07 11:51:31 +02:00
|
|
|
e.cfg.AddFilter(name, fn)
|
2017-06-27 22:02:05 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// RegisterTag defines a tag e.g. {% tag %}.
|
|
|
|
//
|
|
|
|
// RegisterTag defines a tag, for use as `{% tag args %}`.
|
|
|
|
//
|
|
|
|
// Examples:
|
|
|
|
//
|
|
|
|
// * https://github.com/osteele/gojekyll/blob/master/tags/tags.go
|
|
|
|
func (e *Engine) RegisterTag(name string, td Renderer) {
|
2017-07-01 16:36:47 +02:00
|
|
|
// For simplicity, don't expose the two stage parsing/rendering process to clients.
|
|
|
|
// Client tags do everything at runtime.
|
2017-07-07 11:51:31 +02:00
|
|
|
e.cfg.AddTag(name, func(_ string) (func(io.Writer, render.Context) error, error) {
|
2017-07-04 17:41:45 +02:00
|
|
|
return func(w io.Writer, ctx render.Context) error {
|
2017-07-04 13:41:17 +02:00
|
|
|
s, err := td(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
_, err = w.Write([]byte(s))
|
|
|
|
return err
|
|
|
|
}, nil
|
2017-07-01 16:36:47 +02:00
|
|
|
})
|
2017-06-27 13:43:42 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// ParseTemplate creates a new Template using the engine configuration.
|
|
|
|
func (e *Engine) ParseTemplate(text []byte) (*Template, error) {
|
|
|
|
root, err := e.cfg.Compile(string(text))
|
2017-06-26 16:15:01 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-07-10 15:16:35 +02:00
|
|
|
return &Template{root, &e.cfg}, nil
|
2017-06-26 16:15:01 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// ParseAndRender parses and then renders the template.
|
|
|
|
func (e *Engine) ParseAndRender(text []byte, b Bindings) ([]byte, error) {
|
|
|
|
tpl, err := e.ParseTemplate(text)
|
2017-06-26 16:15:01 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-07-10 15:16:35 +02:00
|
|
|
return tpl.Render(b)
|
2017-06-26 16:15:01 +02:00
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:35 +02:00
|
|
|
// ParseAndRenderString is a convenience wrapper for ParseAndRender, that has string input and output.
|
|
|
|
func (e *Engine) ParseAndRenderString(text string, b Bindings) (string, error) {
|
2017-07-03 03:17:04 +02:00
|
|
|
bs, err := e.ParseAndRender([]byte(text), b)
|
2017-06-26 16:36:53 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2017-07-03 03:17:04 +02:00
|
|
|
return string(bs), nil
|
2017-06-26 16:15:01 +02:00
|
|
|
}
|