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


                
                
              
             
                                            
                                                       

                                                       








                                                                                                                                              
                                                           


























                                                                            




                                        


                                   

         
                                                                      
 
                               
 

                                 

                                     
                  



                      



                                             
 
package commands

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

var newFlagSet = flag.NewFlagSet("new", flag.ExitOnError)

var (
	newMessageFile = newFlagSet.String("F", "", "Take the message from the given file. Use - to read the message from the standard input")
	newMessage     = newFlagSet.String("m", "", "Provide a message to describe the issue")
)

func runNewBug(repo repository.Repo, args []string) error {
	newFlagSet.Parse(args)
	args = newFlagSet.Args()

	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 := bug.NewBug()
	if err != nil {
		return err
	}

	createOp := operations.NewCreateOp(author, title, *newMessage)

	newbug.Append(createOp)

	err = newbug.Commit(repo)

	fmt.Println(newbug.HumanId())

	return err

}

var newCmd = &Command{
	Description: "Create a new bug",
	Usage:       "[<option>...] <title>",
	flagSet:     newFlagSet,
	RunMethod:   runNewBug,
}