git-bug/commands/title_edit.go

75 lines
1.6 KiB
Go
Raw Normal View History

2018-09-16 02:17:06 +03:00
package commands
import (
2020-06-28 19:26:29 +03:00
"github.com/spf13/cobra"
2018-09-16 02:17:06 +03:00
_select "github.com/MichaelMure/git-bug/commands/select"
2018-09-16 02:17:06 +03:00
"github.com/MichaelMure/git-bug/input"
"github.com/MichaelMure/git-bug/util/text"
2018-09-16 02:17:06 +03:00
)
2020-06-28 19:26:29 +03:00
type titleEditOptions struct {
CLI: Add non-interactive option to interactive commands (#651) * Add option to skip the AvatarURL input request Using an empty string for the avatar cli flag e.g. `git-bug user create -a ""` will still result in a prompt. As the avatar URL is an optional option, it should be possible to skip asking for it entirely. Otherwise automated user creation via a script must make use of pipe hacks. * Add global --non-interactive cmdline option * Replace --skipAvatar for --non-interactive option * Cmd BugAdd: respect non-interactive option * Cmd bridge configure: respect non-interactive opt * Cmd CommentAdd: respect non-interactive option * Cmd CommentEdit: respect non-interactive option * Cmd TermUI: respect non-interactive option * Cmd TitleEdit: respect non-interactive option * Remove global non-interactive option * Cmd UserCreate: Use local non-interactive option * Cmd BugAdd: Use local non-interactive option * Cmd BridgeConfigure: Use local non-interactive option * Cmd CommentAdd: Use local non-interactive option * Cmd CommentEdit: Use local non-interactive option * Cmd TermUI: Drop non-interactive option It should be obviouse that the termui is an interactive command. * Cmd TitleEdit: Use local non-interactive option * Update docs * Bridge GitHub: respect non-interactive option * Bridge GitLab: respect non-interactive option * Bridge Jira: respect non-interactive and token opt * Fix failing compilation * Bridge launchpad: respect non-interactive option * bridge: isNonInteractive --> interactive Co-authored-by: Michael Muré <batolettre@gmail.com>
2021-05-09 12:14:45 +03:00
title string
nonInteractive bool
2020-06-28 19:26:29 +03:00
}
func newTitleEditCommand() *cobra.Command {
env := newEnv()
options := titleEditOptions{}
cmd := &cobra.Command{
Use: "edit [ID]",
Short: "Edit a title of a bug.",
PreRunE: loadBackendEnsureUser(env),
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
2020-06-28 19:26:29 +03:00
return runTitleEdit(env, options, args)
}),
ValidArgsFunction: completeBug(env),
2020-06-28 19:26:29 +03:00
}
flags := cmd.Flags()
flags.SortFlags = false
flags.StringVarP(&options.title, "title", "t", "",
"Provide a title to describe the issue",
)
CLI: Add non-interactive option to interactive commands (#651) * Add option to skip the AvatarURL input request Using an empty string for the avatar cli flag e.g. `git-bug user create -a ""` will still result in a prompt. As the avatar URL is an optional option, it should be possible to skip asking for it entirely. Otherwise automated user creation via a script must make use of pipe hacks. * Add global --non-interactive cmdline option * Replace --skipAvatar for --non-interactive option * Cmd BugAdd: respect non-interactive option * Cmd bridge configure: respect non-interactive opt * Cmd CommentAdd: respect non-interactive option * Cmd CommentEdit: respect non-interactive option * Cmd TermUI: respect non-interactive option * Cmd TitleEdit: respect non-interactive option * Remove global non-interactive option * Cmd UserCreate: Use local non-interactive option * Cmd BugAdd: Use local non-interactive option * Cmd BridgeConfigure: Use local non-interactive option * Cmd CommentAdd: Use local non-interactive option * Cmd CommentEdit: Use local non-interactive option * Cmd TermUI: Drop non-interactive option It should be obviouse that the termui is an interactive command. * Cmd TitleEdit: Use local non-interactive option * Update docs * Bridge GitHub: respect non-interactive option * Bridge GitLab: respect non-interactive option * Bridge Jira: respect non-interactive and token opt * Fix failing compilation * Bridge launchpad: respect non-interactive option * bridge: isNonInteractive --> interactive Co-authored-by: Michael Muré <batolettre@gmail.com>
2021-05-09 12:14:45 +03:00
flags.BoolVar(&options.nonInteractive, "non-interactive", false, "Do not ask for user input")
2018-09-16 02:17:06 +03:00
2020-06-28 19:26:29 +03:00
return cmd
}
func runTitleEdit(env *Env, opts titleEditOptions, args []string) error {
b, args, err := _select.ResolveBug(env.backend, args)
2018-09-16 02:17:06 +03:00
if err != nil {
return err
}
snap := b.Snapshot()
2020-06-28 19:26:29 +03:00
if opts.title == "" {
CLI: Add non-interactive option to interactive commands (#651) * Add option to skip the AvatarURL input request Using an empty string for the avatar cli flag e.g. `git-bug user create -a ""` will still result in a prompt. As the avatar URL is an optional option, it should be possible to skip asking for it entirely. Otherwise automated user creation via a script must make use of pipe hacks. * Add global --non-interactive cmdline option * Replace --skipAvatar for --non-interactive option * Cmd BugAdd: respect non-interactive option * Cmd bridge configure: respect non-interactive opt * Cmd CommentAdd: respect non-interactive option * Cmd CommentEdit: respect non-interactive option * Cmd TermUI: respect non-interactive option * Cmd TitleEdit: respect non-interactive option * Remove global non-interactive option * Cmd UserCreate: Use local non-interactive option * Cmd BugAdd: Use local non-interactive option * Cmd BridgeConfigure: Use local non-interactive option * Cmd CommentAdd: Use local non-interactive option * Cmd CommentEdit: Use local non-interactive option * Cmd TermUI: Drop non-interactive option It should be obviouse that the termui is an interactive command. * Cmd TitleEdit: Use local non-interactive option * Update docs * Bridge GitHub: respect non-interactive option * Bridge GitLab: respect non-interactive option * Bridge Jira: respect non-interactive and token opt * Fix failing compilation * Bridge launchpad: respect non-interactive option * bridge: isNonInteractive --> interactive Co-authored-by: Michael Muré <batolettre@gmail.com>
2021-05-09 12:14:45 +03:00
if opts.nonInteractive {
env.err.Println("No title given. Use -m or -F option to specify a title. Aborting.")
return nil
}
2020-06-28 19:26:29 +03:00
opts.title, err = input.BugTitleEditorInput(env.repo, snap.Title)
2018-09-16 02:17:06 +03:00
if err == input.ErrEmptyTitle {
2020-06-28 19:26:29 +03:00
env.out.Println("Empty title, aborting.")
2018-09-16 02:17:06 +03:00
return nil
}
if err != nil {
return err
}
}
2020-06-28 19:26:29 +03:00
if opts.title == snap.Title {
env.err.Println("No change, aborting.")
}
_, err = b.SetTitle(text.CleanupOneLine(opts.title))
2018-09-16 02:17:06 +03:00
if err != nil {
return err
}
return b.Commit()
}