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