mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
This change will improve over CLI performance and "snappiness" as well as substantially reduce our test times. Preliminary benchmarks show `coder server --help` times cut from 300ms to 120ms on my dogfood instance. The inefficiency of lipgloss disproportionately impacts our system, as all help text for every command is generated whenever any command is invoked. The `pretty` API could clean up a lot of the code (e.g., by replacing complex string concatenations with Printf), but this commit is too expansive as is so that work will be done in a follow up.
107 lines
2.6 KiB
Go
107 lines
2.6 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/coder/pretty"
|
|
|
|
"github.com/coder/coder/v2/cli/clibase"
|
|
"github.com/coder/coder/v2/cli/cliui"
|
|
"github.com/coder/coder/v2/codersdk"
|
|
)
|
|
|
|
func (r *RootCmd) templateDelete() *clibase.Cmd {
|
|
client := new(codersdk.Client)
|
|
cmd := &clibase.Cmd{
|
|
Use: "delete [name...]",
|
|
Short: "Delete templates",
|
|
Middleware: clibase.Chain(
|
|
r.InitClient(client),
|
|
),
|
|
Options: clibase.OptionSet{
|
|
cliui.SkipPromptOption(),
|
|
},
|
|
Handler: func(inv *clibase.Invocation) error {
|
|
var (
|
|
ctx = inv.Context()
|
|
templateNames = []string{}
|
|
templates = []codersdk.Template{}
|
|
)
|
|
|
|
organization, err := CurrentOrganization(inv, client)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(inv.Args) > 0 {
|
|
templateNames = inv.Args
|
|
|
|
for _, templateName := range templateNames {
|
|
template, err := client.TemplateByName(ctx, organization.ID, templateName)
|
|
if err != nil {
|
|
return xerrors.Errorf("get template by name: %w", err)
|
|
}
|
|
templates = append(templates, template)
|
|
}
|
|
} else {
|
|
allTemplates, err := client.TemplatesByOrganization(ctx, organization.ID)
|
|
if err != nil {
|
|
return xerrors.Errorf("get templates by organization: %w", err)
|
|
}
|
|
|
|
if len(allTemplates) == 0 {
|
|
return xerrors.Errorf("no templates exist in the current organization %q", organization.Name)
|
|
}
|
|
|
|
opts := make([]string, 0, len(allTemplates))
|
|
for _, template := range allTemplates {
|
|
opts = append(opts, template.Name)
|
|
}
|
|
|
|
selection, err := cliui.Select(inv, cliui.SelectOptions{
|
|
Options: opts,
|
|
})
|
|
if err != nil {
|
|
return xerrors.Errorf("select template: %w", err)
|
|
}
|
|
|
|
for _, template := range allTemplates {
|
|
if template.Name == selection {
|
|
templates = append(templates, template)
|
|
templateNames = append(templateNames, template.Name)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Confirm deletion of the template.
|
|
_, err = cliui.Prompt(inv, cliui.PromptOptions{
|
|
Text: fmt.Sprintf("Delete these templates: %s?", pretty.Sprint(cliui.DefaultStyles.Code, strings.Join(templateNames, ", "))),
|
|
IsConfirm: true,
|
|
Default: cliui.ConfirmNo,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, template := range templates {
|
|
err := client.DeleteTemplate(ctx, template.ID)
|
|
if err != nil {
|
|
return xerrors.Errorf("delete template %q: %w", template.Name, err)
|
|
}
|
|
|
|
_, _ = fmt.Fprintln(
|
|
inv.Stdout, "Deleted template "+pretty.Sprint(cliui.DefaultStyles.Keyword, template.Name)+" at "+cliui.Timestamp(time.Now()),
|
|
)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|
|
|
|
return cmd
|
|
}
|