1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-03 00:27:47 +01:00
liquid/expression/filters.go
Oliver Steele c599761c6a simplify
2017-07-07 05:51:40 -04:00

82 lines
2.1 KiB
Go

package expression
import (
"fmt"
"reflect"
"github.com/osteele/liquid/evaluator"
)
// An InterpreterError is an error during expression interpretation.
// It is used for errors in the input expression, to distinguish them
// from implementation errors in the interpreter.
type InterpreterError string
func (e InterpreterError) Error() string { return string(e) }
// UndefinedFilter is an error that the named filter is not defined.
type UndefinedFilter string
func (e UndefinedFilter) Error() string {
return fmt.Sprintf("undefined filter: %s", string(e))
}
type valueFn func(Context) interface{}
// AddFilter adds a filter to the filter dictionary.
func (c *Config) AddFilter(name string, fn interface{}) {
rf := reflect.ValueOf(fn)
switch {
case rf.Kind() != reflect.Func:
panic(fmt.Errorf("a filter must be a function"))
case rf.Type().NumIn() < 1:
panic(fmt.Errorf("a filter function must have at least one input"))
case rf.Type().NumOut() > 2:
panic(fmt.Errorf("a filter must be have one or two outputs"))
// case rf.Type().Out(1).Implements(…):
// panic(typeError("a filter's second output must be type error"))
}
if len(c.filters) == 0 {
c.filters = make(map[string]interface{})
}
c.filters[name] = fn
}
var closureType = reflect.TypeOf(closure{})
var interfaceType = reflect.TypeOf([]interface{}{}).Elem()
func isClosureInterfaceType(t reflect.Type) bool {
return closureType.ConvertibleTo(t) && !interfaceType.ConvertibleTo(t)
}
func (ctx *context) ApplyFilter(name string, receiver valueFn, params []valueFn) interface{} {
filter, ok := ctx.filters[name]
if !ok {
panic(UndefinedFilter(name))
}
fr := reflect.ValueOf(filter)
args := []interface{}{receiver(ctx)}
for i, param := range params {
if i+1 < fr.Type().NumIn() && isClosureInterfaceType(fr.Type().In(i+1)) {
expr, err := Parse(param(ctx).(string))
if err != nil {
panic(err)
}
args = append(args, closure{expr, ctx})
} else {
args = append(args, param(ctx))
}
}
out, err := evaluator.Call(fr, args)
if err != nil {
panic(err)
}
out = ToLiquid(out)
switch out := out.(type) {
case []byte:
return string(out)
default:
return out
}
}