mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 10:24:24 -05:00
31 lines
594 B
Go
31 lines
594 B
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
package internal
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"embed"
|
||
|
"fmt"
|
||
|
"text/template"
|
||
|
)
|
||
|
|
||
|
type templatePreparer struct{}
|
||
|
|
||
|
func (p templatePreparer) template(fs embed.FS, templateFile string, templateData any) (*bytes.Buffer, error) {
|
||
|
templates, err := template.ParseFS(fs, templateFile)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("parse templates: %w", err)
|
||
|
}
|
||
|
|
||
|
buf := bytes.NewBuffer(nil)
|
||
|
|
||
|
if err = templates.Execute(buf, templateData); err != nil {
|
||
|
return nil, fmt.Errorf("execute template: %w", err)
|
||
|
}
|
||
|
|
||
|
return buf, nil
|
||
|
}
|