-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
331 lines (314 loc) · 8.86 KB
/
main.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"math"
"os"
"os/exec"
"regexp"
"strconv"
"strings"
"time"
"github.com/hpcloud/tail"
"github.com/joliv/spark"
)
var (
ConfigFile = flag.String("config", "srvbot.json", "Config file to load")
)
type ConfigData struct {
Name string
Endpoints []*EndpointConfig
Groups []string
Commands map[string]*Command
Logs map[string]*Log
Monitors map[string]*MonitorConfig
}
type EndpointConfig struct {
Driver string
Options *json.RawMessage
e Endpoint
}
type Command struct {
Command string
Output bool
}
type Log struct {
File string
Regex string
// Live bool
Keep int
// Channels []string
lines []*tail.Line
}
type MonitorConfig struct {
Driver string
Options *json.RawMessage
monitor Monitor
track *MonitorTrack
}
var Config ConfigData
func main() {
ConfigBytes, err := ioutil.ReadFile(*ConfigFile)
if err != nil {
log.Fatalf("Error reading config file %s\n", err)
}
err = json.Unmarshal(ConfigBytes, &Config)
if err != nil {
log.Fatalf("Error parsing config file %s\n", err)
}
for _, endpointConfig := range Config.Endpoints {
log.Printf("Starting up %s handler", endpointConfig.Driver)
endpointConfig.e = endpointDrivers[endpointConfig.Driver](endpointConfig.Options)
endpointConfig.e.HandleMessage(Message)
endpointConfig.e.Run()
}
for name, logConfig := range Config.Logs {
go func(name string, logConfig *Log) {
logfile, err := tail.TailFile(logConfig.File, tail.Config{Location: &tail.SeekInfo{Whence: os.SEEK_END}, Follow: true, ReOpen: true})
if err != nil {
log.Printf("Error tailing file: %s", err)
}
var filter *regexp.Regexp
if logConfig.Regex != "" {
var err error
filter, err = regexp.Compile(logConfig.Regex)
if err != nil {
log.Printf("Error compiling regex: %s", err)
}
}
for line := range logfile.Lines {
if line.Err != nil {
log.Printf("Error tailing file: %s", line.Err)
}
if filter == nil || filter.MatchString(line.Text) {
logConfig.lines = append(logConfig.lines, line)
if len(logConfig.lines) > logConfig.Keep {
logConfig.lines = logConfig.lines[len(logConfig.lines)-logConfig.Keep:]
}
/*if logConfig.Live {
for _, channel := range logConfig.Channels {
c.Privmsg(channel, line.Text)
}
}*/
}
}
}(name, logConfig)
}
for _, monitorConfig := range Config.Monitors {
monitorConfig.monitor = monitorDrivers[monitorConfig.Driver](monitorConfig.Options)
monitorConfig.track = newMonitorTrack()
monitorConfig.track.Start(monitorConfig.monitor)
}
quit := make(chan bool)
<-quit
}
func Message(text string, source User, channel string, response MessageTarget) {
if source.HasRights() {
data := ParseLine(text)
if !response.IsPublic() {
data = append([]string{Config.Name}, data...)
}
forMe := false
if data[0] == Config.Name {
forMe = true
}
for _, group := range Config.Groups {
if group == data[0] {
forMe = true
break
}
}
if !forMe {
return
}
if len(data) < 2 {
return
}
if cmd, ok := Config.Commands[data[1]]; ok {
args := cmd.Command
for pos, param := range data {
args = strings.Replace(args, fmt.Sprintf("$%d", pos), param, -1)
}
cmdexec := exec.Command("bash", "-c", args)
output, _ := cmdexec.CombinedOutput()
if cmd.Output {
lines := strings.Split(string(output), "\n")
for _, line := range lines {
response.SendMessage(line)
}
}
} else if log, ok := Config.Logs[data[1]]; ok {
for _, line := range log.lines {
response.SendMessage("%s", line.Text)
}
} else if data[1] == "get" {
if len(data) < 3 {
response.SendMessage("Please provide an expression to compute")
return
}
c, err := Decode(data[2])
if err != nil {
response.SendMessage("Error parsing expression: %s", err)
return
}
val, err := RunCompute(c)
if err != nil {
response.SendMessage("Error computing expression: %s", err)
return
}
response.SendMessage("%s = %v", data[2], val)
} else if data[1] == "monitor" {
if len(data) < 3 {
if response.IsPublic() {
response.SendMessage("Responding in PM")
}
source.SendMessage("List of available monitors")
for name, _ := range Config.Monitors {
source.SendMessage(name)
}
return
}
if monitor, ok := Config.Monitors[data[2]]; ok {
if len(data) < 4 {
if response.IsPublic() {
response.SendMessage("Responding in PM")
}
source.SendMessage("Available monitor commands: variables, get")
return
}
switch data[3] {
case "variables":
if response.IsPublic() {
response.SendMessage("Responding in PM")
}
variables := monitor.monitor.GetVariables()
if len(data) > 4 {
regex, err := regexp.Compile("(?i)" + data[4])
if err != nil {
source.SendMessage("Error compiling regex: %s", err)
return
}
newvars := []string{}
for _, name := range variables {
if regex.MatchString(name) {
newvars = append(newvars, name)
}
}
variables = newvars
}
if len(variables) > 10 {
if len(data) > 4 {
source.SendMessage("There are over %d variables in monitor %s matching %s, filter using `monitor %s variables <regex>`", len(variables), data[2], data[4], data[2])
} else {
source.SendMessage("There are over %d variables in monitor %s, filter using `monitor %s variables <regex>`", len(variables), data[2], data[2])
}
} else {
if len(data) > 4 {
source.SendMessage("List of %d variables in monitor %s matching %s", len(variables), data[2], data[4])
} else {
source.SendMessage("List of %d variables in monitor %s", len(variables), data[2])
}
for _, name := range variables {
source.SendMessage(name)
}
}
case "get":
if len(data) < 5 {
response.SendMessage("Please specify a variable or variables to retrieve")
return
}
variables := data[4:]
values := monitor.monitor.GetValues(variables)
for _, variable := range variables {
if value, ok := values[variable]; ok {
response.SendMessage("%s = %v", variable, value)
}
}
case "track":
if len(data) < 5 {
if response.IsPublic() {
response.SendMessage("Responding in PM")
}
source.SendMessage("History tracking for %d variables", len(monitor.track.Variables))
for variable, vt := range monitor.track.Variables {
source.SendMessage("%s = %d items", variable, vt.History)
}
return
}
if len(data) < 6 {
if vt, ok := monitor.track.Variables[data[4]]; ok {
response.SendMessage("Not tracking history for variable %s of monitor %s", data[4], data[3])
} else {
response.SendMessage("History tracking for variable %s of monitor %s set to %v items", data[4], data[3], vt.History)
}
return
}
h, err := strconv.ParseInt(data[5], 10, 32)
if err != nil {
response.SendMessage("Error parsing %s: %s", data[5], err)
return
}
fmt.Println(monitor.track, data[4], h)
monitor.track.SetTrack(data[4], int(h))
response.SendMessage("History tracking for variable %s of monitor %s set to %v items", data[4], data[3], h)
case "interval":
if len(data) < 5 {
response.SendMessage("Interval for monitor %s set to %v", data[3], monitor.track.Interval)
return
}
interval, err := strconv.ParseInt(data[4], 10, 32)
if err != nil {
response.SendMessage("Error parsing %s: %s", data[4], err)
return
}
monitor.track.Interval = int(interval)
monitor.track.timer.Reset(time.Second * time.Duration(interval))
response.SendMessage("Interval for monitor %s set to %v", data[3], interval)
case "spark":
if len(data) < 5 {
response.SendMessage("Please specify a variable to display")
return
}
vt, ok := monitor.track.Variables[data[4]]
if !ok {
response.SendMessage("Not tracking that variable")
return
}
values := make([]float64, len(vt.Data))
high := -math.MaxFloat64
low := math.MaxFloat64
for i, val := range vt.Data {
switch tt := val.(type) {
case float64:
values[i] = tt
case float32:
values[i] = float64(tt)
case uint32:
values[i] = float64(tt)
case uint64:
values[i] = float64(tt)
case int32:
values[i] = float64(tt)
case int64:
values[i] = float64(tt)
default:
response.SendMessage("Variable is of type %t, cannot spark", tt)
}
if values[i] > high {
high = values[i]
}
if values[i] < low {
low = values[i]
}
}
response.SendMessage("%s: %s High: %v Low: %v", data[4], spark.Line(values), high, low)
default:
response.SendMessage("Monitor command `%s` not recognized", data[3])
}
}
}
}
}