12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- //
- package ghttp
- import (
- "github.com/gogf/gf/os/gcfg"
- "github.com/gogf/gf/os/gview"
- "github.com/gogf/gf/util/gmode"
- "github.com/gogf/gf/util/gutil"
- )
- // WriteTpl parses and responses given template file.
- // The parameter <params> specifies the template variables for parsing.
- func (r *Response) WriteTpl(tpl string, params ...gview.Params) error {
- if b, err := r.ParseTpl(tpl, params...); err != nil {
- if !gmode.IsProduct() {
- r.Write("Template Parsing Error: " + err.Error())
- }
- return err
- } else {
- r.Write(b)
- }
- return nil
- }
- // WriteTplDefault parses and responses the default template file.
- // The parameter <params> specifies the template variables for parsing.
- func (r *Response) WriteTplDefault(params ...gview.Params) error {
- if b, err := r.ParseTplDefault(params...); err != nil {
- if !gmode.IsProduct() {
- r.Write("Template Parsing Error: " + err.Error())
- }
- return err
- } else {
- r.Write(b)
- }
- return nil
- }
- // WriteTplContent parses and responses the template content.
- // The parameter <params> specifies the template variables for parsing.
- func (r *Response) WriteTplContent(content string, params ...gview.Params) error {
- if b, err := r.ParseTplContent(content, params...); err != nil {
- if !gmode.IsProduct() {
- r.Write("Template Parsing Error: " + err.Error())
- }
- return err
- } else {
- r.Write(b)
- }
- return nil
- }
- // ParseTpl parses given template file <tpl> with given template variables <params>
- // and returns the parsed template content.
- func (r *Response) ParseTpl(tpl string, params ...gview.Params) (string, error) {
- return r.Request.GetView().Parse(tpl, r.buildInVars(params...))
- }
- // ParseDefault parses the default template file with params.
- func (r *Response) ParseTplDefault(params ...gview.Params) (string, error) {
- return r.Request.GetView().ParseDefault(r.buildInVars(params...))
- }
- // ParseTplContent parses given template file <file> with given template parameters <params>
- // and returns the parsed template content.
- func (r *Response) ParseTplContent(content string, params ...gview.Params) (string, error) {
- return r.Request.GetView().ParseContent(content, r.buildInVars(params...))
- }
- // buildInVars merges build-in variables into <params> and returns the new template variables.
- // TODO performance improving.
- func (r *Response) buildInVars(params ...map[string]interface{}) map[string]interface{} {
- m := gutil.MapMergeCopy(r.Request.viewParams)
- if len(params) > 0 {
- gutil.MapMerge(m, params[0])
- }
- // Retrieve custom template variables from request object.
- gutil.MapMerge(m, map[string]interface{}{
- "Form": r.Request.GetFormMap(),
- "Query": r.Request.GetQueryMap(),
- "Request": r.Request.GetMap(),
- "Cookie": r.Request.Cookie.Map(),
- "Session": r.Request.Session.Map(),
- })
- // Note that it should assign no Config variable to template
- // if there's no configuration file.
- if c := gcfg.Instance(); c.Available() {
- m["Config"] = c.GetMap(".")
- }
- return m
- }
|