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"
|
2019-04-05 17:42:45 +03:00
|
|
|
_select "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
|
|
|
)
|
|
|
|
|
2019-01-04 17:15:42 +03:00
|
|
|
var (
|
2019-01-08 01:08:48 +03:00
|
|
|
showFieldsQuery string
|
2019-01-04 17:15:42 +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 {
|
2019-04-03 22:05:58 +03:00
|
|
|
return errors.New("invalid bug: no comment")
|
2018-07-17 21:51:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
firstComment := snapshot.Comments[0]
|
|
|
|
|
2019-01-08 01:08:48 +03:00
|
|
|
if showFieldsQuery != "" {
|
|
|
|
switch showFieldsQuery {
|
|
|
|
case "author":
|
|
|
|
fmt.Printf("%s\n", firstComment.Author.DisplayName())
|
|
|
|
case "authorEmail":
|
2019-02-16 21:34:52 +03:00
|
|
|
fmt.Printf("%s\n", firstComment.Author.Email())
|
2019-01-08 01:08:48 +03:00
|
|
|
case "createTime":
|
|
|
|
fmt.Printf("%s\n", firstComment.FormatTime())
|
2019-04-03 22:33:04 +03:00
|
|
|
case "humanId":
|
2019-08-12 17:12:14 +03:00
|
|
|
fmt.Printf("%s\n", snapshot.Id().Human())
|
2019-01-08 01:08:48 +03:00
|
|
|
case "id":
|
|
|
|
fmt.Printf("%s\n", snapshot.Id())
|
|
|
|
case "labels":
|
2019-04-05 17:42:45 +03:00
|
|
|
for _, l := range snapshot.Labels {
|
|
|
|
fmt.Printf("%s\n", l.String())
|
|
|
|
}
|
|
|
|
case "actors":
|
|
|
|
for _, a := range snapshot.Actors {
|
|
|
|
fmt.Printf("%s\n", a.DisplayName())
|
|
|
|
}
|
|
|
|
case "participants":
|
|
|
|
for _, p := range snapshot.Participants {
|
|
|
|
fmt.Printf("%s\n", p.DisplayName())
|
2019-04-03 22:05:58 +03:00
|
|
|
}
|
2019-01-08 01:08:48 +03:00
|
|
|
case "shortId":
|
2019-08-12 17:12:14 +03:00
|
|
|
fmt.Printf("%s\n", snapshot.Id().Human())
|
2019-01-08 01:08:48 +03:00
|
|
|
case "status":
|
|
|
|
fmt.Printf("%s\n", snapshot.Status)
|
|
|
|
case "title":
|
|
|
|
fmt.Printf("%s\n", snapshot.Title)
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("\nUnsupported field: %s\n", showFieldsQuery)
|
|
|
|
}
|
2018-07-17 21:51:09 +03:00
|
|
|
|
2019-01-08 01:08:48 +03:00
|
|
|
return nil
|
|
|
|
}
|
2018-07-17 21:51:09 +03:00
|
|
|
|
2019-01-08 01:08:48 +03:00
|
|
|
// Header
|
|
|
|
fmt.Printf("[%s] %s %s\n\n",
|
|
|
|
colors.Yellow(snapshot.Status),
|
2019-08-12 17:12:14 +03:00
|
|
|
colors.Cyan(snapshot.Id().Human()),
|
2019-01-08 01:08:48 +03:00
|
|
|
snapshot.Title,
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("%s opened this issue %s\n\n",
|
|
|
|
colors.Magenta(firstComment.Author.DisplayName()),
|
|
|
|
firstComment.FormatTimeRel(),
|
|
|
|
)
|
|
|
|
|
2019-04-05 17:42:45 +03:00
|
|
|
// Labels
|
2019-01-08 01:08:48 +03:00
|
|
|
var labels = make([]string, len(snapshot.Labels))
|
|
|
|
for i := range snapshot.Labels {
|
|
|
|
labels[i] = string(snapshot.Labels[i])
|
|
|
|
}
|
2018-12-22 06:36:32 +03:00
|
|
|
|
2019-04-05 17:42:45 +03:00
|
|
|
fmt.Printf("labels: %s\n",
|
2019-01-08 01:08:48 +03:00
|
|
|
strings.Join(labels, ", "),
|
|
|
|
)
|
|
|
|
|
2019-04-05 17:42:45 +03:00
|
|
|
// Actors
|
|
|
|
var actors = make([]string, len(snapshot.Actors))
|
|
|
|
for i := range snapshot.Actors {
|
|
|
|
actors[i] = snapshot.Actors[i].DisplayName()
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("actors: %s\n",
|
|
|
|
strings.Join(actors, ", "),
|
|
|
|
)
|
|
|
|
|
|
|
|
// Participants
|
|
|
|
var participants = make([]string, len(snapshot.Participants))
|
|
|
|
for i := range snapshot.Participants {
|
|
|
|
participants[i] = snapshot.Participants[i].DisplayName()
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("participants: %s\n\n",
|
|
|
|
strings.Join(participants, ", "),
|
|
|
|
)
|
|
|
|
|
2019-01-08 01:08:48 +03:00
|
|
|
// Comments
|
|
|
|
indent := " "
|
|
|
|
|
|
|
|
for i, comment := range snapshot.Comments {
|
|
|
|
var message string
|
|
|
|
fmt.Printf("%s#%d %s <%s>\n\n",
|
|
|
|
indent,
|
|
|
|
i,
|
|
|
|
comment.Author.DisplayName(),
|
2019-01-19 18:01:06 +03:00
|
|
|
comment.Author.Email(),
|
2018-07-17 21:51:09 +03:00
|
|
|
)
|
2019-01-04 17:15:42 +03:00
|
|
|
|
2019-01-08 01:08:48 +03:00
|
|
|
if comment.Message == "" {
|
|
|
|
message = colors.GreyBold("No description provided.")
|
|
|
|
} else {
|
|
|
|
message = comment.Message
|
2019-01-04 17:15:42 +03:00
|
|
|
}
|
2019-01-08 01:08:48 +03:00
|
|
|
|
|
|
|
fmt.Printf("%s%s\n\n\n",
|
|
|
|
indent,
|
|
|
|
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>]",
|
2019-02-24 16:46:08 +03:00
|
|
|
Short: "Display the details of a bug.",
|
2018-10-17 21:38:10 +03:00
|
|
|
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)
|
2019-01-08 01:08:48 +03:00
|
|
|
showCmd.Flags().StringVarP(&showFieldsQuery, "field", "f", "",
|
2019-04-05 17:42:45 +03:00
|
|
|
"Select field to display. Valid values are [author,authorEmail,createTime,humanId,id,labels,shortId,status,title,actors,participants]")
|
2018-07-17 21:51:09 +03:00
|
|
|
}
|