2022-02-13 10:52:19 +01:00
|
|
|
// Copyright 2022 - Offen Authors <hioffen@posteo.de>
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2022-05-08 11:20:38 +02:00
|
|
|
import (
|
2022-12-22 14:37:51 +01:00
|
|
|
"crypto/x509"
|
|
|
|
"encoding/pem"
|
2022-05-08 11:20:38 +02:00
|
|
|
"fmt"
|
2022-10-12 21:15:17 +02:00
|
|
|
"os"
|
2022-05-08 11:20:38 +02:00
|
|
|
"regexp"
|
2023-08-24 19:33:47 +02:00
|
|
|
"strconv"
|
2022-05-08 11:20:38 +02:00
|
|
|
"time"
|
|
|
|
)
|
2022-02-13 10:52:19 +01:00
|
|
|
|
|
|
|
// Config holds all configuration values that are expected to be set
|
|
|
|
// by users.
|
|
|
|
type Config struct {
|
2023-08-27 20:14:59 +02:00
|
|
|
AwsS3BucketName string `env:"AWS_S3_BUCKET_NAME"`
|
|
|
|
AwsS3Path string `env:"AWS_S3_PATH"`
|
|
|
|
AwsEndpoint string `envDefault:"s3.amazonaws.com"`
|
|
|
|
AwsEndpointProto string `envDefault:"https"`
|
|
|
|
AwsEndpointInsecure bool
|
|
|
|
AwsEndpointCACert CertDecoder `env:"AWS_ENDPOINT_CA_CERT"`
|
|
|
|
AwsStorageClass string
|
|
|
|
AwsAccessKeyID string `env:"AWS_ACCESS_KEY_ID"`
|
|
|
|
AwsAccessKeyIDFile string `env:"AWS_ACCESS_KEY_ID_FILE,file"`
|
|
|
|
AwsSecretAccessKey string
|
|
|
|
AwsSecretAccessKeyFile string `env:"AWS_SECRET_ACCESS_KEY_FILE,file"`
|
|
|
|
AwsIamRoleEndpoint string
|
|
|
|
AwsPartSize int64
|
|
|
|
BackupCompression CompressionType `envDefault:"gz"`
|
|
|
|
BackupSources string `envDefault:"/backup"`
|
|
|
|
BackupFilename string `envDefault:"backup-%Y-%m-%dT%H-%M-%S.{{ .Extension }}"`
|
|
|
|
BackupFilenameExpand bool
|
|
|
|
BackupLatestSymlink string
|
|
|
|
BackupArchive string `envDefault:"/archive"`
|
|
|
|
BackupRetentionDays int32 `envDefault:"-1"`
|
|
|
|
BackupPruningLeeway time.Duration `envDefault:"1m"`
|
|
|
|
BackupPruningPrefix string
|
|
|
|
BackupStopContainerLabel string `envDefault:"true"`
|
|
|
|
BackupFromSnapshot bool
|
|
|
|
BackupExcludeRegexp RegexpDecoder
|
|
|
|
BackupSkipBackendsFromPrune []string
|
|
|
|
GpgPassphrase string
|
|
|
|
NotificationURLs []string `env:"NOTIFICATION_URLS"`
|
|
|
|
NotificationLevel string `envDefault:"error"`
|
|
|
|
EmailNotificationRecipient string
|
|
|
|
EmailNotificationSender string `envDefault:"noreply@nohost"`
|
|
|
|
EmailSMTPHost string `env:"EMAIL_SMTP_HOST"`
|
|
|
|
EmailSMTPPort int `env:"EMAIL_SMTP_PORT" envDefault:"587"`
|
|
|
|
EmailSMTPUsername string `env:"EMAIL_SMTP_USERNAME"`
|
|
|
|
EmailSMTPPassword string `env:"EMAIL_SMTP_PASSWORD"`
|
|
|
|
WebdavUrl string
|
|
|
|
WebdavUrlInsecure bool
|
|
|
|
WebdavPath string `envDefault:"/"`
|
|
|
|
WebdavUsername string
|
|
|
|
WebdavPassword string
|
|
|
|
SSHHostName string `env:"SSH_HOST_NAME"`
|
|
|
|
SSHPort string `env:"SSH_PORT" envDefault:"22"`
|
|
|
|
SSHUser string `env:"SSH_USER"`
|
|
|
|
SSHPassword string `env:"SSH_PASSWORD"`
|
|
|
|
SSHIdentityFile string `env:"SSH_IDENTITY_FILE" envDefault:"/root/.ssh/id_rsa"`
|
|
|
|
SSHIdentityPassphrase string `env:"SSH_IDENTITY_PASSPHRASE"`
|
|
|
|
SSHRemotePath string `env:"SSH_REMOTE_PATH"`
|
|
|
|
ExecLabel string
|
|
|
|
ExecForwardOutput bool
|
|
|
|
LockTimeout time.Duration `envDefault:"60m"`
|
|
|
|
AzureStorageAccountName string
|
|
|
|
AzureStoragePrimaryAccountKey string
|
|
|
|
AzureStorageContainerName string
|
|
|
|
AzureStoragePath string
|
|
|
|
AzureStorageEndpoint string `envDefault:"https://{{ .AccountName }}.blob.core.windows.net/"`
|
|
|
|
DropboxEndpoint string `envDefault:"https://api.dropbox.com/"`
|
|
|
|
DropboxOAuth2Endpoint string `env:"DROPBOX_OAUTH2_ENDPOINT" envDefault:"https://api.dropbox.com/"`
|
|
|
|
DropboxRefreshToken string
|
|
|
|
DropboxAppKey string
|
|
|
|
DropboxAppSecret string
|
|
|
|
DropboxRemotePath string
|
|
|
|
DropboxConcurrencyLevel NaturalNumber `envDefault:"6"`
|
2022-10-12 19:14:57 +02:00
|
|
|
}
|
|
|
|
|
2023-08-19 19:20:13 +02:00
|
|
|
type CompressionType string
|
|
|
|
|
2023-08-27 20:14:59 +02:00
|
|
|
func (c *CompressionType) UnmarshalText(text []byte) error {
|
|
|
|
v := string(text)
|
2023-08-19 19:20:13 +02:00
|
|
|
switch v {
|
|
|
|
case "gz", "zst":
|
|
|
|
*c = CompressionType(v)
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("config: error decoding compression type %s", v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CompressionType) String() string {
|
|
|
|
return string(*c)
|
|
|
|
}
|
|
|
|
|
2022-12-22 14:37:51 +01:00
|
|
|
type CertDecoder struct {
|
|
|
|
Cert *x509.Certificate
|
|
|
|
}
|
|
|
|
|
2023-08-27 20:14:59 +02:00
|
|
|
func (c *CertDecoder) UnmarshalText(text []byte) error {
|
|
|
|
v := string(text)
|
2022-12-22 14:37:51 +01:00
|
|
|
if v == "" {
|
|
|
|
return nil
|
|
|
|
}
|
2023-08-27 18:14:55 +02:00
|
|
|
content, err := os.ReadFile(v)
|
2022-12-22 14:37:51 +01:00
|
|
|
if err != nil {
|
|
|
|
content = []byte(v)
|
|
|
|
}
|
|
|
|
block, _ := pem.Decode(content)
|
|
|
|
cert, err := x509.ParseCertificate(block.Bytes)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("config: error parsing certificate: %w", err)
|
|
|
|
}
|
|
|
|
*c = CertDecoder{Cert: cert}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-08 11:20:38 +02:00
|
|
|
type RegexpDecoder struct {
|
|
|
|
Re *regexp.Regexp
|
|
|
|
}
|
|
|
|
|
2023-08-27 20:14:59 +02:00
|
|
|
func (r *RegexpDecoder) UnmarshalText(text []byte) error {
|
|
|
|
v := string(text)
|
2022-05-08 11:20:38 +02:00
|
|
|
if v == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
re, err := regexp.Compile(v)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("config: error compiling given regexp `%s`: %w", v, err)
|
|
|
|
}
|
|
|
|
*r = RegexpDecoder{Re: re}
|
|
|
|
return nil
|
|
|
|
}
|
2023-08-24 19:33:47 +02:00
|
|
|
|
|
|
|
type NaturalNumber int
|
|
|
|
|
2023-08-27 20:14:59 +02:00
|
|
|
func (n *NaturalNumber) UnmarshalText(text []byte) error {
|
|
|
|
v := string(text)
|
2023-08-24 19:33:47 +02:00
|
|
|
asInt, err := strconv.Atoi(v)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("config: error converting %s to int", v)
|
|
|
|
}
|
|
|
|
if asInt <= 0 {
|
|
|
|
return fmt.Errorf("config: expected a natural number, got %d", asInt)
|
|
|
|
}
|
|
|
|
*n = NaturalNumber(asInt)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *NaturalNumber) Int() int {
|
|
|
|
return int(*n)
|
|
|
|
}
|