mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
a018b1d75e
Previously the `quotesEscape` function was escaping only double quotes. This wasn't enough, since the input string could contain other special chars, which must be escaped when put inside JSON string. For example, carriage return and line feed chars (\n\r), backslash char, etc. This led to the following issues, which were improperly fixed: - https://github.com/VictoriaMetrics/VictoriaMetrics/issues/890 - this issue was "fixed" by introducing the `crlfEscape` function, which led to unnecessary complications in user templates, while not fixing various corner cases such as backslash chars in the input string. See1de15ad490
- https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3139 - this issue was "fixed" by urlencoding the whole string passed to -external.alert.source command-line flag. This led to invalid urls, which couldn't be parsed by Grafana. See00c838353d
and4bd0244599
This commit properly encodes the input string passed to `quotesEscape`, so it can be safely embedded inside JSON strings. This commit deprecates crlfEscape template function and adds the following new template functions: - strvalue and stripDomain - these functions are supported by Prometheus, so they were added for compatibility purposes. - jsonEscape and htmlEscape for converting the input string to valid quoted JSON string and for html-escaping the input string, so it could be safely embedded as a plaintext into html. This commit also documents all supported template functions at https://docs.victoriametrics.com/vmalert.html#template-functions The deprecated crlfEscape function isn't documented on purpose, since its usefulness is negative in general case.
118 lines
3.6 KiB
Go
118 lines
3.6 KiB
Go
// Code generated by qtc from "funcs.qtpl". DO NOT EDIT.
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:3
|
|
package templates
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:3
|
|
import (
|
|
qtio422016 "io"
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
)
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:3
|
|
var (
|
|
_ = qtio422016.Copy
|
|
_ = qt422016.AcquireByteBuffer
|
|
)
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:3
|
|
func streamquotesEscape(qw422016 *qt422016.Writer, s string) {
|
|
//line app/vmalert/templates/funcs.qtpl:4
|
|
qw422016.N().J(s)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
func writequotesEscape(qq422016 qtio422016.Writer, s string) {
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
streamquotesEscape(qw422016, s)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
func quotesEscape(s string) string {
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
writequotesEscape(qb422016, s)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
return qs422016
|
|
//line app/vmalert/templates/funcs.qtpl:5
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:7
|
|
func streamjsonEscape(qw422016 *qt422016.Writer, s string) {
|
|
//line app/vmalert/templates/funcs.qtpl:8
|
|
qw422016.N().Q(s)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
func writejsonEscape(qq422016 qtio422016.Writer, s string) {
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
streamjsonEscape(qw422016, s)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
func jsonEscape(s string) string {
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
writejsonEscape(qb422016, s)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
return qs422016
|
|
//line app/vmalert/templates/funcs.qtpl:9
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:11
|
|
func streamhtmlEscape(qw422016 *qt422016.Writer, s string) {
|
|
//line app/vmalert/templates/funcs.qtpl:12
|
|
qw422016.E().S(s)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
func writehtmlEscape(qq422016 qtio422016.Writer, s string) {
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
streamhtmlEscape(qw422016, s)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
qt422016.ReleaseWriter(qw422016)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
}
|
|
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
func htmlEscape(s string) string {
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
writehtmlEscape(qb422016, s)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
qs422016 := string(qb422016.B)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
return qs422016
|
|
//line app/vmalert/templates/funcs.qtpl:13
|
|
}
|