mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 08:45:30 +03:00
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/MichaelMure/git-bug/input"
|
|
"github.com/MichaelMure/git-bug/util/text"
|
|
)
|
|
|
|
type addOptions struct {
|
|
title string
|
|
message string
|
|
messageFile string
|
|
nonInteractive bool
|
|
}
|
|
|
|
func newAddCommand() *cobra.Command {
|
|
env := newEnv()
|
|
options := addOptions{}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "add",
|
|
Short: "Create a new bug.",
|
|
PreRunE: loadBackendEnsureUser(env),
|
|
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
|
|
return runAdd(env, options)
|
|
}),
|
|
}
|
|
|
|
flags := cmd.Flags()
|
|
flags.SortFlags = false
|
|
|
|
flags.StringVarP(&options.title, "title", "t", "",
|
|
"Provide a title to describe the issue")
|
|
flags.StringVarP(&options.message, "message", "m", "",
|
|
"Provide a message to describe the issue")
|
|
flags.StringVarP(&options.messageFile, "file", "F", "",
|
|
"Take the message from the given file. Use - to read the message from the standard input")
|
|
flags.BoolVar(&options.nonInteractive, "non-interactive", false, "Do not ask for user input")
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runAdd(env *Env, opts addOptions) error {
|
|
var err error
|
|
if opts.messageFile != "" && opts.message == "" {
|
|
opts.title, opts.message, err = input.BugCreateFileInput(opts.messageFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if !opts.nonInteractive && opts.messageFile == "" && (opts.message == "" || opts.title == "") {
|
|
opts.title, opts.message, err = input.BugCreateEditorInput(env.backend, opts.title, opts.message)
|
|
|
|
if err == input.ErrEmptyTitle {
|
|
env.out.Println("Empty title, aborting.")
|
|
return nil
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
b, _, err := env.backend.NewBug(
|
|
text.CleanupOneLine(opts.title),
|
|
text.Cleanup(opts.message),
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
env.out.Printf("%s created\n", b.Id().Human())
|
|
|
|
return nil
|
|
}
|