From 4b988af651c5f45e9eb970f372eb17052b80139c Mon Sep 17 00:00:00 2001 From: Allen Zhong Date: Thu, 6 May 2021 13:27:52 +0800 Subject: [PATCH] tiup: optimize some mirror subcommands (#1331) --- cmd/mirror.go | 26 ++++++++++++++++++++---- tests/tiup-playground/test_playground.sh | 4 ++-- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/cmd/mirror.go b/cmd/mirror.go index ea5e567ccf..b8e282520a 100644 --- a/cmd/mirror.go +++ b/cmd/mirror.go @@ -26,6 +26,7 @@ import ( "strings" "time" + "github.com/fatih/color" perrs "github.com/pingcap/errors" "github.com/pingcap/tiup/pkg/cluster/spec" "github.com/pingcap/tiup/pkg/environment" @@ -178,6 +179,15 @@ The root manifest in $TIUP_HOME will be replaced with the one in given repositor } else { addr = args[0] } + // expand relative path + if !strings.HasPrefix(addr, "http") { + var err error + addr, err = filepath.Abs(addr) + if err != nil { + return err + } + } + profile := localdata.InitProfile() if err := profile.ResetMirror(addr, root); err != nil { log.Errorf("Failed to set mirror: %s\n", err.Error()) @@ -213,7 +223,7 @@ func newMirrorGrantCmd() *cobra.Command { name = id } - // the privPath can point to a public key becase the Public method of KeyInfo works on both priv and pub key + // the privPath can point to a public key becase the Public method of KeyInfo works on both priv and pub keys privKey, err := loadPrivKey(privPath) if err != nil { return err @@ -222,14 +232,22 @@ func newMirrorGrantCmd() *cobra.Command { if err != nil { return err } + keyID, err := pubKey.ID() + if err != nil { + return err + } env := environment.GlobalEnv() - return env.V1Repository().Mirror().Grant(id, name, pubKey) + err = env.V1Repository().Mirror().Grant(id, name, pubKey) + if err == nil { + log.Infof("Granted new owner %s(%s) with public key %s.", id, name, keyID) + } + return err }, } cmd.Flags().StringVarP(&name, "name", "n", "", "Specify the name of the owner, default: id of the owner") - cmd.Flags().StringVarP(&privPath, "key", "k", "", "Specify the private key path of the owner") + cmd.Flags().StringVarP(&privPath, "key", "k", "", "Specify the path to the private or public key of the owner") return cmd } @@ -729,7 +747,7 @@ func initRepo(path, keyDir string) error { return err } log.Infof("New repository initialized at \"%s\", private keys are stored in \"%s\".", path, keyDir) - log.Infof("Use `tiup mirror set` command to set and use the new repository.") + log.Infof("Use `%s` command to set and use the new repository.", color.CyanString("tiup mirror set %s", path)) return nil } diff --git a/tests/tiup-playground/test_playground.sh b/tests/tiup-playground/test_playground.sh index e840491ada..9eb8d0d7b4 100755 --- a/tests/tiup-playground/test_playground.sh +++ b/tests/tiup-playground/test_playground.sh @@ -51,7 +51,7 @@ function kill_all() { } outfile=/tmp/tiup-playground-test.out -tiup-playground nightly > $outfile 2>&1 & +tiup-playground v5.0.1 > $outfile 2>&1 & # wait $outfile generated sleep 3 @@ -101,7 +101,7 @@ killall -2 tiup-playground.test || killall -2 tiup-playground sleep 60 # test restart with same data -tiup-playground nightly > $outfile 2>&1 & +tiup-playground v5.0.1 > $outfile 2>&1 & # wait $outfile generated sleep 3