Skip to content

Commit 8c948ac

Browse files
committed
add Sprig functions to go templates
fixes #1121
1 parent 9d3fc20 commit 8c948ac

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

go.mod

+9
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ require github.com/pkg/errors v0.9.1 // indirect
3131

3232
require (
3333
firebase.google.com/go/v4 v4.14.0
34+
github.com/Masterminds/sprig/v3 v3.2.3
3435
github.com/SherClockHolmes/webpush-go v1.3.0
3536
github.com/microcosm-cc/bluemonday v1.0.26
3637
github.com/prometheus/client_golang v1.19.1
@@ -45,6 +46,8 @@ require (
4546
cloud.google.com/go/iam v1.1.8 // indirect
4647
cloud.google.com/go/longrunning v0.5.7 // indirect
4748
github.com/AlekSi/pointer v1.2.0 // indirect
49+
github.com/Masterminds/goutils v1.1.1 // indirect
50+
github.com/Masterminds/semver/v3 v3.2.0 // indirect
4851
github.com/MicahParks/keyfunc v1.9.0 // indirect
4952
github.com/aymerick/douceur v0.2.0 // indirect
5053
github.com/beorn7/perks v1.0.1 // indirect
@@ -63,12 +66,18 @@ require (
6366
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
6467
github.com/googleapis/gax-go/v2 v2.12.4 // indirect
6568
github.com/gorilla/css v1.0.1 // indirect
69+
github.com/huandu/xstrings v1.3.3 // indirect
70+
github.com/imdario/mergo v0.3.11 // indirect
6671
github.com/kr/text v0.2.0 // indirect
72+
github.com/mitchellh/copystructure v1.0.0 // indirect
73+
github.com/mitchellh/reflectwalk v1.0.0 // indirect
6774
github.com/pmezard/go-difflib v1.0.0 // indirect
6875
github.com/prometheus/client_model v0.6.1 // indirect
6976
github.com/prometheus/common v0.53.0 // indirect
7077
github.com/prometheus/procfs v0.14.0 // indirect
7178
github.com/russross/blackfriday/v2 v2.1.0 // indirect
79+
github.com/shopspring/decimal v1.2.0 // indirect
80+
github.com/spf13/cast v1.3.1 // indirect
7281
github.com/stretchr/objx v0.5.2 // indirect
7382
github.com/xrash/smetrics v0.0.0-20240312152122-5f08fbb34913 // indirect
7483
go.opencensus.io v0.24.0 // indirect

server/server.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import (
2727
"time"
2828
"unicode/utf8"
2929

30+
"github.com/Masterminds/sprig/v3"
3031
"github.com/emersion/go-smtp"
3132
"github.com/gorilla/websocket"
3233
"github.com/prometheus/client_golang/prometheus/promhttp"
@@ -1128,7 +1129,7 @@ func replaceTemplate(tpl string, source string) (string, error) {
11281129
if err := json.Unmarshal([]byte(source), &data); err != nil {
11291130
return "", errHTTPBadRequestTemplateMessageNotJSON
11301131
}
1131-
t, err := template.New("").Parse(tpl)
1132+
t, err := template.New("").Funcs(sprig.FuncMap()).Parse(tpl)
11321133
if err != nil {
11331134
return "", errHTTPBadRequestTemplateInvalid
11341135
}

server/server_test.go

+33
Original file line numberDiff line numberDiff line change
@@ -2853,6 +2853,39 @@ template ""}}`,
28532853
}
28542854
}
28552855

2856+
func TestServer_MessageTemplate_SprigFunctions(t *testing.T) {
2857+
t.Parallel()
2858+
s := newTestServer(t, newTestConfig(t))
2859+
bodies := []string{
2860+
`{"foo":"bar","nested":{"title":"here"}}`,
2861+
`{"topic":"ntfy-test"}`,
2862+
`{"topic":"another-topic"}`,
2863+
}
2864+
templates := []string{
2865+
`{{.foo | upper}} is {{.nested.title | repeat 3}}`,
2866+
`{{if hasPrefix "ntfy-" .topic}}Topic: {{trimPrefix "ntfy-" .topic}}{{ else }}Topic: {{.topic}}{{end}}`,
2867+
`{{if hasPrefix "ntfy-" .topic}}Topic: {{trimPrefix "ntfy-" .topic}}{{ else }}Topic: {{.topic}}{{end}}`,
2868+
}
2869+
targets := []string{
2870+
`BAR is hereherehere`,
2871+
`Topic: test`,
2872+
`Topic: another-topic`,
2873+
}
2874+
for i, body := range bodies {
2875+
template := templates[i]
2876+
target := targets[i]
2877+
t.Run(template, func(t *testing.T) {
2878+
response := request(t, s, "PUT", `/mytopic`, body, map[string]string{
2879+
"Template": "yes",
2880+
"Message": template,
2881+
})
2882+
require.Equal(t, 200, response.Code)
2883+
m := toMessage(t, response.Body.String())
2884+
require.Equal(t, target, m.Message)
2885+
})
2886+
}
2887+
}
2888+
28562889
func newTestConfig(t *testing.T) *Config {
28572890
conf := NewConfig()
28582891
conf.BaseURL = "http://127.0.0.1:12345"

0 commit comments

Comments
 (0)