123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- // Copyright 2016 José Santos <henrique_1609@me.com>
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package jet
- import (
- "encoding/json"
- "fmt"
- "html"
- "io"
- "net/url"
- "reflect"
- "strings"
- "text/template"
- )
- var defaultExtensions = []string{
- ".html.jet",
- ".jet.html",
- ".jet",
- }
- var defaultVariables map[string]reflect.Value
- func init() {
- defaultVariables = map[string]reflect.Value{
- "lower": reflect.ValueOf(strings.ToLower),
- "upper": reflect.ValueOf(strings.ToUpper),
- "hasPrefix": reflect.ValueOf(strings.HasPrefix),
- "hasSuffix": reflect.ValueOf(strings.HasSuffix),
- "repeat": reflect.ValueOf(strings.Repeat),
- "replace": reflect.ValueOf(strings.Replace),
- "split": reflect.ValueOf(strings.Split),
- "trimSpace": reflect.ValueOf(strings.TrimSpace),
- "map": reflect.ValueOf(newMap),
- "html": reflect.ValueOf(html.EscapeString),
- "url": reflect.ValueOf(url.QueryEscape),
- "safeHtml": reflect.ValueOf(SafeWriter(template.HTMLEscape)),
- "safeJs": reflect.ValueOf(SafeWriter(template.JSEscape)),
- "raw": reflect.ValueOf(SafeWriter(unsafePrinter)),
- "unsafe": reflect.ValueOf(SafeWriter(unsafePrinter)),
- "writeJson": reflect.ValueOf(jsonRenderer),
- "json": reflect.ValueOf(json.Marshal),
- "isset": reflect.ValueOf(Func(func(a Arguments) reflect.Value {
- a.RequireNumOfArguments("isset", 1, -1)
- for i := 0; i < len(a.argExpr); i++ {
- if !a.runtime.isSet(a.argExpr[i]) {
- return valueBoolFALSE
- }
- }
- return valueBoolTRUE
- })),
- "len": reflect.ValueOf(Func(func(a Arguments) reflect.Value {
- a.RequireNumOfArguments("len", 1, 1)
- expression := a.Get(0)
- if expression.Kind() == reflect.Ptr {
- expression = expression.Elem()
- }
- switch expression.Kind() {
- case reflect.Array, reflect.Chan, reflect.Slice, reflect.Map, reflect.String:
- return reflect.ValueOf(expression.Len())
- case reflect.Struct:
- return reflect.ValueOf(expression.NumField())
- }
- a.Panicf("inválid value type %s in len builtin", expression.Type())
- return reflect.Value{}
- })),
- "includeIfExists": reflect.ValueOf(Func(func(a Arguments) reflect.Value {
- a.RequireNumOfArguments("includeIfExists", 1, 2)
- t, err := a.runtime.set.GetTemplate(a.Get(0).String())
- // If template exists but returns an error then panic instead of failing silently
- if t != nil && err != nil {
- panic(err)
- }
- if err != nil {
- return hiddenFALSE
- }
- a.runtime.newScope()
- a.runtime.blocks = t.processedBlocks
- Root := t.Root
- if t.extends != nil {
- Root = t.extends.Root
- }
- if a.NumOfArguments() > 1 {
- c := a.runtime.context
- a.runtime.context = a.Get(1)
- a.runtime.executeList(Root)
- a.runtime.context = c
- } else {
- a.runtime.executeList(Root)
- }
- a.runtime.releaseScope()
- return hiddenTRUE
- })),
- }
- }
- type hiddenBool bool
- func (m hiddenBool) Render(r *Runtime) {
- }
- var hiddenTRUE = reflect.ValueOf(hiddenBool(true))
- var hiddenFALSE = reflect.ValueOf(hiddenBool(false))
- func jsonRenderer(v interface{}) RendererFunc {
- return func(r *Runtime) {
- err := json.NewEncoder(r.Writer).Encode(v)
- if err != nil {
- panic(err)
- }
- }
- }
- func unsafePrinter(w io.Writer, b []byte) {
- w.Write(b)
- }
- // SafeWriter escapee func. Functions implementing this type will write directly into the writer,
- // skipping the escape phase; use this type to create special types of escapee funcs.
- type SafeWriter func(io.Writer, []byte)
- func newMap(values ...interface{}) (nmap map[string]interface{}) {
- if len(values)%2 > 0 {
- panic("new map: invalid number of arguments on call to map")
- }
- nmap = make(map[string]interface{})
- for i := 0; i < len(values); i += 2 {
- nmap[fmt.Sprint(values[i])] = values[i+1]
- }
- return
- }
|