35f5df63e6
* Revert "Merge pull request #753 from gin-gonic/bug" This reverts commit556287ff08
, reversing changes made to32cab500ec
. * Revert "Merge pull request #744 from aviddiviner/logger-fix" This reverts commitc3bfd69303
, reversing changes made to9177f01c28
. * add custom Delims support * add some test for Delims * remove the empty line for import native package * remove unuseful comments
79 lines
1.6 KiB
Go
79 lines
1.6 KiB
Go
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package render
|
|
|
|
import (
|
|
"html/template"
|
|
"net/http"
|
|
)
|
|
|
|
type (
|
|
Delims struct {
|
|
Left string
|
|
Right string
|
|
}
|
|
|
|
HTMLRender interface {
|
|
Instance(string, interface{}) Render
|
|
}
|
|
|
|
HTMLProduction struct {
|
|
Template *template.Template
|
|
Delims Delims
|
|
}
|
|
|
|
HTMLDebug struct {
|
|
Files []string
|
|
Glob string
|
|
Delims Delims
|
|
}
|
|
|
|
HTML struct {
|
|
Template *template.Template
|
|
Name string
|
|
Data interface{}
|
|
}
|
|
)
|
|
|
|
var htmlContentType = []string{"text/html; charset=utf-8"}
|
|
|
|
func (r HTMLProduction) Instance(name string, data interface{}) Render {
|
|
return HTML{
|
|
Template: r.Template,
|
|
Name: name,
|
|
Data: data,
|
|
}
|
|
}
|
|
|
|
func (r HTMLDebug) Instance(name string, data interface{}) Render {
|
|
return HTML{
|
|
Template: r.loadTemplate(),
|
|
Name: name,
|
|
Data: data,
|
|
}
|
|
}
|
|
func (r HTMLDebug) loadTemplate() *template.Template {
|
|
if len(r.Files) > 0 {
|
|
return template.Must(template.New("").Delims(r.Delims.Left, r.Delims.Right).ParseFiles(r.Files...))
|
|
}
|
|
if len(r.Glob) > 0 {
|
|
return template.Must(template.New("").Delims(r.Delims.Left, r.Delims.Right).ParseGlob(r.Glob))
|
|
}
|
|
panic("the HTML debug render was created without files or glob pattern")
|
|
}
|
|
|
|
func (r HTML) Render(w http.ResponseWriter) error {
|
|
r.WriteContentType(w)
|
|
|
|
if len(r.Name) == 0 {
|
|
return r.Template.Execute(w, r.Data)
|
|
}
|
|
return r.Template.ExecuteTemplate(w, r.Name, r.Data)
|
|
}
|
|
|
|
func (r HTML) WriteContentType(w http.ResponseWriter) {
|
|
writeContentType(w, htmlContentType)
|
|
}
|