aboutsummaryrefslogtreecommitdiffstats
path: root/commands/status.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-16 14:25:25 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-16 14:25:25 +0200
commita846fb96de587afdd9b3ea37bdb9731d77e44863 (patch)
tree4b71d5b7c4395ae1be1e9f6520e7866e98257e4e /commands/status.go
parent6f5d433e33b5432887a8496074f0d7c7048c1167 (diff)
downloadgit-bug-a846fb96de587afdd9b3ea37bdb9731d77e44863.tar.gz
commands: add a "status" command to show a bug status
Diffstat (limited to 'commands/status.go')
-rw-r--r--commands/status.go50
1 files changed, 50 insertions, 0 deletions
diff --git a/commands/status.go b/commands/status.go
new file mode 100644
index 00000000..29646b6e
--- /dev/null
+++ b/commands/status.go
@@ -0,0 +1,50 @@
+package commands
+
+import (
+ "fmt"
+
+ "github.com/MichaelMure/git-bug/cache"
+ "github.com/pkg/errors"
+ "github.com/spf13/cobra"
+)
+
+func runStatus(cmd *cobra.Command, args []string) error {
+ var err error
+
+ if len(args) > 1 {
+ return errors.New("Only one bug id is supported")
+ }
+
+ if len(args) == 0 {
+ return errors.New("You must provide a bug id")
+ }
+
+ backend, err := cache.NewRepoCache(repo)
+ if err != nil {
+ return err
+ }
+ defer backend.Close()
+
+ prefix := args[0]
+
+ b, err := backend.ResolveBugPrefix(prefix)
+ if err != nil {
+ return err
+ }
+
+ snap := b.Snapshot()
+
+ fmt.Println(snap.Status)
+
+ return nil
+}
+
+var statusCmd = &cobra.Command{
+ Use: "status <id>",
+ Short: "Show the bug status",
+ RunE: runStatus,
+}
+
+func init() {
+ RootCmd.AddCommand(statusCmd)
+}