aboutsummaryrefslogblamecommitdiffstats
path: root/commands/bug/bug_status_close.go
blob: 7a8ae4de5f6773ee3d50fab05586c849b0af4ffe (plain) (tree)
1
2
3
4
5
6
7
8
9




                                


                                                         
                                                                






                                                                                               
                                                      





                                                               
                                                       










                          
package bugcmd

import (
	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/commands/execenv"
)

func newBugStatusCloseCommand(env *execenv.Env) *cobra.Command {
	cmd := &cobra.Command{
		Use:     "close [BUG_ID]",
		Short:   "Mark a bug as closed",
		PreRunE: execenv.LoadBackendEnsureUser(env),
		RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error {
			return runBugStatusClose(env, args)
		}),
		ValidArgsFunction: BugCompletion(env),
	}

	return cmd
}

func runBugStatusClose(env *execenv.Env, args []string) error {
	b, _, err := ResolveSelected(env.Backend, args)
	if err != nil {
		return err
	}

	_, err = b.Close()
	if err != nil {
		return err
	}

	return b.Commit()
}