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


                
                
             
                                            
                                                       
                                                       
                                

 
     

                             

 
                                                         










                                                                          

                                                                



                                  

                                                                           




                                  




                                        



                                                                   
 
                                 
 


                          
 
                                                    
 
                  

 






                                           
                                  






                                                                                                          
 
package commands

import (
	"errors"
	"fmt"
	"github.com/MichaelMure/git-bug/bug"
	"github.com/MichaelMure/git-bug/bug/operations"
	"github.com/MichaelMure/git-bug/commands/input"
	"github.com/spf13/cobra"
)

var (
	newMessageFile string
	newMessage     string
)

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

	if len(args) == 0 {
		return errors.New("No title provided")
	}
	if len(args) > 1 {
		return errors.New("Only accepting one title is supported")
	}

	title := args[0]

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

	author, err := bug.GetUser(repo)
	if err != nil {
		return err
	}

	newBug, err := operations.Create(author, title, newMessage)
	if err != nil {
		return err
	}

	err = newBug.Commit(repo)

	if err != nil {
		return err
	}

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

	return nil
}

var newCmd = &cobra.Command{
	Use:   "new <title> [<option>...]",
	Short: "Create a new bug",
	RunE:  runNewBug,
}

func init() {
	RootCmd.AddCommand(newCmd)

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