aboutsummaryrefslogblamecommitdiffstats
path: root/commands/new.go
blob: 0d68ffd8a51fdbd9b0621df3fd376326d020674e (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                
             
 
                                              
                                              
                                

 
     
                             
                             
                             

 
                                                         

                     

                                                                



                                  
 





                                                
                                               
                                                                                                                  




                                                             




                                  
                                                      


                          
 
                                               
 
                  

 
                            
                     




                                  
                                  
 

                                        

                                                              



                                                                  


                                                                                                          
 
package commands

import (
	"fmt"

	"github.com/MichaelMure/git-bug/cache"
	"github.com/MichaelMure/git-bug/input"
	"github.com/spf13/cobra"
)

var (
	newTitle       string
	newMessage     string
	newMessageFile string
)

func runNewBug(cmd *cobra.Command, args []string) error {
	var err error

	if newMessageFile != "" && newMessage == "" {
		newMessage, err = input.FromFile(newMessageFile)
		if err != nil {
			return err
		}
	}

	backend, err := cache.NewRepoCache(repo)
	if err != nil {
		return err
	}
	defer backend.Close()

	if newMessage == "" || newTitle == "" {
		newTitle, newMessage, err = input.BugCreateEditorInput(backend.Repository(), newTitle, newMessage)

		if err == input.ErrEmptyTitle {
			fmt.Println("Empty title, aborting.")
			return nil
		}
		if err != nil {
			return err
		}
	}

	b, err := backend.NewBug(newTitle, newMessage)
	if err != nil {
		return err
	}

	fmt.Printf("%s created\n", b.HumanId())

	return nil
}

var newCmd = &cobra.Command{
	Use:   "new",
	Short: "Create a new bug",
	RunE:  runNewBug,
}

func init() {
	RootCmd.AddCommand(newCmd)

	newCmd.Flags().SortFlags = false

	newCmd.Flags().StringVarP(&newTitle, "title", "t", "",
		"Provide a title to describe the issue",
	)
	newCmd.Flags().StringVarP(&newMessage, "message", "m", "",
		"Provide a message to describe the issue",
	)
	newCmd.Flags().StringVarP(&newMessageFile, "file", "F", "",
		"Take the message from the given file. Use - to read the message from the standard input",
	)
}