2021-02-06 15:17:35 +00:00
|
|
|
package cfg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
minServerPort = 1000
|
|
|
|
maxServerPort = 65535
|
|
|
|
)
|
|
|
|
|
|
|
|
type AppSettings struct {
|
2021-10-12 20:38:26 +00:00
|
|
|
VersionMode bool
|
|
|
|
MetricsPort int
|
|
|
|
Fail2BanSocketPath string
|
|
|
|
FileCollectorPath string
|
|
|
|
FileCollectorEnabled bool
|
2021-02-06 15:17:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func Parse() *AppSettings {
|
|
|
|
appSettings := &AppSettings{}
|
|
|
|
flag.BoolVar(&appSettings.VersionMode, "version", false, "show version info and exit")
|
|
|
|
flag.IntVar(&appSettings.MetricsPort, "port", 9191, "port to use for the metrics server")
|
2021-08-29 11:50:53 +00:00
|
|
|
flag.StringVar(&appSettings.Fail2BanSocketPath, "socket", "", "path to the fail2ban server socket")
|
2021-10-12 20:38:26 +00:00
|
|
|
flag.BoolVar(&appSettings.FileCollectorEnabled, "collector.textfile", false, "enable the textfile collector")
|
|
|
|
flag.StringVar(&appSettings.FileCollectorPath, "collector.textfile.directory", "", "directory to read text files with metrics from")
|
2021-02-06 15:17:35 +00:00
|
|
|
|
2021-10-15 18:02:26 +00:00
|
|
|
// deprecated: to be removed in next version
|
|
|
|
_ = flag.String("db", "", "path to the fail2ban sqlite database (removed)")
|
|
|
|
|
2021-02-06 15:17:35 +00:00
|
|
|
flag.Parse()
|
|
|
|
appSettings.validateFlags()
|
|
|
|
return appSettings
|
|
|
|
}
|
|
|
|
|
|
|
|
func (settings *AppSettings) validateFlags() {
|
|
|
|
var flagsValid = true
|
|
|
|
if !settings.VersionMode {
|
2021-10-15 18:02:26 +00:00
|
|
|
if settings.Fail2BanSocketPath == "" {
|
|
|
|
fmt.Println("fail2ban socket path must not be blank")
|
2021-02-06 15:17:35 +00:00
|
|
|
flagsValid = false
|
|
|
|
}
|
|
|
|
if settings.MetricsPort < minServerPort || settings.MetricsPort > maxServerPort {
|
|
|
|
fmt.Printf("invalid server port, must be within %d and %d (found %d)\n",
|
|
|
|
minServerPort, maxServerPort, settings.MetricsPort)
|
|
|
|
flagsValid = false
|
|
|
|
}
|
2021-10-12 20:38:26 +00:00
|
|
|
if settings.FileCollectorEnabled && settings.FileCollectorPath == "" {
|
|
|
|
fmt.Printf("file collector directory path must not be empty if collector enabled\n")
|
|
|
|
flagsValid = false
|
|
|
|
}
|
2021-02-06 15:17:35 +00:00
|
|
|
}
|
|
|
|
if !flagsValid {
|
|
|
|
flag.Usage()
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|