2018-07-17 21:51:09 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2020-06-21 08:51:48 +03:00
|
|
|
"encoding/json"
|
2018-07-17 21:51:09 +03:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2020-06-21 08:51:48 +03:00
|
|
|
"github.com/MichaelMure/git-bug/bug"
|
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"
|
2020-06-21 08:51:48 +03:00
|
|
|
"strings"
|
|
|
|
"time"
|
2018-07-17 21:51:09 +03:00
|
|
|
)
|
|
|
|
|
2019-01-04 17:15:42 +03:00
|
|
|
var (
|
2020-06-21 08:51:48 +03:00
|
|
|
showFieldsQuery string
|
|
|
|
showOutputFormat string
|
2019-01-04 17:15:42 +03:00
|
|
|
)
|
|
|
|
|
2020-06-21 08:51:48 +03:00
|
|
|
func runShowBug(_ *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
|
|
|
}
|
|
|
|
|
2019-01-08 01:08:48 +03:00
|
|
|
if showFieldsQuery != "" {
|
|
|
|
switch showFieldsQuery {
|
|
|
|
case "author":
|
2020-06-21 08:51:48 +03:00
|
|
|
fmt.Printf("%s\n", snapshot.Author.DisplayName())
|
2019-01-08 01:08:48 +03:00
|
|
|
case "authorEmail":
|
2020-06-21 08:51:48 +03:00
|
|
|
fmt.Printf("%s\n", snapshot.Author.Email())
|
2019-01-08 01:08:48 +03:00
|
|
|
case "createTime":
|
2020-06-21 08:51:48 +03:00
|
|
|
fmt.Printf("%s\n", snapshot.CreatedAt.String())
|
|
|
|
case "lastEdit":
|
|
|
|
fmt.Printf("%s\n", snapshot.LastEditTime().String())
|
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
|
|
|
|
2020-06-21 08:51:48 +03:00
|
|
|
switch showOutputFormat {
|
2020-06-23 12:51:42 +03:00
|
|
|
case "org-mode":
|
|
|
|
return showOrgmodeFormatter(snapshot)
|
2020-06-21 08:51:48 +03:00
|
|
|
case "json":
|
|
|
|
return showJsonFormatter(snapshot)
|
|
|
|
case "plain":
|
|
|
|
return showPlainFormatter(snapshot)
|
|
|
|
case "default":
|
|
|
|
return showDefaultFormatter(snapshot)
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("unknown format %s", showOutputFormat)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func showDefaultFormatter(snapshot *bug.Snapshot) error {
|
2019-01-08 01:08:48 +03:00
|
|
|
// Header
|
2020-06-23 12:51:42 +03:00
|
|
|
fmt.Printf("%s [%s] %s\n\n",
|
2019-08-12 17:12:14 +03:00
|
|
|
colors.Cyan(snapshot.Id().Human()),
|
2020-06-23 12:51:42 +03:00
|
|
|
colors.Yellow(snapshot.Status),
|
2019-01-08 01:08:48 +03:00
|
|
|
snapshot.Title,
|
|
|
|
)
|
|
|
|
|
2020-06-21 08:51:48 +03:00
|
|
|
fmt.Printf("%s opened this issue %s\n",
|
|
|
|
colors.Magenta(snapshot.Author.DisplayName()),
|
|
|
|
snapshot.CreatedAt.String(),
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("This was last edited at %s\n\n",
|
|
|
|
snapshot.LastEditTime().String(),
|
2019-01-08 01:08:48 +03:00
|
|
|
)
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-06-21 08:51:48 +03:00
|
|
|
func showPlainFormatter(snapshot *bug.Snapshot) error {
|
|
|
|
// Header
|
2020-06-23 12:51:42 +03:00
|
|
|
fmt.Printf("%s [%s] %s\n",
|
2020-06-21 08:51:48 +03:00
|
|
|
snapshot.Id().Human(),
|
2020-06-23 12:51:42 +03:00
|
|
|
snapshot.Status,
|
2020-06-21 08:51:48 +03:00
|
|
|
snapshot.Title,
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("author: %s\n",
|
|
|
|
snapshot.Author.DisplayName(),
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("creation time: %s\n",
|
|
|
|
snapshot.CreatedAt.String(),
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("last edit: %s\n",
|
|
|
|
snapshot.LastEditTime().String(),
|
|
|
|
)
|
|
|
|
|
|
|
|
// Labels
|
|
|
|
var labels = make([]string, len(snapshot.Labels))
|
|
|
|
for i := range snapshot.Labels {
|
|
|
|
labels[i] = string(snapshot.Labels[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("labels: %s\n",
|
|
|
|
strings.Join(labels, ", "),
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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",
|
|
|
|
strings.Join(participants, ", "),
|
|
|
|
)
|
|
|
|
|
|
|
|
// Comments
|
|
|
|
indent := " "
|
|
|
|
|
|
|
|
for i, comment := range snapshot.Comments {
|
|
|
|
var message string
|
|
|
|
fmt.Printf("%s#%d %s <%s>\n",
|
|
|
|
indent,
|
|
|
|
i,
|
|
|
|
comment.Author.DisplayName(),
|
|
|
|
comment.Author.Email(),
|
|
|
|
)
|
|
|
|
|
|
|
|
if comment.Message == "" {
|
|
|
|
message = "No description provided."
|
|
|
|
} else {
|
|
|
|
message = comment.Message
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("%s%s\n",
|
|
|
|
indent,
|
2020-06-24 05:22:32 +03:00
|
|
|
strings.ReplaceAll(message, "\n", fmt.Sprintf("\n%s", indent)),
|
2020-06-21 08:51:48 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type JSONBugSnapshot struct {
|
|
|
|
Id string `json:"id"`
|
|
|
|
HumanId string `json:"human_id"`
|
|
|
|
CreationTime time.Time `json:"creation_time"`
|
|
|
|
LastEdited time.Time `json:"last_edited"`
|
|
|
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
Labels []bug.Label `json:"labels"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Author JSONIdentity `json:"author"`
|
|
|
|
Actors []JSONIdentity `json:"actors"`
|
|
|
|
Participants []JSONIdentity `json:"participants"`
|
|
|
|
|
|
|
|
Comments []JSONComment `json:"comments"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type JSONComment struct {
|
|
|
|
Id int `json:"id"`
|
|
|
|
AuthorName string `json:"author_name"`
|
|
|
|
AuthorLogin string `json:"author_login"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func showJsonFormatter(snapshot *bug.Snapshot) error {
|
|
|
|
jsonBug := JSONBugSnapshot{
|
|
|
|
snapshot.Id().String(),
|
|
|
|
snapshot.Id().Human(),
|
|
|
|
snapshot.CreatedAt,
|
|
|
|
snapshot.LastEditTime(),
|
|
|
|
snapshot.Status.String(),
|
|
|
|
snapshot.Labels,
|
|
|
|
snapshot.Title,
|
|
|
|
JSONIdentity{},
|
|
|
|
[]JSONIdentity{},
|
|
|
|
[]JSONIdentity{},
|
|
|
|
[]JSONComment{},
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:22:32 +03:00
|
|
|
author, err := NewJSONIdentity(snapshot.Author)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
jsonBug.Author = author
|
2020-06-21 08:51:48 +03:00
|
|
|
|
|
|
|
for _, element := range snapshot.Actors {
|
2020-06-24 05:22:32 +03:00
|
|
|
actor, err := NewJSONIdentity(element)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
jsonBug.Actors = append(jsonBug.Actors, actor)
|
2020-06-21 08:51:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, element := range snapshot.Participants {
|
2020-06-24 05:22:32 +03:00
|
|
|
participant, err := NewJSONIdentity(element)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
jsonBug.Participants = append(jsonBug.Participants, participant)
|
2020-06-21 08:51:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, comment := range snapshot.Comments {
|
|
|
|
var message string
|
|
|
|
if comment.Message == "" {
|
|
|
|
message = "No description provided."
|
|
|
|
} else {
|
|
|
|
message = comment.Message
|
|
|
|
}
|
|
|
|
jsonBug.Comments = append(jsonBug.Comments, JSONComment{
|
|
|
|
i,
|
|
|
|
comment.Author.Name(),
|
|
|
|
comment.Author.Login(),
|
|
|
|
message,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonObject, _ := json.MarshalIndent(jsonBug, "", " ")
|
|
|
|
fmt.Printf("%s\n", jsonObject)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-23 12:51:42 +03:00
|
|
|
func showOrgmodeFormatter(snapshot *bug.Snapshot) error {
|
|
|
|
// Header
|
|
|
|
fmt.Printf("%s [%s] %s\n",
|
|
|
|
snapshot.Id().Human(),
|
|
|
|
snapshot.Status,
|
|
|
|
snapshot.Title,
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("* Author: %s\n",
|
|
|
|
snapshot.Author.DisplayName(),
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("* Creation Time: %s\n",
|
|
|
|
snapshot.CreatedAt.String(),
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("* Last Edit: %s\n",
|
|
|
|
snapshot.LastEditTime().String(),
|
|
|
|
)
|
|
|
|
|
|
|
|
// Labels
|
|
|
|
var labels = make([]string, len(snapshot.Labels))
|
|
|
|
for i, label := range snapshot.Labels {
|
|
|
|
labels[i] = string(label)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("* Labels:\n")
|
|
|
|
if len(labels) > 0 {
|
|
|
|
fmt.Printf("** %s", strings.TrimSuffix(strings.Join(labels, "\n **"), "\n **"))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Actors
|
|
|
|
var actors = make([]string, len(snapshot.Actors))
|
|
|
|
for i, actor := range snapshot.Actors {
|
|
|
|
actors[i] = fmt.Sprintf("%s %s",
|
|
|
|
actor.Id().Human(),
|
|
|
|
actor.DisplayName(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("* Actors: %s\n",
|
|
|
|
strings.TrimSuffix(strings.Join(actors, "\n **"), "\n **"),
|
|
|
|
)
|
|
|
|
|
|
|
|
// Participants
|
|
|
|
var participants = make([]string, len(snapshot.Participants))
|
|
|
|
for i, participant := range snapshot.Participants {
|
|
|
|
actors[i] = fmt.Sprintf("%s %s",
|
|
|
|
participant.Id().Human(),
|
|
|
|
participant.DisplayName(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("* Participants: %s\n",
|
|
|
|
strings.TrimSuffix(strings.Join(participants, "\n **"), "\n **"),
|
|
|
|
)
|
|
|
|
|
|
|
|
fmt.Printf("* Comments:\n")
|
|
|
|
|
|
|
|
for i, comment := range snapshot.Comments {
|
|
|
|
var message string
|
|
|
|
fmt.Printf("** #%d %s [%s]\n",
|
|
|
|
i,
|
|
|
|
comment.Author.DisplayName(),
|
|
|
|
)
|
|
|
|
|
|
|
|
if comment.Message == "" {
|
|
|
|
message = "No description provided."
|
|
|
|
} else {
|
2020-06-24 05:22:32 +03:00
|
|
|
message = strings.ReplaceAll(comment.Message, "\n", "\n: ")
|
2020-06-23 12:51:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf(": %s\n",
|
|
|
|
message,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2020-06-21 08:51:48 +03:00
|
|
|
showCmd.Flags().StringVarP(&showFieldsQuery, "field", "", "",
|
|
|
|
"Select field to display. Valid values are [author,authorEmail,createTime,lastEdit,humanId,id,labels,shortId,status,title,actors,participants]")
|
|
|
|
showCmd.Flags().StringVarP(&showOutputFormat, "format", "f", "default",
|
2020-06-23 12:51:42 +03:00
|
|
|
"Select the output formatting style. Valid values are [default,plain,json,org-mode]")
|
2018-07-17 21:51:09 +03:00
|
|
|
}
|