linx-server/templates.go

72 lines
1.1 KiB
Go
Raw Normal View History

package main
import (
"bytes"
"io"
"path"
"path/filepath"
"github.com/GeertJohan/go.rice"
"github.com/flosch/pongo2"
)
type Pongo2Loader struct {
box *rice.Box
}
2015-09-29 01:58:50 +00:00
func NewPongo2TemplatesLoader() (*Pongo2Loader, error) {
fs := &Pongo2Loader{}
2015-09-29 01:58:50 +00:00
p2l, err := rice.FindBox("templates")
if err != nil {
return nil, err
}
fs.box = p2l
return fs, nil
}
func (fs *Pongo2Loader) Get(path string) (io.Reader, error) {
myBytes, err := fs.box.Bytes(path)
if err != nil {
return nil, err
}
return bytes.NewReader(myBytes), nil
}
func (fs *Pongo2Loader) Abs(base, name string) string {
me := path.Join(filepath.Dir(base), name)
return me
}
func populateTemplatesMap(tSet *pongo2.TemplateSet, tMap map[string]*pongo2.Template) error {
2015-10-06 06:51:49 +00:00
templates := []string{
"index.html",
2015-09-30 04:56:51 +00:00
"paste.html",
2015-10-09 01:48:06 +00:00
"api.html",
"404.html",
2015-09-29 03:46:43 +00:00
"401.html",
"oops.html",
"display/audio.html",
"display/image.html",
"display/video.html",
"display/pdf.html",
2015-09-30 16:06:23 +00:00
"display/bin.html",
2015-10-07 19:00:42 +00:00
"display/md.html",
"display/file.html",
}
for _, tName := range templates {
tpl, err := tSet.FromFile(tName)
if err != nil {
return err
}
tMap[tName] = tpl
}
return nil
}