aboutsummaryrefslogtreecommitdiffstats
path: root/commands/ls.go
blob: ac0bcfbb381b733f578ef167868b7a166b8527e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package commands

import (
	"fmt"
	b "github.com/MichaelMure/git-bug/bug"
	"github.com/MichaelMure/git-bug/repository"
)

func runLsBug(repo repository.Repo, args []string) error {
	ids, err := repo.ListRefs(b.BugsRefPattern)

	if err != nil {
		return err
	}

	for _, ref := range ids {
		bug, err := b.ReadBug(repo, b.BugsRefPattern+ref)

		if err != nil {
			return err
		}

		snapshot := bug.Compile()

		fmt.Printf("%s %s\t%s\t%s\n", bug.HumanId(), snapshot.Status, snapshot.Title, snapshot.Summary())
	}

	return nil
}

var lsCmd = &Command{
	Description: "Display a summary of all bugs",
	Usage:       "",
	RunMethod:   runLsBug,
}