First configuration read
This commit is contained in:
parent
a26014399b
commit
9e702c4cdd
53
conf.go
Normal file
53
conf.go
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
// "flag"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Conf struct {
|
||||||
|
// Definitions []string
|
||||||
|
Streams []struct {
|
||||||
|
Cmd string
|
||||||
|
Filters []struct {
|
||||||
|
Regex []string
|
||||||
|
Retry uint
|
||||||
|
RetryPeriod string `yaml:"retry-period"`
|
||||||
|
Actions []struct {
|
||||||
|
Cmd string
|
||||||
|
After string `yaml:",omitempty"`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseConf(filename string) *Conf {
|
||||||
|
|
||||||
|
data, err := os.ReadFile(filename)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln("Failed to read configuration file:", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var conf Conf
|
||||||
|
err = yaml.Unmarshal(data, &conf)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln("Failed to parse configuration file:", err)
|
||||||
|
}
|
||||||
|
log.Println(conf)
|
||||||
|
|
||||||
|
yaml, err := yaml.Marshal(conf)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln("Failed to rewrite configuration file:", err)
|
||||||
|
}
|
||||||
|
log.Println(string(yaml))
|
||||||
|
return &conf
|
||||||
|
}
|
||||||
|
|
||||||
|
func parseArgs() map[string]string {
|
||||||
|
var args map[string]string
|
||||||
|
return args
|
||||||
|
}
|
2
go.mod
2
go.mod
@ -1,3 +1,5 @@
|
|||||||
module reaction
|
module reaction
|
||||||
|
|
||||||
go 1.19
|
go 1.19
|
||||||
|
|
||||||
|
require gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
|
3
go.sum
Normal file
3
go.sum
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
36
main.go
36
main.go
@ -30,8 +30,8 @@ func compileAction(action Action) compiledAction {
|
|||||||
return ca
|
return ca
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handle a log command
|
// Handle a log command
|
||||||
/// Must be started in a goroutine
|
// Must be started in a goroutine
|
||||||
func streamHandle(stream Stream, execQueue chan []string) {
|
func streamHandle(stream Stream, execQueue chan []string) {
|
||||||
log.Printf("streamHandle{%v}: start\n", stream.cmd)
|
log.Printf("streamHandle{%v}: start\n", stream.cmd)
|
||||||
cmd := exec.Command(stream.cmd[0], stream.cmd[1:]...)
|
cmd := exec.Command(stream.cmd[0], stream.cmd[1:]...)
|
||||||
@ -78,19 +78,21 @@ func execQueue() chan []string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
mockstreams := []Stream{Stream{
|
conf := parseConf("./reaction.yml")
|
||||||
[]string{"tail", "-f", "/home/ao/DOWN"},
|
conf = conf
|
||||||
[]Action{Action{
|
// mockstreams := []Stream{Stream{
|
||||||
[]string{"prout.dev"},
|
// []string{"tail", "-f", "/home/ao/DOWN"},
|
||||||
[]string{"touch", "/home/ao/DAMN"},
|
// []Action{Action{
|
||||||
}},
|
// []string{"prout.dev"},
|
||||||
}}
|
// []string{"touch", "/home/ao/DAMN"},
|
||||||
streams := mockstreams
|
// }},
|
||||||
log.Println(streams)
|
// }}
|
||||||
queue := execQueue()
|
// streams := mockstreams
|
||||||
for _, stream := range streams {
|
// log.Println(streams)
|
||||||
go streamHandle(stream, queue)
|
// queue := execQueue()
|
||||||
}
|
// for _, stream := range streams {
|
||||||
// Infinite wait
|
// go streamHandle(stream, queue)
|
||||||
<-make(chan bool)
|
// }
|
||||||
|
// // Infinite wait
|
||||||
|
// <-make(chan bool)
|
||||||
}
|
}
|
||||||
|
19
reaction.yml
Normal file
19
reaction.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
definitions:
|
||||||
|
- &iptablesban iptables -I reaction 1 -s <ip> -j block
|
||||||
|
- &iptablesunban iptables -D reaction 1 -s <ip> -j block
|
||||||
|
|
||||||
|
# regexes:
|
||||||
|
# ip: '(([0-9]{1,3}\.){3}[0-9]{1,3})|([0-9a-fA-F:]{2,90})'
|
||||||
|
|
||||||
|
streams:
|
||||||
|
- cmd: journalctl -fu phpfpm-nextcloud.service
|
||||||
|
filters:
|
||||||
|
- regex:
|
||||||
|
- '"message":"Login failed: .\+ (Remote IP: <ip>)"'
|
||||||
|
retry: 3
|
||||||
|
retry-period: 1h
|
||||||
|
actions:
|
||||||
|
- cmd: *iptablesban
|
||||||
|
- cmd: *iptablesunban
|
||||||
|
after: 1h
|
Loading…
Reference in New Issue
Block a user