mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 12:57:53 +00:00
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
package rclone
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/restic/restic/internal/errors"
|
|
"github.com/restic/restic/internal/options"
|
|
)
|
|
|
|
// Config contains all configuration necessary to start rclone.
|
|
type Config struct {
|
|
Program string `option:"program" help:"path to rclone (default: rclone)"`
|
|
Args string `option:"args" help:"arguments for running rclone (default: serve restic --stdio --b2-hard-delete --drive-use-trash=false)"`
|
|
Remote string
|
|
Connections uint `option:"connections" help:"set a limit for the number of concurrent connections (default: 5)"`
|
|
}
|
|
|
|
func init() {
|
|
options.Register("rclone", Config{})
|
|
}
|
|
|
|
// NewConfig returns a new Config with the default values filled in.
|
|
func NewConfig() Config {
|
|
return Config{
|
|
Connections: 5,
|
|
}
|
|
}
|
|
|
|
// ParseConfig parses the string s and extracts the remote server URL.
|
|
func ParseConfig(s string) (interface{}, error) {
|
|
if !strings.HasPrefix(s, "rclone:") {
|
|
return nil, errors.New("invalid rclone backend specification")
|
|
}
|
|
|
|
s = s[7:]
|
|
cfg := NewConfig()
|
|
cfg.Remote = s
|
|
return cfg, nil
|
|
}
|