forked from AcalephStorage/consul-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
send-notifs.go
140 lines (122 loc) · 3.48 KB
/
send-notifs.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package main
import (
"bytes"
"encoding/json"
"os/exec"
log "github.com/AcalephStorage/consul-alerts/Godeps/_workspace/src/github.com/Sirupsen/logrus"
"github.com/AcalephStorage/consul-alerts/Godeps/_workspace/src/github.com/imdario/mergo"
"github.com/AcalephStorage/consul-alerts/Godeps/_workspace/src/github.com/mitchellh/hashstructure"
"github.com/AcalephStorage/consul-alerts/notifier"
)
// NotifEngine handles notifications.
//
// To start NotifEngine:
// notifEngine := startNotifEngine()
//
// Tp stop NotifEngine (for cleanup):
// notifEngine.stop()
//
type NotifEngine struct {
inChan chan notifier.Messages
closeChan chan struct{}
}
func (n *NotifEngine) start() {
cleanup := false
for !cleanup {
select {
case messages := <-n.inChan:
n.sendBuiltin(messages)
n.sendCustom(messages)
case <-n.closeChan:
cleanup = true
}
}
}
func (n *NotifEngine) stop() {
close(n.closeChan)
}
func (n *NotifEngine) queueMessages(messages notifier.Messages) {
n.inChan <- messages
log.Println("messages sent for notification")
}
func (n *NotifEngine) sendBuiltin(messages notifier.Messages) {
log.Println("sendBuiltin running")
notifierMap := make(map[uint64]notifier.Notifier)
defaultNotifiers := builtinNotifiers()
messagesPerNotifier := make(map[uint64]notifier.Messages)
var hash uint64
var err error
for _, m := range messages {
// if notification list is empty -> notify by all the enabled notifiers
if len(m.NotifList) == 0 {
for _, notifier := range defaultNotifiers {
hash, err = hashstructure.Hash(notifier, nil)
if err != nil {
log.Error(err)
}
notifierMap[hash] = notifier
messagesPerNotifier[hash] = append(messagesPerNotifier[hash], m)
}
}
for notifName, enabled := range m.NotifList {
// get the default notifier
if defaultNotifier, defaultNotifierExists := defaultNotifiers[notifName]; defaultNotifierExists && enabled {
notif := defaultNotifier.Copy()
if varOverride, varOverrideExists := m.VarOverrides.GetNotifier(notifName); varOverrideExists {
err = mergo.MergeWithOverwrite(notif, varOverride)
if err != nil {
log.Error(err)
}
}
hash, err = hashstructure.Hash(notif, nil)
if err != nil {
log.Error(err)
}
notifierMap[hash] = notif
messagesPerNotifier[hash] = append(messagesPerNotifier[hash], m)
}
}
}
for hash, msgs := range messagesPerNotifier {
n := notifierMap[hash]
n.Notify(msgs)
}
}
func (n *NotifEngine) sendCustom(messages notifier.Messages) {
for notifName, notifCmd := range consulClient.CustomNotifiers() {
filteredMessages := make(notifier.Messages, 0)
for _, m := range messages {
if boolVal, exists := m.NotifList[notifName]; (exists && boolVal) || len(m.NotifList) == 0 {
filteredMessages = append(filteredMessages, m)
}
}
if len(filteredMessages) == 0 {
continue
}
data, err := json.Marshal(&filteredMessages)
if err != nil {
log.Println("Unable to read messages: ", err)
return
}
input := bytes.NewReader(data)
output := new(bytes.Buffer)
cmd := exec.Command(notifCmd)
cmd.Stdin = input
cmd.Stdout = output
cmd.Stderr = output
if err := cmd.Run(); err != nil {
log.Println("error running notifier: ", err)
} else {
log.Println(">>> notification sent to:", notifCmd)
}
log.Println(output)
}
}
func startNotifEngine() *NotifEngine {
notifEngine := &NotifEngine{
inChan: make(chan notifier.Messages),
closeChan: make(chan struct{}),
}
go notifEngine.start()
return notifEngine
}