2018-09-16 15:25:25 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2018-10-24 00:01:00 +03:00
|
|
|
"github.com/MichaelMure/git-bug/cleaner"
|
2018-09-18 14:28:01 +03:00
|
|
|
"github.com/MichaelMure/git-bug/commands/select"
|
2018-09-16 15:25:25 +03:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func runStatus(cmd *cobra.Command, args []string) error {
|
|
|
|
backend, err := cache.NewRepoCache(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer backend.Close()
|
2018-10-24 00:01:00 +03:00
|
|
|
cleaner.Register(backend.Close)
|
2018-09-16 15:25:25 +03:00
|
|
|
|
2018-09-18 14:28:01 +03:00
|
|
|
b, args, err := _select.ResolveBug(backend, args)
|
2018-09-16 15:25:25 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
snap := b.Snapshot()
|
|
|
|
|
|
|
|
fmt.Println(snap.Status)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var statusCmd = &cobra.Command{
|
2018-10-17 21:38:10 +03:00
|
|
|
Use: "status [<id>]",
|
|
|
|
Short: "Display or change a bug status",
|
|
|
|
PreRunE: loadRepo,
|
|
|
|
RunE: runStatus,
|
2018-09-16 15:25:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
RootCmd.AddCommand(statusCmd)
|
|
|
|
}
|