1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-27 05:24:40 +01:00
gojekyll/filters/filters.go

253 lines
7.1 KiB
Go
Raw Normal View History

2017-07-01 01:40:52 +02:00
package filters
2017-06-11 20:57:25 +02:00
import (
2017-06-29 15:41:33 +02:00
"bytes"
2017-06-15 16:17:30 +02:00
"encoding/json"
2017-06-16 04:30:53 +02:00
"encoding/xml"
2017-06-30 18:21:55 +02:00
"fmt"
2017-07-01 04:38:27 +02:00
"math/rand"
2017-06-11 20:57:25 +02:00
"reflect"
2017-06-29 15:41:33 +02:00
"regexp"
"strings"
2017-06-16 04:30:53 +02:00
"time"
2017-06-11 20:57:25 +02:00
2017-07-01 01:37:31 +02:00
"github.com/osteele/gojekyll/config"
2017-07-01 01:40:52 +02:00
"github.com/osteele/liquid"
2017-07-05 17:35:20 +02:00
"github.com/osteele/liquid/evaluator"
2017-07-04 23:13:47 +02:00
"github.com/osteele/liquid/expression"
2017-06-28 22:55:15 +02:00
"github.com/russross/blackfriday"
2017-06-11 20:57:25 +02:00
)
2017-07-01 05:10:58 +02:00
// AddJekyllFilters adds the Jekyll filters to the Liquid engine.
func AddJekyllFilters(e liquid.Engine, c config.Config) {
2017-06-30 18:21:55 +02:00
// array filters
2017-07-02 19:34:43 +02:00
e.RegisterFilter("array_to_sentence_string", arrayToSentenceStringFilter)
2017-06-28 20:42:04 +02:00
// TODO neither Liquid nor Jekyll docs this, but it appears to be present
2017-07-02 19:34:43 +02:00
e.RegisterFilter("filter", func(values []map[string]interface{}, key string) []interface{} {
2017-06-28 20:42:04 +02:00
out := []interface{}{}
for _, value := range values {
if _, ok := value[key]; ok {
out = append(out, value)
}
}
return out
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("group_by", groupByFilter)
e.RegisterFilter("group_by_exp", unimplementedFilter("group_by_exp"))
e.RegisterFilter("sample", func(array []interface{}) interface{} {
2017-07-01 04:38:27 +02:00
if len(array) == 0 {
return nil
}
return array[rand.Intn(len(array))]
})
2017-06-29 15:41:33 +02:00
// sort overrides the Liquid filter with one that takes parameters
2017-07-02 19:34:43 +02:00
e.RegisterFilter("sort", sortFilter)
e.RegisterFilter("where", whereFilter) // TODO test case
e.RegisterFilter("where_exp", whereExpFilter)
e.RegisterFilter("xml_escape", xml.Marshal)
2017-06-28 22:55:15 +02:00
2017-07-02 19:34:43 +02:00
e.RegisterFilter("push", func(array []interface{}, item interface{}) interface{} {
2017-07-05 17:35:20 +02:00
return append(array, evaluator.MustConvertItem(item, array))
2017-06-29 15:41:33 +02:00
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("pop", unimplementedFilter("pop"))
e.RegisterFilter("shift", unimplementedFilter("shift"))
e.RegisterFilter("unshift", func(array []interface{}, item interface{}) interface{} {
2017-07-05 17:35:20 +02:00
return append([]interface{}{evaluator.MustConvertItem(item, array)}, array...)
2017-06-29 15:41:33 +02:00
})
2017-06-28 22:55:15 +02:00
// dates
2017-07-02 19:34:43 +02:00
e.RegisterFilter("date_to_rfc822", func(date time.Time) string {
2017-06-28 22:55:15 +02:00
return date.Format(time.RFC822)
// Out: Mon, 07 Nov 2008 13:07:54 -0800
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("date_to_string", func(date time.Time) string {
2017-06-28 22:55:15 +02:00
return date.Format("02 Jan 2006")
// Out: 07 Nov 2008
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("date_to_long_string", func(date time.Time) string {
2017-06-28 22:55:15 +02:00
return date.Format("02 January 2006")
// Out: 07 November 2008
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("date_to_xmlschema", func(date time.Time) string {
2017-06-28 22:55:15 +02:00
return date.Format("2006-01-02T15:04:05-07:00")
// Out: 2008-11-07T13:07:54-08:00
})
// strings
2017-07-02 19:34:43 +02:00
e.RegisterFilter("absolute_url", func(s string) string {
2017-07-01 05:10:58 +02:00
return c.AbsoluteURL + c.BaseURL + s
2017-06-28 22:55:15 +02:00
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("relative_url", func(s string) string {
2017-07-01 05:10:58 +02:00
return c.BaseURL + s
2017-06-28 22:55:15 +02:00
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("jsonify", json.Marshal)
e.RegisterFilter("markdownify", blackfriday.MarkdownCommon)
e.RegisterFilter("normalize_whitespace", func(s string) string {
2017-07-01 04:38:27 +02:00
// s = strings.Replace(s, "n", "N", -1)
wsPattern := regexp.MustCompile(`(?s:[\s\n]+)`)
return wsPattern.ReplaceAllString(s, " ")
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("slugify", func(s, mode string) string {
2017-07-01 04:38:27 +02:00
if mode == "" {
mode = "default"
}
p := map[string]string{
"raw": `\s+`,
"default": `[^[:alnum:]]+`,
"pretty": `[^[:alnum:]\._~!$&'()+,;=@]+`,
}[mode]
if p != "" {
s = regexp.MustCompile(p).ReplaceAllString(s, "-")
}
return strings.ToLower(s)
})
2017-07-02 19:34:43 +02:00
e.RegisterFilter("to_integer", func(n int) int { return n })
e.RegisterFilter("number_of_words", func(s string) int {
2017-06-29 15:41:33 +02:00
wordPattern := regexp.MustCompile(`\w+`) // TODO what's the Jekyll spec for a word?
m := wordPattern.FindAllStringIndex(s, -1)
if m == nil {
return 0
}
return len(m)
})
// string escapes
2017-07-02 19:34:43 +02:00
// engine.RegisterFilter("uri_escape", func(s string) string {
2017-06-29 15:41:33 +02:00
// parts := strings.SplitN(s, "?", 2)
// if len(parts) > 0 {
// TODO PathEscape is the wrong function
// parts[len(parts)-1] = url.PathEscape(parts[len(parts)-1])
// }
// return strings.Join(parts, "?")
// })
2017-07-02 19:34:43 +02:00
e.RegisterFilter("cgi_escape", unimplementedFilter("cgi_escape"))
e.RegisterFilter("uri_escape", unimplementedFilter("uri_escape"))
e.RegisterFilter("scssify", unimplementedFilter("scssify"))
e.RegisterFilter("smartify", unimplementedFilter("smartify"))
e.RegisterFilter("xml_escape", func(s string) string {
2017-06-29 19:15:34 +02:00
// TODO can't handle maps
// eval https://github.com/clbanning/mxj
// adapt https://stackoverflow.com/questions/30928770/marshall-map-to-xml-in-go
2017-06-29 15:41:33 +02:00
buf := new(bytes.Buffer)
if err := xml.EscapeText(buf, []byte(s)); err != nil {
panic(err)
}
return buf.String()
})
2017-06-15 16:17:30 +02:00
}
2017-07-01 04:38:27 +02:00
func unimplementedFilter(name string) func(value interface{}) interface{} {
warned := false
return func(value interface{}) interface{} {
if !warned {
fmt.Println("warning: unimplemented filter:", name)
warned = true
}
return value
}
}
2017-06-30 18:21:55 +02:00
func arrayToSentenceStringFilter(array []string, conjunction interface{}) string {
conj, ok := conjunction.(string)
if !ok {
conj = "and "
2017-06-16 04:30:53 +02:00
}
switch len(array) {
case 1:
return array[0]
default:
rt := reflect.ValueOf(array)
ar := make([]string, rt.Len())
for i, v := range array {
ar[i] = v
if i == rt.Len()-1 {
ar[i] = conj + v
}
2017-06-16 04:30:53 +02:00
}
return strings.Join(ar, ", ")
2017-06-16 04:30:53 +02:00
}
}
2017-06-30 18:21:55 +02:00
func groupByFilter(array []map[string]interface{}, property string) []map[string]interface{} {
rt := reflect.ValueOf(array)
if rt.Kind() != reflect.Array && rt.Kind() != reflect.Slice {
return nil
}
groups := map[interface{}][]interface{}{}
for i := 0; i < rt.Len(); i++ {
item := rt.Index(i)
if item.Kind() == reflect.Map && item.Type().Key().Kind() == reflect.String {
attr := item.MapIndex(reflect.ValueOf(property))
// fmt.Println("invalid", item)
if attr.IsValid() {
key := attr.Interface()
group, found := groups[key]
// fmt.Println("found", attr)
if found {
group = append(group, groups[key])
} else {
group = []interface{}{item}
}
groups[key] = group
}
}
}
out := []map[string]interface{}{}
for k, v := range groups {
out = append(out, map[string]interface{}{"name": k, "items": v})
}
return out
}
func sortFilter(array []interface{}, key interface{}, nilFirst interface{}) []interface{} {
2017-06-29 15:41:33 +02:00
nf, ok := nilFirst.(bool)
if !ok {
nf = true
}
2017-06-30 18:21:55 +02:00
out := make([]interface{}, len(array))
copy(out, array)
2017-06-29 15:41:33 +02:00
if key == nil {
2017-07-05 17:35:20 +02:00
evaluator.Sort(out)
2017-06-29 15:41:33 +02:00
} else {
2017-07-05 17:35:20 +02:00
evaluator.SortByProperty(out, key.(string), nf)
2017-06-29 15:41:33 +02:00
}
return out
}
2017-07-04 23:13:47 +02:00
func whereExpFilter(array []interface{}, name string, expr expression.Closure) ([]interface{}, error) {
2017-06-30 18:21:55 +02:00
rt := reflect.ValueOf(array)
if rt.Kind() != reflect.Array && rt.Kind() != reflect.Slice {
return nil, nil
2017-06-11 20:57:25 +02:00
}
out := []interface{}{}
for i := 0; i < rt.Len(); i++ {
item := rt.Index(i).Interface()
value, err := expr.Bind(name, item).Evaluate()
if err != nil {
return nil, err
}
if value != nil && value != false {
out = append(out, item)
}
2017-06-11 20:57:25 +02:00
}
return out, nil
}
2017-06-11 20:57:25 +02:00
2017-06-30 18:21:55 +02:00
func whereFilter(array []map[string]interface{}, key string, value interface{}) []interface{} {
rt := reflect.ValueOf(array)
if rt.Kind() != reflect.Array && rt.Kind() != reflect.Slice {
2017-06-29 15:41:33 +02:00
return nil
2017-06-11 20:57:25 +02:00
}
out := []interface{}{}
2017-06-11 20:57:25 +02:00
for i := 0; i < rt.Len(); i++ {
item := rt.Index(i)
if item.Kind() == reflect.Map && item.Type().Key().Kind() == reflect.String {
attr := item.MapIndex(reflect.ValueOf(key))
2017-06-30 18:21:55 +02:00
if attr.IsValid() && fmt.Sprint(attr) == value {
out = append(out, item.Interface())
}
2017-06-11 20:57:25 +02:00
}
}
return out
2017-06-11 20:57:25 +02:00
}