1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 23:24:39 +01:00
gojekyll/utils/liquid.go
2017-08-14 15:23:00 -04:00

27 lines
733 B
Go

package utils
import (
"fmt"
"reflect"
"github.com/osteele/liquid"
)
// FollowDots applied to a property list ["a", "b", "c"] is equivalent to
// the Liquid data expression "data.a.b.c", except without special treatment
// of "first", "last", and "size".
func FollowDots(data interface{}, props []string) (interface{}, error) {
for _, name := range props {
data = liquid.FromDrop(data)
if reflect.TypeOf(data).Kind() == reflect.Map {
item := reflect.ValueOf(data).MapIndex(reflect.ValueOf(name))
if item.IsValid() && (item.Kind() != reflect.Ptr || !item.IsNil()) && item.CanInterface() {
data = item.Interface()
continue
}
}
return nil, fmt.Errorf("no such property: %q", name)
}
return data, nil
}