diff --git a/Readme.md b/Readme.md index bb997c189bcdf8f3bd8f5418947dfa2365c05d41..e4f58caf84c7785063ef478552bb7e48fc10d892 100644 --- a/Readme.md +++ b/Readme.md @@ -73,6 +73,9 @@ git bug pull [] # Push bugs update to a git remote git bug push [] +# Display the details of a bug +git bug show + # Launch the web UI git bug webui ``` diff --git a/bug/comment.go b/bug/comment.go index 09cd49bd10cdc7153da7823656e873e825e9672d..8ea4154fba7c6d68dd18cf6b8dec673a1e6ca3b7 100644 --- a/bug/comment.go +++ b/bug/comment.go @@ -1,5 +1,7 @@ package bug +import "time" + type Comment struct { Author Person Message string @@ -8,3 +10,7 @@ type Comment struct { // Should be used only for human display, never for ordering as we can't rely on it in a distributed system. Time int64 } + +func (c Comment) FormatTime() string { + return time.Unix(c.Time, 0).Format(time.RFC822) +} diff --git a/bug/snapshot.go b/bug/snapshot.go index 41d96aa29170bb6125104a5fb0b6a457b14f834e..9229e7a1edfe05ae4947a2c838730403af87eb4f 100644 --- a/bug/snapshot.go +++ b/bug/snapshot.go @@ -33,6 +33,9 @@ func (snap Snapshot) Summary() string { } func (snap Snapshot) LastEdit() time.Time { + if len(snap.Comments) == 0 { + return time.Unix(0, 0) + } lastEditTimestamp := snap.Comments[len(snap.Comments)-1].Time return time.Unix(lastEditTimestamp, 0) } diff --git a/commands/command.go b/commands/command.go index 111f9603745658b55c8143671f46fc7a47870488..30f868489105475659ad2874830f5a8e2aa1a1e3 100644 --- a/commands/command.go +++ b/commands/command.go @@ -52,6 +52,7 @@ func init() { "open": openCmd, "pull": pullCmd, "push": pushCmd, + "show": showCmd, "webui": webUICmd, } } diff --git a/commands/show.go b/commands/show.go new file mode 100644 index 0000000000000000000000000000000000000000..a8414384999e814c950d7efd0fcd972c37a06905 --- /dev/null +++ b/commands/show.go @@ -0,0 +1,74 @@ +package commands + +import ( + "errors" + "fmt" + "github.com/MichaelMure/git-bug/bug" + "github.com/MichaelMure/git-bug/repository" + "github.com/MichaelMure/git-bug/util" + "strings" +) + +var line = strings.Repeat("-", 50) + +func runShowBug(repo repository.Repo, args []string) error { + if len(args) > 1 { + return errors.New("Only showing one bug at a time is supported") + } + + if len(args) == 0 { + return errors.New("You must provide a bug id") + } + + prefix := args[0] + + b, err := bug.FindBug(repo, prefix) + if err != nil { + return err + } + + snapshot := b.Compile() + + if len(snapshot.Comments) == 0 { + return errors.New("Invalid bug: no comment") + } + + firstComment := snapshot.Comments[0] + + // Header + fmt.Printf("[%s] %s %s\n\n", + util.Yellow(snapshot.Status), + util.Cyan(snapshot.HumanId()), + snapshot.Title, + ) + + fmt.Printf("%s opened this issue %s\n\n", + util.Magenta(firstComment.Author.Name), + firstComment.FormatTime(), + ) + + // Comments + indent := " " + + for i, comment := range snapshot.Comments { + fmt.Printf("%s#%d %s <%s>\n\n", + indent, + i, + comment.Author.Name, + comment.Author.Email, + ) + + fmt.Printf("%s%s\n\n\n", + indent, + comment.Message, + ) + } + + return nil +} + +var showCmd = &Command{ + Description: "Display the details of a bug", + Usage: "", + RunMethod: runShowBug, +}