git-bug/commands/bridge_auth_rm.go

40 lines
758 B
Go
Raw Normal View History

package commands
import (
"github.com/spf13/cobra"
"github.com/MichaelMure/git-bug/bridge/core/auth"
)
2020-06-28 19:26:29 +03:00
func newBridgeAuthRm() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "rm ID",
2020-06-28 19:26:29 +03:00
Short: "Remove a credential.",
PreRunE: loadRepo(env),
RunE: func(cmd *cobra.Command, args []string) error {
return runBridgeAuthRm(env, args)
},
Args: cobra.ExactArgs(1),
ValidArgsFunction: completeBridgeAuth(env),
2020-06-28 19:26:29 +03:00
}
return cmd
}
func runBridgeAuthRm(env *Env, args []string) error {
cred, err := auth.LoadWithPrefix(env.repo, args[0])
if err != nil {
return err
}
2020-06-28 19:26:29 +03:00
err = auth.Remove(env.repo, cred.ID())
if err != nil {
return err
}
2020-06-28 19:26:29 +03:00
env.out.Printf("credential %s removed\n", cred.ID())
return nil
}