2017-08-11 17:45:42 +02:00
|
|
|
package config
|
2017-08-10 20:11:35 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2017-08-11 19:59:19 +02:00
|
|
|
"fmt"
|
2017-08-10 20:11:35 +02:00
|
|
|
"os"
|
|
|
|
"regexp"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/genofire/logmania/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type NotifyState struct {
|
2017-08-11 19:59:19 +02:00
|
|
|
Hostname map[string]string `json:"hostname"`
|
|
|
|
HostTo map[string]map[string]bool `json:"host_to"`
|
|
|
|
MaxPrioIn map[string]log.LogLevel `json:"maxLevel"`
|
|
|
|
RegexIn map[string]map[string]bool `json:"regexIn"`
|
|
|
|
regexIn map[string]map[string]*regexp.Regexp `json:"-"`
|
2017-08-10 20:11:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (state *NotifyState) SendTo(e *log.Entry) []string {
|
|
|
|
if to, ok := state.HostTo[e.Hostname]; ok {
|
|
|
|
var toList []string
|
2017-08-11 19:59:19 +02:00
|
|
|
for toEntry, _ := range to {
|
2017-08-11 17:45:42 +02:00
|
|
|
if lvl := state.MaxPrioIn[toEntry]; e.Level < lvl {
|
2017-08-10 20:11:35 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
toList = append(toList, toEntry)
|
|
|
|
}
|
2017-08-11 19:59:19 +02:00
|
|
|
if hostname, ok := state.Hostname[e.Hostname]; ok {
|
|
|
|
e.Hostname = hostname
|
|
|
|
}
|
2017-08-10 20:11:35 +02:00
|
|
|
return toList
|
2017-08-11 19:59:19 +02:00
|
|
|
} else {
|
|
|
|
state.HostTo[e.Hostname] = make(map[string]bool)
|
2017-08-10 20:11:35 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ReadStateFile(path string) *NotifyState {
|
2017-08-11 19:59:19 +02:00
|
|
|
var state NotifyState
|
2017-08-10 20:11:35 +02:00
|
|
|
if f, err := os.Open(path); err == nil { // transform data to legacy meshviewer
|
2017-08-11 19:59:19 +02:00
|
|
|
if err = json.NewDecoder(f).Decode(&state); err == nil {
|
|
|
|
fmt.Println("loaded", len(state.HostTo), "hosts")
|
|
|
|
state.regexIn = make(map[string]map[string]*regexp.Regexp)
|
|
|
|
return &state
|
2017-08-10 20:11:35 +02:00
|
|
|
} else {
|
2017-08-11 19:59:19 +02:00
|
|
|
fmt.Println("failed to unmarshal nodes:", err)
|
2017-08-10 20:11:35 +02:00
|
|
|
}
|
|
|
|
} else {
|
2017-08-11 19:59:19 +02:00
|
|
|
fmt.Println("failed to open state notify file: ", path, ":", err)
|
2017-08-10 20:11:35 +02:00
|
|
|
}
|
|
|
|
return &NotifyState{
|
|
|
|
Hostname: make(map[string]string),
|
2017-08-11 19:59:19 +02:00
|
|
|
HostTo: make(map[string]map[string]bool),
|
2017-08-10 20:11:35 +02:00
|
|
|
MaxPrioIn: make(map[string]log.LogLevel),
|
2017-08-11 19:59:19 +02:00
|
|
|
RegexIn: make(map[string]map[string]bool),
|
|
|
|
regexIn: make(map[string]map[string]*regexp.Regexp),
|
2017-08-10 20:11:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (state *NotifyState) Saver(path string) {
|
|
|
|
c := time.Tick(time.Minute)
|
|
|
|
|
|
|
|
for range c {
|
|
|
|
state.SaveJSON(path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SaveJSON to path
|
|
|
|
func (state *NotifyState) SaveJSON(outputFile string) {
|
|
|
|
tmpFile := outputFile + ".tmp"
|
|
|
|
|
|
|
|
f, err := os.OpenFile(tmpFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewEncoder(f).Encode(state)
|
|
|
|
if err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
f.Close()
|
|
|
|
if err := os.Rename(tmpFile, outputFile); err != nil {
|
|
|
|
log.Panic(err)
|
|
|
|
}
|
|
|
|
}
|