2020-09-30 05:11:33 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package print
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2020-12-08 10:28:54 +00:00
|
|
|
"strconv"
|
2020-09-30 05:11:33 +00:00
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// IssueDetails print an issue rendered to stdout
|
|
|
|
func IssueDetails(issue *gitea.Issue) {
|
2020-12-08 10:28:54 +00:00
|
|
|
outputMarkdown(fmt.Sprintf(
|
2020-12-08 04:06:05 +00:00
|
|
|
"# #%d %s (%s)\n@%s created %s\n\n%s\n",
|
2020-10-05 02:23:57 +00:00
|
|
|
issue.Index,
|
2020-09-30 05:11:33 +00:00
|
|
|
issue.Title,
|
|
|
|
issue.State,
|
|
|
|
issue.Poster.UserName,
|
2020-10-05 12:23:32 +00:00
|
|
|
FormatTime(issue.Created),
|
2020-09-30 05:11:33 +00:00
|
|
|
issue.Body,
|
2020-10-05 02:23:57 +00:00
|
|
|
))
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
2020-12-08 10:28:54 +00:00
|
|
|
|
|
|
|
// IssuesList prints a listing of issues
|
|
|
|
func IssuesList(issues []*gitea.Issue, output string) {
|
|
|
|
var values [][]string
|
|
|
|
headers := []string{
|
|
|
|
"Index",
|
|
|
|
"Title",
|
|
|
|
"State",
|
|
|
|
"Author",
|
|
|
|
"Milestone",
|
|
|
|
"Updated",
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(issues) == 0 {
|
|
|
|
outputList(output, headers, values)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, issue := range issues {
|
|
|
|
author := issue.Poster.FullName
|
|
|
|
if len(author) == 0 {
|
|
|
|
author = issue.Poster.UserName
|
|
|
|
}
|
|
|
|
mile := ""
|
|
|
|
if issue.Milestone != nil {
|
|
|
|
mile = issue.Milestone.Title
|
|
|
|
}
|
|
|
|
values = append(
|
|
|
|
values,
|
|
|
|
[]string{
|
|
|
|
strconv.FormatInt(issue.Index, 10),
|
|
|
|
issue.Title,
|
|
|
|
string(issue.State),
|
|
|
|
author,
|
|
|
|
mile,
|
|
|
|
FormatTime(issue.Updated),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
outputList(output, headers, values)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IssuesPullsList prints a listing of issues & pulls
|
|
|
|
// TODO combine with IssuesList
|
|
|
|
func IssuesPullsList(issues []*gitea.Issue, output string) {
|
|
|
|
var values [][]string
|
|
|
|
headers := []string{
|
|
|
|
"Index",
|
|
|
|
"State",
|
|
|
|
"Kind",
|
|
|
|
"Author",
|
|
|
|
"Updated",
|
|
|
|
"Title",
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(issues) == 0 {
|
|
|
|
outputList(output, headers, values)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, issue := range issues {
|
|
|
|
name := issue.Poster.FullName
|
|
|
|
if len(name) == 0 {
|
|
|
|
name = issue.Poster.UserName
|
|
|
|
}
|
|
|
|
kind := "Issue"
|
|
|
|
if issue.PullRequest != nil {
|
|
|
|
kind = "Pull"
|
|
|
|
}
|
|
|
|
values = append(
|
|
|
|
values,
|
|
|
|
[]string{
|
|
|
|
strconv.FormatInt(issue.Index, 10),
|
|
|
|
string(issue.State),
|
|
|
|
kind,
|
|
|
|
name,
|
|
|
|
FormatTime(issue.Updated),
|
|
|
|
issue.Title,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
outputList(output, headers, values)
|
|
|
|
}
|