mirror of
https://github.com/kopia/kopia.git
synced 2026-01-02 19:47:51 -05:00
* feat(cli): new storage config input from file when creating a repo * feat(cli): allow token from stdin * fix(cli): improve code coverage --------- Co-authored-by: Shikhar Mall <small@kopia.io>
53 lines
1.8 KiB
Go
53 lines
1.8 KiB
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/alecthomas/kingpin/v2"
|
|
|
|
"github.com/kopia/kopia/repo/blob"
|
|
"github.com/kopia/kopia/repo/blob/throttling"
|
|
)
|
|
|
|
// StorageProviderServices is implemented by the cli App that allows the cli
|
|
// and tests to mutate the default storage providers.
|
|
type StorageProviderServices interface {
|
|
EnvName(s string) string
|
|
setPasswordFromToken(pwd string)
|
|
storageProviders() []StorageProvider
|
|
stdin() io.Reader
|
|
}
|
|
|
|
// StorageFlags is implemented by cli storage providers which need to support a
|
|
// particular backend. This requires the common setup and connection methods
|
|
// implemented by all the cli storage providers.
|
|
type StorageFlags interface {
|
|
Setup(sps StorageProviderServices, cmd *kingpin.CmdClause)
|
|
Connect(ctx context.Context, isCreate bool, formatVersion int) (blob.Storage, error)
|
|
}
|
|
|
|
// StorageProvider is a CLI provider for storage options and allows the CLI to
|
|
// multiplex between various provider CLI flag constructors.
|
|
type StorageProvider struct {
|
|
Name string
|
|
Description string
|
|
NewFlags func() StorageFlags
|
|
}
|
|
|
|
func commonThrottlingFlags(cmd *kingpin.CmdClause, limits *throttling.Limits) {
|
|
cmd.Flag("max-download-speed", "Limit the download speed.").PlaceHolder("BYTES_PER_SEC").FloatVar(&limits.DownloadBytesPerSecond)
|
|
cmd.Flag("max-upload-speed", "Limit the upload speed.").PlaceHolder("BYTES_PER_SEC").FloatVar(&limits.UploadBytesPerSecond)
|
|
}
|
|
|
|
// AddStorageProvider adds a new StorageProvider at runtime after the App has
|
|
// been initialized with the default providers. This is used in tests which
|
|
// require custom storage providers to simulate various edge cases.
|
|
func (c *App) AddStorageProvider(p StorageProvider) {
|
|
c.cliStorageProviders = append(c.cliStorageProviders, p)
|
|
}
|
|
|
|
func (c *App) storageProviders() []StorageProvider {
|
|
return c.cliStorageProviders
|
|
}
|