2014-04-23 02:52:01 -04:00
|
|
|
package hugolib
|
2013-08-31 20:35:17 -04:00
|
|
|
|
|
|
|
import (
|
2014-06-06 16:15:19 -04:00
|
|
|
"bytes"
|
2014-01-29 17:50:31 -05:00
|
|
|
"errors"
|
|
|
|
"html"
|
|
|
|
"html/template"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2014-04-07 22:02:08 -04:00
|
|
|
|
|
|
|
"github.com/eknkc/amber"
|
2014-10-09 18:57:57 -04:00
|
|
|
"github.com/spf13/cast"
|
2014-04-07 22:02:08 -04:00
|
|
|
"github.com/spf13/hugo/helpers"
|
2014-06-06 16:15:19 -04:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2013-08-31 20:35:17 -04:00
|
|
|
)
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
var localTemplates *template.Template
|
|
|
|
|
2014-05-08 08:56:28 -04:00
|
|
|
func Eq(x, y interface{}) bool {
|
|
|
|
return reflect.DeepEqual(x, y)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Ne(x, y interface{}) bool {
|
|
|
|
return !Eq(x, y)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Ge(a, b interface{}) bool {
|
2014-05-10 06:05:29 -04:00
|
|
|
left, right := compareGetFloat(a, b)
|
2014-05-08 08:56:28 -04:00
|
|
|
return left >= right
|
|
|
|
}
|
|
|
|
|
|
|
|
func Gt(a, b interface{}) bool {
|
2014-05-10 06:05:29 -04:00
|
|
|
left, right := compareGetFloat(a, b)
|
2014-05-08 08:56:28 -04:00
|
|
|
return left > right
|
|
|
|
}
|
|
|
|
|
|
|
|
func Le(a, b interface{}) bool {
|
2014-05-10 06:05:29 -04:00
|
|
|
left, right := compareGetFloat(a, b)
|
2014-05-08 08:56:28 -04:00
|
|
|
return left <= right
|
|
|
|
}
|
|
|
|
|
|
|
|
func Lt(a, b interface{}) bool {
|
2014-05-10 06:05:29 -04:00
|
|
|
left, right := compareGetFloat(a, b)
|
2014-05-08 08:56:28 -04:00
|
|
|
return left < right
|
|
|
|
}
|
|
|
|
|
2014-05-10 06:05:29 -04:00
|
|
|
func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
|
|
|
|
var left, right float64
|
2014-01-29 17:50:31 -05:00
|
|
|
av := reflect.ValueOf(a)
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
switch av.Kind() {
|
|
|
|
case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:
|
2014-05-10 06:05:29 -04:00
|
|
|
left = float64(av.Len())
|
2014-01-29 17:50:31 -05:00
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
2014-05-10 06:05:29 -04:00
|
|
|
left = float64(av.Int())
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
left = av.Float()
|
2014-01-29 17:50:31 -05:00
|
|
|
case reflect.String:
|
2014-05-10 06:05:29 -04:00
|
|
|
left, _ = strconv.ParseFloat(av.String(), 64)
|
2014-01-29 17:50:31 -05:00
|
|
|
}
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
bv := reflect.ValueOf(b)
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
switch bv.Kind() {
|
|
|
|
case reflect.Array, reflect.Chan, reflect.Map, reflect.Slice:
|
2014-05-10 06:05:29 -04:00
|
|
|
right = float64(bv.Len())
|
2014-01-29 17:50:31 -05:00
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
2014-05-10 06:05:29 -04:00
|
|
|
right = float64(bv.Int())
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
right = bv.Float()
|
2014-01-29 17:50:31 -05:00
|
|
|
case reflect.String:
|
2014-05-10 06:05:29 -04:00
|
|
|
right, _ = strconv.ParseFloat(bv.String(), 64)
|
2014-01-29 17:50:31 -05:00
|
|
|
}
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-05-08 08:56:28 -04:00
|
|
|
return left, right
|
2013-09-03 18:38:20 -04:00
|
|
|
}
|
|
|
|
|
2014-10-02 10:15:54 -04:00
|
|
|
func Intersect(l1, l2 interface{}) (interface{}, error) {
|
2014-10-08 13:56:00 -04:00
|
|
|
|
|
|
|
if l1 == nil || l2 == nil {
|
|
|
|
return make([]interface{}, 0), nil
|
|
|
|
}
|
|
|
|
|
2014-10-02 10:15:54 -04:00
|
|
|
l1v := reflect.ValueOf(l1)
|
|
|
|
l2v := reflect.ValueOf(l2)
|
|
|
|
|
|
|
|
switch l1v.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice:
|
|
|
|
switch l2v.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice:
|
|
|
|
r := reflect.MakeSlice(l1v.Type(), 0, 0)
|
|
|
|
for i := 0; i < l1v.Len(); i++ {
|
|
|
|
l1vv := l1v.Index(i)
|
|
|
|
for j := 0; j < l2v.Len(); j++ {
|
|
|
|
l2vv := l2v.Index(j)
|
|
|
|
switch l1vv.Kind() {
|
|
|
|
case reflect.String:
|
|
|
|
if l1vv.Type() == l2vv.Type() && l1vv.String() == l2vv.String() && !In(r, l2vv) {
|
|
|
|
r = reflect.Append(r, l2vv)
|
|
|
|
}
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
switch l2vv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
if l1vv.Int() == l2vv.Int() && !In(r, l2vv) {
|
|
|
|
r = reflect.Append(r, l2vv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
switch l2vv.Kind() {
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
if l1vv.Float() == l2vv.Float() && !In(r, l2vv) {
|
|
|
|
r = reflect.Append(r, l2vv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r.Interface(), nil
|
|
|
|
default:
|
|
|
|
return nil, errors.New("can't iterate over " + reflect.ValueOf(l2).Type().String())
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, errors.New("can't iterate over " + reflect.ValueOf(l1).Type().String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func In(l interface{}, v interface{}) bool {
|
|
|
|
lv := reflect.ValueOf(l)
|
|
|
|
vv := reflect.ValueOf(v)
|
|
|
|
|
|
|
|
switch lv.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice:
|
|
|
|
for i := 0; i < lv.Len(); i++ {
|
|
|
|
lvv := lv.Index(i)
|
|
|
|
switch lvv.Kind() {
|
|
|
|
case reflect.String:
|
|
|
|
if vv.Type() == lvv.Type() && vv.String() == lvv.String() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
switch vv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
if vv.Int() == lvv.Int() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
switch vv.Kind() {
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
if vv.Float() == lvv.Float() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case reflect.String:
|
|
|
|
if vv.Type() == lv.Type() && strings.Contains(lv.String(), vv.String()) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2013-11-10 15:04:51 -05:00
|
|
|
// First is exposed to templates, to iterate over the first N items in a
|
|
|
|
// rangeable list.
|
2014-10-09 18:57:57 -04:00
|
|
|
func First(limit interface{}, seq interface{}) (interface{}, error) {
|
|
|
|
|
|
|
|
limitv, err := cast.ToIntE(limit)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if limitv < 1 {
|
2014-01-29 17:50:31 -05:00
|
|
|
return nil, errors.New("can't return negative/empty count of items from sequence")
|
|
|
|
}
|
|
|
|
|
|
|
|
seqv := reflect.ValueOf(seq)
|
|
|
|
// this is better than my first pass; ripped from text/template/exec.go indirect():
|
|
|
|
for ; seqv.Kind() == reflect.Ptr || seqv.Kind() == reflect.Interface; seqv = seqv.Elem() {
|
|
|
|
if seqv.IsNil() {
|
|
|
|
return nil, errors.New("can't iterate over a nil value")
|
|
|
|
}
|
|
|
|
if seqv.Kind() == reflect.Interface && seqv.NumMethod() > 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch seqv.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice, reflect.String:
|
|
|
|
// okay
|
|
|
|
default:
|
|
|
|
return nil, errors.New("can't iterate over " + reflect.ValueOf(seq).Type().String())
|
|
|
|
}
|
2014-10-09 18:57:57 -04:00
|
|
|
if limitv > seqv.Len() {
|
|
|
|
limitv = seqv.Len()
|
2014-01-29 17:50:31 -05:00
|
|
|
}
|
2014-10-09 18:57:57 -04:00
|
|
|
return seqv.Slice(0, limitv).Interface(), nil
|
2013-11-10 15:04:51 -05:00
|
|
|
}
|
|
|
|
|
2014-08-16 00:12:34 -04:00
|
|
|
func Where(seq, key, match interface{}) (interface{}, error) {
|
|
|
|
seqv := reflect.ValueOf(seq)
|
|
|
|
kv := reflect.ValueOf(key)
|
|
|
|
mv := reflect.ValueOf(match)
|
|
|
|
|
|
|
|
// this is better than my first pass; ripped from text/template/exec.go indirect():
|
|
|
|
for ; seqv.Kind() == reflect.Ptr || seqv.Kind() == reflect.Interface; seqv = seqv.Elem() {
|
|
|
|
if seqv.IsNil() {
|
|
|
|
return nil, errors.New("can't iterate over a nil value")
|
|
|
|
}
|
|
|
|
if seqv.Kind() == reflect.Interface && seqv.NumMethod() > 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch seqv.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice:
|
|
|
|
r := reflect.MakeSlice(seqv.Type(), 0, 0)
|
|
|
|
for i := 0; i < seqv.Len(); i++ {
|
|
|
|
var vvv reflect.Value
|
|
|
|
vv := seqv.Index(i)
|
|
|
|
switch vv.Kind() {
|
|
|
|
case reflect.Map:
|
|
|
|
if kv.Type() == vv.Type().Key() && vv.MapIndex(kv).IsValid() {
|
|
|
|
vvv = vv.MapIndex(kv)
|
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
if kv.Kind() == reflect.String && vv.FieldByName(kv.String()).IsValid() {
|
|
|
|
vvv = vv.FieldByName(kv.String())
|
|
|
|
}
|
|
|
|
case reflect.Ptr:
|
|
|
|
if !vv.IsNil() {
|
|
|
|
ev := vv.Elem()
|
|
|
|
switch ev.Kind() {
|
|
|
|
case reflect.Map:
|
|
|
|
if kv.Type() == ev.Type().Key() && ev.MapIndex(kv).IsValid() {
|
|
|
|
vvv = ev.MapIndex(kv)
|
|
|
|
}
|
|
|
|
case reflect.Struct:
|
|
|
|
if kv.Kind() == reflect.String && ev.FieldByName(kv.String()).IsValid() {
|
|
|
|
vvv = ev.FieldByName(kv.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if vvv.IsValid() && mv.Type() == vvv.Type() {
|
|
|
|
switch mv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
if mv.Int() == vvv.Int() {
|
|
|
|
r = reflect.Append(r, vv)
|
|
|
|
}
|
|
|
|
case reflect.String:
|
|
|
|
if mv.String() == vvv.String() {
|
|
|
|
r = reflect.Append(r, vv)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r.Interface(), nil
|
|
|
|
default:
|
|
|
|
return nil, errors.New("can't iterate over " + reflect.ValueOf(seq).Type().String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-03 18:38:20 -04:00
|
|
|
func IsSet(a interface{}, key interface{}) bool {
|
2014-01-29 17:50:31 -05:00
|
|
|
av := reflect.ValueOf(a)
|
|
|
|
kv := reflect.ValueOf(key)
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
switch av.Kind() {
|
|
|
|
case reflect.Array, reflect.Chan, reflect.Slice:
|
|
|
|
if int64(av.Len()) > kv.Int() {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
case reflect.Map:
|
|
|
|
if kv.Type() == av.Type().Key() {
|
|
|
|
return av.MapIndex(kv).IsValid()
|
|
|
|
}
|
|
|
|
}
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
return false
|
2013-09-03 18:38:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func ReturnWhenSet(a interface{}, index int) interface{} {
|
2014-01-29 17:50:31 -05:00
|
|
|
av := reflect.ValueOf(a)
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
switch av.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice:
|
|
|
|
if av.Len() > index {
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
avv := av.Index(index)
|
|
|
|
switch avv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
return avv.Int()
|
|
|
|
case reflect.String:
|
|
|
|
return avv.String()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-09 17:27:39 -05:00
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
return ""
|
2013-09-03 18:38:20 -04:00
|
|
|
}
|
2013-08-31 20:47:21 -04:00
|
|
|
|
2013-12-05 09:43:49 -05:00
|
|
|
func Highlight(in interface{}, lang string) template.HTML {
|
2014-01-29 17:50:31 -05:00
|
|
|
var str string
|
|
|
|
av := reflect.ValueOf(in)
|
|
|
|
switch av.Kind() {
|
|
|
|
case reflect.String:
|
|
|
|
str = av.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(strings.TrimSpace(str), "<pre><code>") {
|
|
|
|
str = str[strings.Index(str, "<pre><code>")+11:]
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(strings.TrimSpace(str), "</code></pre>") {
|
|
|
|
str = str[:strings.LastIndex(str, "</code></pre>")]
|
|
|
|
}
|
|
|
|
return template.HTML(helpers.Highlight(html.UnescapeString(str), lang))
|
2013-12-05 09:43:49 -05:00
|
|
|
}
|
|
|
|
|
2013-09-09 07:43:30 -04:00
|
|
|
func SafeHtml(text string) template.HTML {
|
2014-01-29 17:50:31 -05:00
|
|
|
return template.HTML(text)
|
2013-09-09 07:43:30 -04:00
|
|
|
}
|
|
|
|
|
2014-09-19 12:33:02 -04:00
|
|
|
func doArithmetic(a, b interface{}, op rune) (interface{}, error) {
|
|
|
|
av := reflect.ValueOf(a)
|
|
|
|
bv := reflect.ValueOf(b)
|
|
|
|
var ai, bi int64
|
|
|
|
var af, bf float64
|
|
|
|
var au, bu uint64
|
|
|
|
switch av.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
ai = av.Int()
|
|
|
|
switch bv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
bi = bv.Int()
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
af = float64(ai) // may overflow
|
|
|
|
ai = 0
|
|
|
|
bf = bv.Float()
|
|
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
|
|
|
bu = bv.Uint()
|
|
|
|
if ai >= 0 {
|
|
|
|
au = uint64(ai)
|
|
|
|
ai = 0
|
|
|
|
} else {
|
|
|
|
bi = int64(bu) // may overflow
|
|
|
|
bu = 0
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Can't apply the operator to the values")
|
|
|
|
}
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
af = av.Float()
|
|
|
|
switch bv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
bf = float64(bv.Int()) // may overflow
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
bf = bv.Float()
|
|
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
|
|
|
bf = float64(bv.Uint()) // may overflow
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Can't apply the operator to the values")
|
|
|
|
}
|
|
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
|
|
|
au = av.Uint()
|
|
|
|
switch bv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
bi = bv.Int()
|
|
|
|
if bi >= 0 {
|
|
|
|
bu = uint64(bi)
|
|
|
|
bi = 0
|
|
|
|
} else {
|
|
|
|
ai = int64(au) // may overflow
|
|
|
|
au = 0
|
|
|
|
}
|
|
|
|
case reflect.Float32, reflect.Float64:
|
|
|
|
af = float64(au) // may overflow
|
|
|
|
au = 0
|
|
|
|
bf = bv.Float()
|
|
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
|
|
|
|
bu = bv.Uint()
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Can't apply the operator to the values")
|
|
|
|
}
|
|
|
|
case reflect.String:
|
|
|
|
as := av.String()
|
|
|
|
if bv.Kind() == reflect.String && op == '+' {
|
|
|
|
bs := bv.String()
|
|
|
|
return as + bs, nil
|
|
|
|
} else {
|
|
|
|
return nil, errors.New("Can't apply the operator to the values")
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Can't apply the operator to the values")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch op {
|
|
|
|
case '+':
|
|
|
|
if ai != 0 || bi != 0 {
|
|
|
|
return ai + bi, nil
|
|
|
|
} else if af != 0 || bf != 0 {
|
|
|
|
return af + bf, nil
|
|
|
|
} else if au != 0 || bu != 0 {
|
|
|
|
return au + bu, nil
|
|
|
|
} else {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
case '-':
|
|
|
|
if ai != 0 || bi != 0 {
|
|
|
|
return ai - bi, nil
|
|
|
|
} else if af != 0 || bf != 0 {
|
|
|
|
return af - bf, nil
|
|
|
|
} else if au != 0 || bu != 0 {
|
|
|
|
return au - bu, nil
|
|
|
|
} else {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
case '*':
|
|
|
|
if ai != 0 || bi != 0 {
|
|
|
|
return ai * bi, nil
|
|
|
|
} else if af != 0 || bf != 0 {
|
|
|
|
return af * bf, nil
|
|
|
|
} else if au != 0 || bu != 0 {
|
|
|
|
return au * bu, nil
|
|
|
|
} else {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
case '/':
|
|
|
|
if bi != 0 {
|
|
|
|
return ai / bi, nil
|
|
|
|
} else if bf != 0 {
|
|
|
|
return af / bf, nil
|
|
|
|
} else if bu != 0 {
|
|
|
|
return au / bu, nil
|
|
|
|
} else {
|
|
|
|
return nil, errors.New("Can't divide the value by 0")
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, errors.New("There is no such an operation")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-21 11:51:29 -04:00
|
|
|
func Mod(a, b interface{}) (int64, error) {
|
|
|
|
av := reflect.ValueOf(a)
|
|
|
|
bv := reflect.ValueOf(b)
|
|
|
|
var ai, bi int64
|
|
|
|
|
|
|
|
switch av.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
ai = av.Int()
|
|
|
|
default:
|
|
|
|
return 0, errors.New("Modulo operator can't be used with non integer value")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch bv.Kind() {
|
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
|
|
bi = bv.Int()
|
|
|
|
default:
|
|
|
|
return 0, errors.New("Modulo operator can't be used with non integer value")
|
|
|
|
}
|
|
|
|
|
|
|
|
if bi == 0 {
|
|
|
|
return 0, errors.New("The number can't be divided by zero at modulo operation")
|
|
|
|
}
|
|
|
|
|
|
|
|
return ai % bi, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ModBool(a, b interface{}) (bool, error) {
|
|
|
|
res, err := Mod(a, b)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return res == int64(0), nil
|
|
|
|
}
|
|
|
|
|
2013-08-31 20:47:21 -04:00
|
|
|
type Template interface {
|
2014-01-29 17:50:31 -05:00
|
|
|
ExecuteTemplate(wr io.Writer, name string, data interface{}) error
|
|
|
|
Lookup(name string) *template.Template
|
|
|
|
Templates() []*template.Template
|
|
|
|
New(name string) *template.Template
|
|
|
|
LoadTemplates(absPath string)
|
2014-04-10 08:10:12 -04:00
|
|
|
LoadTemplatesWithPrefix(absPath, prefix string)
|
2014-01-29 17:50:31 -05:00
|
|
|
AddTemplate(name, tpl string) error
|
2014-02-25 23:57:31 -05:00
|
|
|
AddInternalTemplate(prefix, name, tpl string) error
|
|
|
|
AddInternalShortcode(name, tpl string) error
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type templateErr struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
name string
|
|
|
|
err error
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type GoHtmlTemplate struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
template.Template
|
|
|
|
errors []*templateErr
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewTemplate() Template {
|
2014-01-29 17:50:31 -05:00
|
|
|
var templates = &GoHtmlTemplate{
|
|
|
|
Template: *template.New(""),
|
|
|
|
errors: make([]*templateErr, 0),
|
|
|
|
}
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
localTemplates = &templates.Template
|
|
|
|
|
2014-01-29 17:50:31 -05:00
|
|
|
funcMap := template.FuncMap{
|
2014-04-07 22:02:08 -04:00
|
|
|
"urlize": helpers.Urlize,
|
|
|
|
"sanitizeurl": helpers.SanitizeUrl,
|
2014-05-08 08:56:28 -04:00
|
|
|
"eq": Eq,
|
|
|
|
"ne": Ne,
|
2014-04-07 22:02:08 -04:00
|
|
|
"gt": Gt,
|
2014-05-08 08:56:28 -04:00
|
|
|
"ge": Ge,
|
|
|
|
"lt": Lt,
|
|
|
|
"le": Le,
|
2014-10-02 10:15:54 -04:00
|
|
|
"in": In,
|
|
|
|
"intersect": Intersect,
|
2014-04-07 22:02:08 -04:00
|
|
|
"isset": IsSet,
|
|
|
|
"echoParam": ReturnWhenSet,
|
|
|
|
"safeHtml": SafeHtml,
|
|
|
|
"first": First,
|
2014-08-16 00:12:34 -04:00
|
|
|
"where": Where,
|
2014-04-07 22:02:08 -04:00
|
|
|
"highlight": Highlight,
|
2014-09-19 12:33:02 -04:00
|
|
|
"add": func(a, b interface{}) (interface{}, error) { return doArithmetic(a, b, '+') },
|
|
|
|
"sub": func(a, b interface{}) (interface{}, error) { return doArithmetic(a, b, '-') },
|
|
|
|
"div": func(a, b interface{}) (interface{}, error) { return doArithmetic(a, b, '/') },
|
2014-10-21 11:51:29 -04:00
|
|
|
"mod": Mod,
|
2014-09-19 12:33:02 -04:00
|
|
|
"mul": func(a, b interface{}) (interface{}, error) { return doArithmetic(a, b, '*') },
|
2014-10-21 11:51:29 -04:00
|
|
|
"modBool": ModBool,
|
2014-04-07 22:02:08 -04:00
|
|
|
"lower": func(a string) string { return strings.ToLower(a) },
|
|
|
|
"upper": func(a string) string { return strings.ToUpper(a) },
|
|
|
|
"title": func(a string) string { return strings.Title(a) },
|
2014-06-06 16:15:19 -04:00
|
|
|
"partial": Partial,
|
2014-01-29 17:50:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
templates.Funcs(funcMap)
|
|
|
|
|
|
|
|
templates.LoadEmbedded()
|
|
|
|
return templates
|
2014-01-09 17:27:39 -05:00
|
|
|
}
|
2013-08-31 20:47:21 -04:00
|
|
|
|
2014-09-03 11:30:08 -04:00
|
|
|
func Partial(name string, context_list ...interface{}) template.HTML {
|
2014-06-06 16:15:19 -04:00
|
|
|
if strings.HasPrefix("partials/", name) {
|
|
|
|
name = name[8:]
|
|
|
|
}
|
2014-09-03 11:30:08 -04:00
|
|
|
var context interface{}
|
|
|
|
|
|
|
|
if len(context_list) == 0 {
|
|
|
|
context = nil
|
|
|
|
} else {
|
|
|
|
context = context_list[0]
|
|
|
|
}
|
2014-06-06 16:15:19 -04:00
|
|
|
return ExecuteTemplateToHTML(context, "partials/"+name, "theme/partials/"+name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExecuteTemplate(context interface{}, layouts ...string) *bytes.Buffer {
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
worked := false
|
|
|
|
for _, layout := range layouts {
|
|
|
|
if localTemplates.Lookup(layout) != nil {
|
2014-10-02 13:37:38 -04:00
|
|
|
err := localTemplates.ExecuteTemplate(buffer, layout, context)
|
|
|
|
if err != nil {
|
|
|
|
jww.ERROR.Println(err, "in", layout)
|
|
|
|
}
|
2014-06-06 16:15:19 -04:00
|
|
|
worked = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !worked {
|
|
|
|
jww.ERROR.Println("Unable to render", layouts)
|
|
|
|
jww.ERROR.Println("Expecting to find a template in either the theme/layouts or /layouts in one of the following relative locations", layouts)
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExecuteTemplateToHTML(context interface{}, layouts ...string) template.HTML {
|
|
|
|
b := ExecuteTemplate(context, layouts...)
|
|
|
|
return template.HTML(string(b.Bytes()))
|
|
|
|
}
|
|
|
|
|
2014-01-09 17:27:39 -05:00
|
|
|
func (t *GoHtmlTemplate) LoadEmbedded() {
|
2014-01-29 17:50:31 -05:00
|
|
|
t.EmbedShortcodes()
|
2014-04-09 17:45:34 -04:00
|
|
|
t.EmbedTemplates()
|
2014-01-09 17:27:39 -05:00
|
|
|
}
|
2013-08-31 20:47:21 -04:00
|
|
|
|
2014-01-09 17:27:39 -05:00
|
|
|
func (t *GoHtmlTemplate) AddInternalTemplate(prefix, name, tpl string) error {
|
2014-04-23 02:52:01 -04:00
|
|
|
if prefix != "" {
|
|
|
|
return t.AddTemplate("_internal/"+prefix+"/"+name, tpl)
|
|
|
|
} else {
|
|
|
|
return t.AddTemplate("_internal/"+name, tpl)
|
|
|
|
}
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
2014-02-25 23:57:31 -05:00
|
|
|
func (t *GoHtmlTemplate) AddInternalShortcode(name, content string) error {
|
|
|
|
return t.AddInternalTemplate("shortcodes", name, content)
|
|
|
|
}
|
|
|
|
|
2013-08-31 20:47:21 -04:00
|
|
|
func (t *GoHtmlTemplate) AddTemplate(name, tpl string) error {
|
2014-01-29 17:50:31 -05:00
|
|
|
_, err := t.New(name).Parse(tpl)
|
|
|
|
if err != nil {
|
|
|
|
t.errors = append(t.errors, &templateErr{name: name, err: err})
|
|
|
|
}
|
|
|
|
return err
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *GoHtmlTemplate) AddTemplateFile(name, path string) error {
|
2014-09-09 17:57:14 -04:00
|
|
|
// get the suffix and switch on that
|
|
|
|
ext := filepath.Ext(path)
|
|
|
|
switch ext {
|
|
|
|
case ".amber":
|
|
|
|
compiler := amber.New()
|
|
|
|
// Parse the input file
|
|
|
|
if err := compiler.ParseFile(path); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := compiler.CompileWithTemplate(t.New(name)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
b, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return t.AddTemplate(name, string(b))
|
2014-01-29 17:50:31 -05:00
|
|
|
}
|
2014-09-09 17:57:14 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *GoHtmlTemplate) generateTemplateNameFrom(base, path string) string {
|
2014-01-29 17:50:31 -05:00
|
|
|
return filepath.ToSlash(path[len(base)+1:])
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
|
|
|
|
2013-09-03 18:38:20 -04:00
|
|
|
func ignoreDotFile(path string) bool {
|
2014-01-29 17:50:31 -05:00
|
|
|
return filepath.Base(path)[0] == '.'
|
2013-09-03 18:38:20 -04:00
|
|
|
}
|
|
|
|
|
2014-04-10 08:10:12 -04:00
|
|
|
func (t *GoHtmlTemplate) loadTemplates(absPath string, prefix string) {
|
2014-01-29 17:50:31 -05:00
|
|
|
walker := func(path string, fi os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !fi.IsDir() {
|
|
|
|
if ignoreDotFile(path) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
tplName := t.generateTemplateNameFrom(absPath, path)
|
|
|
|
|
2014-04-10 08:10:12 -04:00
|
|
|
if prefix != "" {
|
|
|
|
tplName = strings.Trim(prefix, "/") + "/" + tplName
|
|
|
|
}
|
|
|
|
|
2014-09-09 17:57:14 -04:00
|
|
|
t.AddTemplateFile(tplName, path)
|
2014-01-29 17:50:31 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
filepath.Walk(absPath, walker)
|
2013-08-31 20:47:21 -04:00
|
|
|
}
|
2014-04-10 08:10:12 -04:00
|
|
|
|
|
|
|
func (t *GoHtmlTemplate) LoadTemplatesWithPrefix(absPath string, prefix string) {
|
|
|
|
t.loadTemplates(absPath, prefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *GoHtmlTemplate) LoadTemplates(absPath string) {
|
|
|
|
t.loadTemplates(absPath, "")
|
|
|
|
}
|