2018-07-17 21:51:09 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2018-08-13 19:32:11 +03:00
|
|
|
"strings"
|
|
|
|
|
2018-08-31 14:18:03 +03:00
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2018-09-18 14:28:01 +03:00
|
|
|
"github.com/MichaelMure/git-bug/commands/select"
|
2018-09-11 23:04:16 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/colors"
|
2018-10-25 00:36:39 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
2018-07-19 13:30:25 +03:00
|
|
|
"github.com/spf13/cobra"
|
2018-07-17 21:51:09 +03:00
|
|
|
)
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
func runShowBug(cmd *cobra.Command, args []string) error {
|
2018-08-31 14:18:03 +03:00
|
|
|
backend, err := cache.NewRepoCache(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer backend.Close()
|
2018-10-25 00:36:39 +03:00
|
|
|
interrupt.RegisterCleaner(backend.Close)
|
2018-08-31 14:18:03 +03:00
|
|
|
|
2018-09-18 14:28:01 +03:00
|
|
|
b, args, err := _select.ResolveBug(backend, args)
|
2018-07-17 21:51:09 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-08-31 14:18:03 +03:00
|
|
|
snapshot := b.Snapshot()
|
2018-07-17 21:51:09 +03:00
|
|
|
|
|
|
|
if len(snapshot.Comments) == 0 {
|
|
|
|
return errors.New("Invalid bug: no comment")
|
|
|
|
}
|
|
|
|
|
|
|
|
firstComment := snapshot.Comments[0]
|
|
|
|
|
|
|
|
// Header
|
|
|
|
fmt.Printf("[%s] %s %s\n\n",
|
2018-09-11 23:04:16 +03:00
|
|
|
colors.Yellow(snapshot.Status),
|
|
|
|
colors.Cyan(snapshot.HumanId()),
|
2018-07-17 21:51:09 +03:00
|
|
|
snapshot.Title,
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("%s opened this issue %s\n\n",
|
2018-10-07 19:27:23 +03:00
|
|
|
colors.Magenta(firstComment.Author.DisplayName()),
|
2018-09-15 21:30:31 +03:00
|
|
|
firstComment.FormatTimeRel(),
|
2018-07-17 21:51:09 +03:00
|
|
|
)
|
|
|
|
|
2018-07-18 17:41:09 +03:00
|
|
|
var labels = make([]string, len(snapshot.Labels))
|
|
|
|
for i := range snapshot.Labels {
|
|
|
|
labels[i] = string(snapshot.Labels[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("labels: %s\n\n",
|
|
|
|
strings.Join(labels, ", "),
|
|
|
|
)
|
|
|
|
|
2018-07-17 21:51:09 +03:00
|
|
|
// Comments
|
|
|
|
indent := " "
|
|
|
|
|
|
|
|
for i, comment := range snapshot.Comments {
|
2018-12-22 06:36:32 +03:00
|
|
|
var message string
|
2018-07-17 21:51:09 +03:00
|
|
|
fmt.Printf("%s#%d %s <%s>\n\n",
|
|
|
|
indent,
|
|
|
|
i,
|
2018-10-07 19:27:23 +03:00
|
|
|
comment.Author.DisplayName(),
|
2018-07-17 21:51:09 +03:00
|
|
|
comment.Author.Email,
|
|
|
|
)
|
|
|
|
|
2018-12-22 06:36:32 +03:00
|
|
|
if comment.Message == "" {
|
|
|
|
message = colors.GreyBold("No description provided.")
|
|
|
|
} else {
|
|
|
|
message = comment.Message
|
|
|
|
}
|
|
|
|
|
2018-07-17 21:51:09 +03:00
|
|
|
fmt.Printf("%s%s\n\n\n",
|
|
|
|
indent,
|
2018-12-22 06:36:32 +03:00
|
|
|
message,
|
2018-07-17 21:51:09 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
var showCmd = &cobra.Command{
|
2018-10-17 21:38:10 +03:00
|
|
|
Use: "show [<id>]",
|
|
|
|
Short: "Display the details of a bug",
|
|
|
|
PreRunE: loadRepo,
|
|
|
|
RunE: runShowBug,
|
2018-07-19 13:30:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-07-20 16:46:14 +03:00
|
|
|
RootCmd.AddCommand(showCmd)
|
2018-07-17 21:51:09 +03:00
|
|
|
}
|