nginx-proxy-manager/backend/internal/nginx/templates.go
2023-07-28 15:01:54 +10:00

62 lines
1.4 KiB
Go

package nginx
import (
"fmt"
"os"
"npm/internal/entity/certificate"
"npm/internal/entity/host"
"npm/internal/entity/upstream"
"npm/internal/logger"
"npm/internal/util"
"github.com/aymerick/raymond"
)
type Config struct {
Ipv4 bool
Ipv6 bool
}
// TemplateData is a struct
type TemplateData struct {
ConfDir string
Config Config
DataDir string
Host host.Template
Certificate certificate.Template
Upstream upstream.Model
}
func renderTemplate(template string, data TemplateData) (string, error) {
return raymond.Render(template, data)
}
func writeTemplate(filename, template string, data TemplateData, errorInfo string) error {
output, err := renderTemplate(template, data)
if err != nil {
errorInfo = err.Error()
}
output = util.CleanupWhitespace(output)
// Write some given error information to the end
if errorInfo != "" {
output = fmt.Sprintf("%s\n\n# =========================\n# ERROR:\n# %s\n# ========================\n", output, errorInfo)
}
// Write it. This will also write an error comment if generation failed
// nolint: gosec
writeErr := writeConfigFile(filename, output)
if err != nil {
return err
}
return writeErr
}
func writeConfigFile(filename, content string) error {
logger.Debug("Writing %s with:\n%s", filename, content)
// nolint: gosec
return os.WriteFile(filename, []byte(content), 0644)
}