2018-09-16 15:25:25 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2020-07-28 21:24:24 +03:00
|
|
|
_select "github.com/MichaelMure/git-bug/commands/select"
|
2020-06-28 19:26:29 +03:00
|
|
|
"github.com/spf13/cobra"
|
2018-09-16 15:25:25 +03:00
|
|
|
)
|
|
|
|
|
2020-06-28 19:26:29 +03:00
|
|
|
func newStatusCommand() *cobra.Command {
|
|
|
|
env := newEnv()
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
2020-07-28 21:24:24 +03:00
|
|
|
Use: "status [ID]",
|
2020-06-28 20:09:32 +03:00
|
|
|
Short: "Display or change a bug status.",
|
|
|
|
PreRunE: loadBackend(env),
|
|
|
|
PostRunE: closeBackend(env),
|
2020-06-28 19:26:29 +03:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runStatus(env, args)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(newStatusCloseCommand())
|
|
|
|
cmd.AddCommand(newStatusOpenCommand())
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func runStatus(env *Env, args []string) error {
|
2020-06-28 20:09:32 +03:00
|
|
|
b, args, err := _select.ResolveBug(env.backend, args)
|
2018-09-16 15:25:25 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
snap := b.Snapshot()
|
|
|
|
|
2020-06-28 19:26:29 +03:00
|
|
|
env.out.Println(snap.Status)
|
2018-09-16 15:25:25 +03:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|