gin/render/html.go

68 lines
1.4 KiB
Go
Raw Normal View History

2015-05-22 17:21:23 +00:00
// 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 (
2015-05-18 13:45:24 +00:00
HTMLRender interface {
Instance(string, interface{}) Render
}
2015-05-18 13:45:24 +00:00
HTMLProduction struct {
Template *template.Template
}
2015-05-18 13:45:24 +00:00
HTMLDebug struct {
Files []string
Glob string
}
2015-05-18 13:45:24 +00:00
HTML struct {
Template *template.Template
Name string
Data interface{}
}
)
var htmlContentType = []string{"text/html; charset=utf-8"}
2015-05-22 02:44:29 +00:00
2015-05-18 13:45:24 +00:00
func (r HTMLProduction) Instance(name string, data interface{}) Render {
return HTML{
Template: r.Template,
Name: name,
Data: data,
}
}
2015-05-18 13:45:24 +00:00
func (r HTMLDebug) Instance(name string, data interface{}) Render {
return HTML{
Template: r.loadTemplate(),
Name: name,
Data: data,
}
}
2015-05-18 13:45:24 +00:00
func (r HTMLDebug) loadTemplate() *template.Template {
if len(r.Files) > 0 {
2015-05-18 13:45:24 +00:00
return template.Must(template.ParseFiles(r.Files...))
}
if len(r.Glob) > 0 {
2015-05-21 18:27:25 +00:00
return template.Must(template.ParseGlob(r.Glob))
}
2015-05-18 13:45:24 +00:00
panic("the HTML debug render was created without files or glob pattern")
}
2015-06-04 03:25:21 +00:00
func (r HTML) Render(w http.ResponseWriter) error {
w.Header()["Content-Type"] = htmlContentType
2015-05-31 22:15:16 +00:00
if len(r.Name) == 0 {
return r.Template.Execute(w, r.Data)
} else {
return r.Template.ExecuteTemplate(w, r.Name, r.Data)
}
}