Beego/template.go

263 lines
6.7 KiB
Go
Raw Normal View History

2014-08-18 08:41:43 +00:00
// Copyright 2014 beego Author. All Rights Reserved.
2014-07-03 15:40:21 +00:00
//
2014-08-18 08:41:43 +00:00
// 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
2014-07-03 15:40:21 +00:00
//
2014-08-18 08:41:43 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2014-07-03 15:40:21 +00:00
//
2014-08-18 08:41:43 +00:00
// 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.
2013-03-14 09:57:09 +00:00
2014-08-18 08:41:43 +00:00
package beego
2013-03-14 09:57:09 +00:00
import (
"errors"
"fmt"
"html/template"
2013-09-12 09:20:32 +00:00
"io/ioutil"
2013-03-14 09:57:09 +00:00
"os"
"path/filepath"
2013-09-12 09:20:32 +00:00
"regexp"
2013-03-14 09:57:09 +00:00
"strings"
"github.com/astaxie/beego/utils"
2013-03-14 09:57:09 +00:00
)
var (
2013-09-12 09:20:32 +00:00
beegoTplFuncMap template.FuncMap
2013-12-22 07:09:33 +00:00
// beego template caching map and supported template file extensions.
BeeTemplates map[string]*template.Template
BeeTemplateExt []string
2013-03-14 09:57:09 +00:00
)
func init() {
BeeTemplates = make(map[string]*template.Template)
beegoTplFuncMap = make(template.FuncMap)
BeeTemplateExt = make([]string, 0)
BeeTemplateExt = append(BeeTemplateExt, "tpl", "html")
beegoTplFuncMap["dateformat"] = DateFormat
beegoTplFuncMap["date"] = Date
beegoTplFuncMap["compare"] = Compare
beegoTplFuncMap["compare_not"] = CompareNot
beegoTplFuncMap["not_nil"] = NotNil
beegoTplFuncMap["not_null"] = NotNil
2013-03-14 13:47:39 +00:00
beegoTplFuncMap["substr"] = Substr
2013-03-21 05:21:04 +00:00
beegoTplFuncMap["html2str"] = Html2str
beegoTplFuncMap["str2html"] = Str2html
beegoTplFuncMap["htmlquote"] = Htmlquote
beegoTplFuncMap["htmlunquote"] = Htmlunquote
2013-08-10 08:33:46 +00:00
beegoTplFuncMap["renderform"] = RenderForm
beegoTplFuncMap["assets_js"] = AssetsJs
beegoTplFuncMap["assets_css"] = AssetsCss
beegoTplFuncMap["config"] = Config
// go1.2 added template funcs
// Comparisons
beegoTplFuncMap["eq"] = eq // ==
beegoTplFuncMap["ge"] = ge // >=
beegoTplFuncMap["gt"] = gt // >
beegoTplFuncMap["le"] = le // <=
beegoTplFuncMap["lt"] = lt // <
beegoTplFuncMap["ne"] = ne // !=
beegoTplFuncMap["urlfor"] = UrlFor // !=
2013-03-14 09:57:09 +00:00
}
// AddFuncMap let user to register a func in the template.
2013-03-14 09:57:09 +00:00
func AddFuncMap(key string, funname interface{}) error {
beegoTplFuncMap[key] = funname
return nil
}
type templatefile struct {
root string
files map[string][]string
}
func (self *templatefile) visit(paths string, f os.FileInfo, err error) error {
if f == nil {
return err
}
2013-08-01 03:57:29 +00:00
if f.IsDir() || (f.Mode()&os.ModeSymlink) > 0 {
2013-03-14 09:57:09 +00:00
return nil
2013-08-01 03:57:29 +00:00
}
if !HasTemplateExt(paths) {
2013-03-14 09:57:09 +00:00
return nil
2013-08-01 03:57:29 +00:00
}
replace := strings.NewReplacer("\\", "/")
a := []byte(paths)
a = a[len([]byte(self.root)):]
2013-09-12 09:20:32 +00:00
file := strings.TrimLeft(replace.Replace(string(a)), "/")
subdir := filepath.Dir(file)
2013-08-01 03:57:29 +00:00
if _, ok := self.files[subdir]; ok {
2013-09-13 05:57:40 +00:00
self.files[subdir] = append(self.files[subdir], file)
2013-03-14 09:57:09 +00:00
} else {
2013-08-01 03:57:29 +00:00
m := make([]string, 1)
2013-09-13 05:57:40 +00:00
m[0] = file
2013-08-01 03:57:29 +00:00
self.files[subdir] = m
}
2013-03-14 09:57:09 +00:00
2013-08-01 03:57:29 +00:00
return nil
}
2013-12-22 07:09:33 +00:00
// return this path contains supported template extension of beego or not.
func HasTemplateExt(paths string) bool {
2013-08-01 03:57:29 +00:00
for _, v := range BeeTemplateExt {
if strings.HasSuffix(paths, "."+v) {
return true
2013-03-14 09:57:09 +00:00
}
}
2013-08-01 03:57:29 +00:00
return false
2013-03-14 09:57:09 +00:00
}
// add new extension for template.
2013-03-14 09:57:09 +00:00
func AddTemplateExt(ext string) {
for _, v := range BeeTemplateExt {
if v == ext {
return
}
}
BeeTemplateExt = append(BeeTemplateExt, ext)
}
// build all template files in a directory.
// it makes beego can render any template file in view directory.
2013-03-14 09:57:09 +00:00
func BuildTemplate(dir string) error {
2013-03-21 13:45:48 +00:00
if _, err := os.Stat(dir); err != nil {
if os.IsNotExist(err) {
return nil
2013-03-21 13:45:48 +00:00
} else {
return errors.New("dir open err")
}
2013-03-21 12:46:54 +00:00
}
2013-09-12 09:20:32 +00:00
self := &templatefile{
2013-03-14 09:57:09 +00:00
root: dir,
files: make(map[string][]string),
}
2013-03-21 13:47:19 +00:00
err := filepath.Walk(dir, func(path string, f os.FileInfo, err error) error {
2013-09-12 09:20:32 +00:00
return self.visit(path, f, err)
2013-03-14 09:57:09 +00:00
})
if err != nil {
fmt.Printf("filepath.Walk() returned %v\n", err)
return err
}
2013-09-13 05:57:40 +00:00
for _, v := range self.files {
for _, file := range v {
t, err := getTemplate(self.root, file, v...)
if err != nil {
Trace("parse template err:", file, err)
} else {
BeeTemplates[file] = t
}
}
}
2013-03-14 09:57:09 +00:00
return nil
}
2013-09-12 09:20:32 +00:00
2013-10-30 15:02:53 +00:00
func getTplDeep(root, file, parent string, t *template.Template) (*template.Template, [][]string, error) {
var fileabspath string
if filepath.HasPrefix(file, "../") {
fileabspath = filepath.Join(root, filepath.Dir(parent), file)
} else {
fileabspath = filepath.Join(root, file)
}
if e := utils.FileExists(fileabspath); !e {
2014-03-27 00:49:57 +00:00
panic("can't find template file:" + file)
2013-10-30 15:02:53 +00:00
}
2013-09-12 09:20:32 +00:00
data, err := ioutil.ReadFile(fileabspath)
if err != nil {
2013-09-13 09:41:31 +00:00
return nil, [][]string{}, err
2013-09-12 09:20:32 +00:00
}
t, err = t.New(file).Parse(string(data))
if err != nil {
2013-09-13 09:41:31 +00:00
return nil, [][]string{}, err
2013-09-12 09:20:32 +00:00
}
reg := regexp.MustCompile(TemplateLeft + "[ ]*template[ ]+\"([^\"]+)\"")
2013-09-12 09:20:32 +00:00
allsub := reg.FindAllStringSubmatch(string(data), -1)
for _, m := range allsub {
if len(m) == 2 {
tlook := t.Lookup(m[1])
if tlook != nil {
continue
}
if !HasTemplateExt(m[1]) {
2013-09-12 09:20:32 +00:00
continue
}
2013-10-30 15:02:53 +00:00
t, _, err = getTplDeep(root, m[1], file, t)
if err != nil {
return nil, [][]string{}, err
2013-09-12 09:20:32 +00:00
}
}
}
2013-09-13 09:41:31 +00:00
return t, allsub, nil
2013-09-12 09:20:32 +00:00
}
2013-09-13 05:57:40 +00:00
func getTemplate(root, file string, others ...string) (t *template.Template, err error) {
2013-09-12 09:20:32 +00:00
t = template.New(file).Delims(TemplateLeft, TemplateRight).Funcs(beegoTplFuncMap)
2013-09-13 09:41:31 +00:00
var submods [][]string
2013-10-30 15:02:53 +00:00
t, submods, err = getTplDeep(root, file, "", t)
2013-09-26 10:33:01 +00:00
if err != nil {
return nil, err
}
t, err = _getTemplate(t, root, submods, others...)
if err != nil {
return nil, err
}
return
}
func _getTemplate(t0 *template.Template, root string, submods [][]string, others ...string) (t *template.Template, err error) {
t = t0
2013-09-13 09:41:31 +00:00
for _, m := range submods {
if len(m) == 2 {
templ := t.Lookup(m[1])
if templ != nil {
continue
}
//first check filename
for _, otherfile := range others {
if otherfile == m[1] {
2013-09-26 10:33:01 +00:00
var submods1 [][]string
2013-10-30 15:02:53 +00:00
t, submods1, err = getTplDeep(root, otherfile, "", t)
2013-09-13 09:41:31 +00:00
if err != nil {
Trace("template parse file err:", err)
2013-09-26 10:33:01 +00:00
} else if submods1 != nil && len(submods1) > 0 {
t, err = _getTemplate(t, root, submods1, others...)
2013-09-13 09:41:31 +00:00
}
break
}
}
//second check define
for _, otherfile := range others {
fileabspath := filepath.Join(root, otherfile)
data, err := ioutil.ReadFile(fileabspath)
if err != nil {
continue
}
reg := regexp.MustCompile(TemplateLeft + "[ ]*define[ ]+\"([^\"]+)\"")
2013-09-13 09:41:31 +00:00
allsub := reg.FindAllStringSubmatch(string(data), -1)
for _, sub := range allsub {
if len(sub) == 2 && sub[1] == m[1] {
2013-09-26 10:33:01 +00:00
var submods1 [][]string
2013-10-30 15:02:53 +00:00
t, submods1, err = getTplDeep(root, otherfile, "", t)
2013-09-13 09:41:31 +00:00
if err != nil {
Trace("template parse file err:", err)
2013-09-26 10:33:01 +00:00
} else if submods1 != nil && len(submods1) > 0 {
t, err = _getTemplate(t, root, submods1, others...)
2013-09-13 09:41:31 +00:00
}
break
}
}
}
2013-09-13 05:57:40 +00:00
}
2013-09-13 09:41:31 +00:00
2013-09-13 05:57:40 +00:00
}
2013-09-12 09:20:32 +00:00
return
}