mirror of
https://github.com/kopia/kopia.git
synced 2026-03-12 03:06:31 -04:00
* linter: upgraded to 1.33, disabled some linters * lint: fixed 'errorlint' errors This ensures that all error comparisons use errors.Is() or errors.As(). We will be wrapping more errors going forward so it's important that error checks are not strict everywhere. Verified that there are no exceptions for errorlint linter which guarantees that. * lint: fixed or suppressed wrapcheck errors * lint: nolintlint and misc cleanups Co-authored-by: Julio López <julio+gh@kasten.io>
44 lines
1.0 KiB
Go
44 lines
1.0 KiB
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/kopia/kopia/repo"
|
|
"github.com/kopia/kopia/repo/manifest"
|
|
"github.com/kopia/kopia/snapshot"
|
|
"github.com/kopia/kopia/snapshot/policy"
|
|
)
|
|
|
|
func policyTargets(ctx context.Context, rep repo.Repository, globalFlag *bool, targetsFlag *[]string) ([]snapshot.SourceInfo, error) {
|
|
if *globalFlag == (len(*targetsFlag) > 0) {
|
|
return nil, errors.New("must pass either '--global' or a list of path targets")
|
|
}
|
|
|
|
if *globalFlag {
|
|
return []snapshot.SourceInfo{
|
|
policy.GlobalPolicySourceInfo,
|
|
}, nil
|
|
}
|
|
|
|
var res []snapshot.SourceInfo
|
|
|
|
for _, ts := range *targetsFlag {
|
|
// try loading policy by its manifest ID
|
|
if t, err := policy.GetPolicyByID(ctx, rep, manifest.ID(ts)); err == nil {
|
|
res = append(res, t.Target())
|
|
continue
|
|
}
|
|
|
|
target, err := snapshot.ParseSourceInfo(ts, rep.ClientOptions().Hostname, rep.ClientOptions().Username)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "unable to parse source info: %q", ts)
|
|
}
|
|
|
|
res = append(res, target)
|
|
}
|
|
|
|
return res, nil
|
|
}
|