Compare commits

..

No commits in common. "main" and "1.0.1" have entirely different histories.
main ... 1.0.1

2 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,4 @@
.dockerignore .dockerignore
.drone.yml
.git* .git*
Dockerfile Dockerfile
data data

View File

@ -11,13 +11,13 @@ import (
const ( const (
messageTemplate = "\U0001f6a8" + messageTemplate = "\U0001f6a8" +
` **New alerts:** @room{{ range .Alerts }} ` **Alerts for group "_{{ .GroupKey }}_":**{{ range .Alerts }}
` + "\u2022" + ` {{ if eq .Status "` + StatusResolved + `" }}` + "\u2705" + ` + "\u2022" + ` {{ with .Labels.severity }}{{ if eq . "critical" }}` + "\U0001f525" +
`{{ else }}{{ with .Labels.severity }}{{ if eq . "critical" }}` + "\U0001f525" +
`{{ else if eq . "warning" }}` + "\U0001f4e2" + `{{ else if eq . "warning" }}` + "\U0001f4e2" +
`{{ else }}` + "\U0001f514" + `{{ else }}` + "\U0001f514" +
`{{ end }}{{ else }}` + "\U0001f514" + `{{ end }}{{ else }}` + "\U0001f514" +
`{{ end }}{{ end }} {{ .Annotations.description }}{{ end }}` `{{ end }} {{ .Annotations.description }}{{ end }}
@room`
) )
func (s Server) handleWebhook(w http.ResponseWriter, r *http.Request) { func (s Server) handleWebhook(w http.ResponseWriter, r *http.Request) {
@ -40,6 +40,11 @@ func (s Server) handleWebhook(w http.ResponseWriter, r *http.Request) {
return return
} }
if payload.Status != StatusFiring {
writeStatus(w, http.StatusOK)
return
}
var message bytes.Buffer var message bytes.Buffer
err = s.tmpl.Execute(&message, payload) err = s.tmpl.Execute(&message, payload)
if err != nil { if err != nil {