mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-05 18:03:41 +00:00
38 lines
2.1 KiB
Go
38 lines
2.1 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
)
|
|
|
|
// Config contain global configuration
|
|
type Config struct {
|
|
ListenAddr string `flag:"listen-addr" desc:"HTTP listen address" default:":8080"`
|
|
TLS bool `flag:"tls" desc:"Activate TLS" default:"false"`
|
|
TLSCertFile string `flag:"tls-cert-file" desc:"TLS certificate file" default:"server.pem"`
|
|
TLSKeyFile string `flag:"tls-key-file" desc:"TLS key file" default:"server.key"`
|
|
TLSDomain string `flag:"tls-domain" desc:"TLS domain name used by ACME"`
|
|
NbWorkers int `flag:"nb-workers" desc:"Number of workers to start" default:"2"`
|
|
HookDefaultExt string `flag:"hook-default-ext" desc:"Default extension for hook scripts" default:"sh"`
|
|
HookTimeout int `flag:"hook-timeout" desc:"Maximum hook execution time in second" default:"10"`
|
|
HookLogDir string `flag:"hook-log-dir" desc:"Hook execution logs location" default:""`
|
|
ScriptDir string `flag:"scripts" desc:"Scripts location" default:"scripts"`
|
|
PasswdFile string `flag:"passwd-file" desc:"Password file for basic HTTP authentication" default:".htpasswd"`
|
|
LogLevel string `flag:"log-level" desc:"Log level (debug, info, warn, error)" default:"info"`
|
|
LogFormat string `flag:"log-format" desc:"Log format (json, text)" default:"text"`
|
|
LogHookOutput bool `flag:"log-hook-output" desc:"Log hook execution output" default:"false"`
|
|
LogHTTPRequest bool `flag:"log-http-request" desc:"Log HTTP request" default:"false"`
|
|
StaticDir string `flag:"static-dir" desc:"Static file directory to serve on /static path" default:""`
|
|
StaticPath string `flag:"static-path" desc:"Path to serve static file directory" default:"/static"`
|
|
NotificationURI string `flag:"notification-uri" desc:"Notification URI"`
|
|
TrustStoreFile string `flag:"trust-store-file" desc:"Trust store used by HTTP signature verifier (.pem or .p12)"`
|
|
}
|
|
|
|
// Validate configuration
|
|
func (c *Config) Validate() error {
|
|
if matched, _ := regexp.MatchString(`^/\w+$`, c.StaticPath); !matched {
|
|
return fmt.Errorf("invalid static path: %s", c.StaticPath)
|
|
}
|
|
return nil
|
|
}
|