1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
package delete
import (
"fmt"
"gitlab.com/gitlab-org/cli/pkg/iostreams"
"gitlab.com/gitlab-org/cli/commands/cmdutils"
"github.com/spf13/cobra"
"gitlab.com/gitlab-org/cli/internal/config"
)
type DeleteOptions struct {
Config func() (config.Config, error)
Name string
IO *iostreams.IOStreams
}
func NewCmdDelete(f *cmdutils.Factory, runF func(*DeleteOptions) error) *cobra.Command {
opts := &DeleteOptions{
Config: f.Config,
IO: f.IO,
}
aliasDeleteCmd := &cobra.Command{
Use: "delete <alias name> [flags]",
Short: `Delete an alias.`,
Long: ``,
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
opts.Name = args[0]
if runF != nil {
return runF(opts)
}
return deleteRun(cmd, opts)
},
}
return aliasDeleteCmd
}
func deleteRun(cmd *cobra.Command, opts *DeleteOptions) error {
c := opts.IO.Color()
cfg, err := opts.Config()
if err != nil {
return err
}
aliasCfg, err := cfg.Aliases()
if err != nil {
return fmt.Errorf("couldn't read aliases config: %w", err)
}
expansion, ok := aliasCfg.Get(opts.Name)
if !ok {
return fmt.Errorf("no such alias '%s'.", opts.Name)
}
err = aliasCfg.Delete(opts.Name)
if err != nil {
return fmt.Errorf("failed to delete alias '%s': %w", opts.Name, err)
}
redCheck := c.Red("✓")
fmt.Fprintf(opts.IO.StdErr, "%s Deleted alias '%s'; was '%s'.\n", redCheck, opts.Name, expansion)
return nil
}
|