mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-28 16:45:32 +00:00
87 lines
1.8 KiB
Go
87 lines
1.8 KiB
Go
package functions
|
|
|
|
import (
|
|
"html/template"
|
|
"io"
|
|
"io/fs"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
var embed_cache sync.Map
|
|
|
|
// INFO: We initialize the cache in both functions, which is only valid if both of these get
|
|
// called in the same context, eg. when creating a template engine.
|
|
func EmbedSafe(fs fs.FS) func(string) template.HTML {
|
|
embed_cache.Clear()
|
|
return func(path string) template.HTML {
|
|
path = strings.TrimSpace(path)
|
|
path = filepath.Clean(path)
|
|
val, err := getFileData(fs, path)
|
|
if err != nil {
|
|
return template.HTML("")
|
|
}
|
|
|
|
return template.HTML(val)
|
|
}
|
|
}
|
|
|
|
func Embed(fs fs.FS) func(string) string {
|
|
embed_cache.Clear()
|
|
return func(path string) string {
|
|
path = strings.TrimSpace(path)
|
|
path = filepath.Clean(path)
|
|
val, err := getFileData(fs, path)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
return string(val)
|
|
}
|
|
}
|
|
|
|
func getFileData(fs fs.FS, path string) ([]byte, error) {
|
|
if val, ok := embed_cache.Load(path); ok {
|
|
return val.([]byte), nil
|
|
}
|
|
|
|
f, err := fs.Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer f.Close()
|
|
|
|
data, err := io.ReadAll(f)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
embed_cache.Store(path, data)
|
|
return data, nil
|
|
}
|
|
|
|
func EmbedXSLT(fs fs.FS) func(string) template.HTML {
|
|
embed_cache.Clear()
|
|
return func(path string) template.HTML {
|
|
path = strings.TrimSpace(path)
|
|
path = filepath.Clean(path)
|
|
fn := filepath.Base(path)
|
|
ext := filepath.Ext(fn)
|
|
fn = fn[:len(fn)-len(ext)]
|
|
|
|
if (ext != ".xsl" && ext != ".xslt") || ext == "" || fn == "" {
|
|
return template.HTML("[ERROR: " + "file is not an XSLT file" + "]")
|
|
}
|
|
|
|
val, err := getFileData(fs, path)
|
|
if err != nil {
|
|
return template.HTML("[ERROR: " + err.Error() + "]")
|
|
}
|
|
|
|
src := "<script id=\"" + fn + "\" type=\"application/xml\">\n" + string(val) + "\n</script>"
|
|
|
|
return template.HTML(src)
|
|
}
|
|
}
|