func applyChangelist(repo *tuf.Repo, cl changelist.Changelist) error { it, err := cl.NewIterator() if err != nil { return err } index := 0 for it.HasNext() { c, err := it.Next() if err != nil { return err } isDel := data.IsDelegation(c.Scope()) switch { case c.Scope() == changelist.ScopeTargets || isDel: err = applyTargetsChange(repo, c) case c.Scope() == changelist.ScopeRoot: err = applyRootChange(repo, c) default: logrus.Debug("scope not supported: ", c.Scope()) } index++ if err != nil { return err } } logrus.Debugf("applied %d change(s)", index) return nil }
func applyChangelist(repo *tuf.TufRepo, cl changelist.Changelist) error { it, err := cl.NewIterator() if err != nil { return err } index := 0 for it.HasNext() { c, err := it.Next() if err != nil { return err } switch c.Scope() { case changelist.ScopeTargets: err := applyTargetsChange(repo, c) if err != nil { return err } default: logrus.Debug("scope not supported: ", c.Scope()) } index++ } logrus.Debugf("applied %d change(s)", index) return nil }
func applyChangelist(repo *tuf.Repo, invalid *tuf.Repo, cl changelist.Changelist) error { it, err := cl.NewIterator() if err != nil { return err } index := 0 for it.HasNext() { c, err := it.Next() if err != nil { return err } isDel := data.IsDelegation(c.Scope()) || data.IsWildDelegation(c.Scope()) switch { case c.Scope() == changelist.ScopeTargets || isDel: err = applyTargetsChange(repo, invalid, c) case c.Scope() == changelist.ScopeRoot: err = applyRootChange(repo, c) default: return fmt.Errorf("scope not supported: %s", c.Scope()) } if err != nil { logrus.Debugf("error attempting to apply change #%d: %s, on scope: %s path: %s type: %s", index, c.Action(), c.Scope(), c.Path(), c.Type()) return err } index++ } logrus.Debugf("applied %d change(s)", index) return nil }
func applyChangelist(repo *tuf.TufRepo, cl changelist.Changelist) error { changes := cl.List() var err error for _, c := range changes { if c.Scope() == "targets" { applyTargetsChange(repo, c) } if err != nil { return err } } return nil }
func applyChangelist(repo *tuf.TufRepo, cl changelist.Changelist) error { changes := cl.List() logrus.Debugf("applying %d changes", len(changes)) for _, c := range changes { switch c.Scope() { case changelist.ScopeTargets: err := applyTargetsChange(repo, c) if err != nil { return err } default: logrus.Debug("scope not supported: ", c.Scope()) } } return nil }
func (r *NotaryRepository) rootFileKeyChange(cl changelist.Changelist, role, action string, key data.PublicKey) error { kl := make(data.KeyList, 0, 1) kl = append(kl, key) meta := changelist.TufRootData{ RoleName: role, Keys: kl, } metaJSON, err := json.Marshal(meta) if err != nil { return err } c := changelist.NewTufChange( action, changelist.ScopeRoot, changelist.TypeRootRole, role, metaJSON, ) return cl.Add(c) }