-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathservice.go
49 lines (39 loc) · 1.14 KB
/
service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package templates
import (
"fmt"
"github.com/Masterminds/sprig/v3"
"github.com/argoproj/notifications-engine/pkg/services"
)
type Service interface {
FormatNotification(vars map[string]interface{}, templates ...string) (*services.Notification, error)
}
type service struct {
templaters map[string]services.Templater
}
func NewService(templates map[string]services.Notification) (*service, error) {
f := sprig.TxtFuncMap()
delete(f, "env")
delete(f, "expandenv")
svc := &service{templaters: map[string]services.Templater{}}
for name, cfg := range templates {
templater, err := cfg.GetTemplater(name, f)
if err != nil {
return nil, err
}
svc.templaters[name] = templater
}
return svc, nil
}
func (s *service) FormatNotification(vars map[string]interface{}, templates ...string) (*services.Notification, error) {
var notification services.Notification
for _, templateName := range templates {
templater, ok := s.templaters[templateName]
if !ok {
return nil, fmt.Errorf("template '%s' is not supported", templateName)
}
if err := templater(¬ification, vars); err != nil {
return nil, err
}
}
return ¬ification, nil
}