mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
c402265e88
Such placeholders are substituted by the corresponding environment variable values. Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/583
25 lines
523 B
Go
25 lines
523 B
Go
package envtemplate
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/valyala/fasttemplate"
|
|
)
|
|
|
|
// Replace replaces `%{ENV_VAR}` placeholders in b with the corresponding ENV_VAR values.
|
|
func Replace(b []byte) []byte {
|
|
if !bytes.Contains(b, []byte("%{")) {
|
|
// Fast path - nothing to replace.
|
|
return b
|
|
}
|
|
s := fasttemplate.ExecuteFuncString(string(b), "%{", "}", func(w io.Writer, tag string) (int, error) {
|
|
v := os.Getenv(tag)
|
|
if v == "" {
|
|
v = "%{" + tag + "}"
|
|
}
|
|
return w.Write([]byte(v))
|
|
})
|
|
return []byte(s)
|
|
}
|