Files
kopia/cli/command_policy_remove.go
Jarek Kowalski d2288c443f cli: major refactoring (#1046)
cli: major refactoring of how CLI commands are registered

The goal is to eliminate flags as global variables to allow for better
testing. Each command and subcommand and most sets of flags are now
their own struct with 'setup()' methods that attached the flags or
subcommand to the provided parent.

This change is 94.3% mechanical, but is fully organic and hand-made.

* introduced cli.appServices interface which provides the environment in which commands run
* remove auto-maintenance global flag
* removed globals in memory_tracking.go
* removed globals from cli_progress.go
* removed globals from the update_check.go
* moved configPath into TheApp
* removed remaining globals from config.go
* refactored logfile to get rid of global variables
* removed 'app' global variable
* linter fixes
* fixed password_*.go build
* fixed BSD build
2021-05-03 10:28:00 -07:00

46 lines
1.2 KiB
Go

package cli
import (
"context"
"github.com/pkg/errors"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/snapshot/policy"
)
type commandPolicyDelete struct {
targets []string
global bool
dryRun bool
}
func (c *commandPolicyDelete) setup(svc appServices, parent commandParent) {
cmd := parent.Command("delete", "Remove snapshot policy for a single directory, user@host or a global policy.").Alias("remove").Alias("rm")
cmd.Arg("target", "Target of a policy ('global','user@host','@host') or a path").StringsVar(&c.targets)
cmd.Flag("global", "Set global policy").BoolVar(&c.global)
cmd.Flag("dry-run", "Do not remove").Short('n').BoolVar(&c.dryRun)
cmd.Action(svc.repositoryWriterAction(c.run))
}
func (c *commandPolicyDelete) run(ctx context.Context, rep repo.RepositoryWriter) error {
targets, err := policyTargets(ctx, rep, c.global, c.targets)
if err != nil {
return err
}
for _, target := range targets {
log(ctx).Infof("Removing policy on %q...", target)
if c.dryRun {
continue
}
if err := policy.RemovePolicy(ctx, rep, target); err != nil {
return errors.Wrapf(err, "error removing policy on %v", target)
}
}
return nil
}