mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			910 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			910 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package framework
 | 
						|
 | 
						|
import (
 | 
						|
	"bufio"
 | 
						|
	"bytes"
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
	"text/template"
 | 
						|
)
 | 
						|
 | 
						|
func executeTemplate(tpl string, data interface{}) (string, error) {
 | 
						|
	// Define the functions
 | 
						|
	funcs := map[string]interface{}{
 | 
						|
		"indent": funcIndent,
 | 
						|
	}
 | 
						|
 | 
						|
	// Parse the help template
 | 
						|
	t, err := template.New("root").Funcs(funcs).Parse(tpl)
 | 
						|
	if err != nil {
 | 
						|
		return "", fmt.Errorf("error parsing template: %s", err)
 | 
						|
	}
 | 
						|
 | 
						|
	// Execute the template and store the output
 | 
						|
	var buf bytes.Buffer
 | 
						|
	if err := t.Execute(&buf, data); err != nil {
 | 
						|
		return "", fmt.Errorf("error executing template: %s", err)
 | 
						|
	}
 | 
						|
 | 
						|
	return strings.TrimSpace(buf.String()), nil
 | 
						|
}
 | 
						|
 | 
						|
func funcIndent(count int, text string) string {
 | 
						|
	var buf bytes.Buffer
 | 
						|
	prefix := strings.Repeat(" ", count)
 | 
						|
	scan := bufio.NewScanner(strings.NewReader(text))
 | 
						|
	for scan.Scan() {
 | 
						|
		buf.WriteString(prefix + scan.Text() + "\n")
 | 
						|
	}
 | 
						|
 | 
						|
	return strings.TrimRight(buf.String(), "\n")
 | 
						|
}
 |