grafana-backuper/internal/config/config.go

57 lines
1.1 KiB
Go
Raw Permalink Normal View History

2024-07-01 00:54:05 +02:00
package config
import (
"errors"
"io"
"github.com/rs/zerolog"
2024-07-01 00:54:05 +02:00
)
type Config struct {
Debug bool
2024-07-01 00:54:05 +02:00
ForceCommits bool
JSONFormat bool
2024-07-01 00:54:05 +02:00
GrafanaURL string
GrafanaToken string
GitBranch string
GitEmail string
2024-07-01 00:54:05 +02:00
GitRepo string
GitUser string
GitPass string
GPGKey string
2024-08-19 20:22:41 +02:00
Quiet bool
Output io.Writer
Logger zerolog.Logger
2024-07-01 00:54:05 +02:00
}
func (c *Config) Validate() []error {
var errs []error
if c.GrafanaURL == "" {
errs = append(errs, errors.New("invalid grafana URL, must not be blank"))
}
if c.GrafanaToken == "" {
errs = append(errs, errors.New("invalid auth token for grafana, must not be blank"))
}
if c.GitRepo == "" {
errs = append(errs, errors.New("invalid repo url for git, must not be blank"))
}
if c.GitUser == "" {
errs = append(errs, errors.New("invalid username for git, must not be blank"))
}
if c.GitPass == "" {
errs = append(errs, errors.New("invalid password for git, must not be blank"))
}
if c.GitBranch == "" {
errs = append(errs, errors.New("invalid branch name for git, must not be blank"))
}
return errs
2024-07-01 00:54:05 +02:00
}