mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
d2295828d0
Path-only URLs need an absolute reference to be resolved against for printing in markdown Previously we resolved against the URL to the resource we were operating on (eg comment or issue URL). The markdown renderer in the web UI resolves all such URLs relative to the repo base URL. This PR adopts this behaviour in tea, by trimming the URL to a repo base URL via regex. This makes a custom patch to our markdown renderer `glamour` obsolete, which turned out to be an incorrect patch, meaning we can make use of upstream glamour again. Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/401 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
241 lines
5.3 KiB
Go
241 lines
5.3 KiB
Go
// 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"
|
|
"strings"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
var ciStatusSymbols = map[gitea.StatusState]string{
|
|
gitea.StatusSuccess: "✓ ",
|
|
gitea.StatusPending: "⭮ ",
|
|
gitea.StatusWarning: "⚠ ",
|
|
gitea.StatusError: "✘ ",
|
|
gitea.StatusFailure: "❌ ",
|
|
}
|
|
|
|
// PullDetails print an pull rendered to stdout
|
|
func PullDetails(pr *gitea.PullRequest, reviews []*gitea.PullReview, ciStatus *gitea.CombinedStatus) {
|
|
base := pr.Base.Name
|
|
head := formatPRHead(pr)
|
|
state := formatPRState(pr)
|
|
|
|
out := fmt.Sprintf(
|
|
"# #%d %s (%s)\n@%s created %s\t**%s** <- **%s**\n\n%s\n\n",
|
|
pr.Index,
|
|
pr.Title,
|
|
state,
|
|
pr.Poster.UserName,
|
|
FormatTime(*pr.Created),
|
|
base,
|
|
head,
|
|
pr.Body,
|
|
)
|
|
|
|
if ciStatus != nil || len(reviews) != 0 || pr.State == gitea.StateOpen {
|
|
out += "---\n"
|
|
}
|
|
|
|
out += formatReviews(reviews)
|
|
|
|
if ciStatus != nil {
|
|
var summary, errors string
|
|
for _, s := range ciStatus.Statuses {
|
|
summary += ciStatusSymbols[s.State]
|
|
if s.State != gitea.StatusSuccess {
|
|
errors += fmt.Sprintf(" - [**%s**:\t%s](%s)\n", s.Context, s.Description, s.TargetURL)
|
|
}
|
|
}
|
|
if len(ciStatus.Statuses) != 0 {
|
|
out += fmt.Sprintf("- CI: %s\n%s", summary, errors)
|
|
}
|
|
}
|
|
|
|
if pr.State == gitea.StateOpen {
|
|
if pr.Mergeable {
|
|
out += "- No Conflicts\n"
|
|
} else {
|
|
out += "- **Conflicting files**\n"
|
|
}
|
|
}
|
|
|
|
outputMarkdown(out, getRepoURL(pr.HTMLURL))
|
|
}
|
|
|
|
func formatPRHead(pr *gitea.PullRequest) string {
|
|
head := pr.Head.Name
|
|
if pr.Head.RepoID != pr.Base.RepoID {
|
|
if pr.Head.Repository != nil {
|
|
head = pr.Head.Repository.Owner.UserName + ":" + head
|
|
} else {
|
|
head = "delete:" + head
|
|
}
|
|
}
|
|
return head
|
|
}
|
|
|
|
func formatPRState(pr *gitea.PullRequest) string {
|
|
if pr.Merged != nil {
|
|
return "merged"
|
|
}
|
|
return string(pr.State)
|
|
}
|
|
|
|
func formatReviews(reviews []*gitea.PullReview) string {
|
|
result := ""
|
|
if len(reviews) == 0 {
|
|
return result
|
|
}
|
|
|
|
// deduplicate reviews by user (via review time & userID),
|
|
reviewByUser := make(map[int64]*gitea.PullReview)
|
|
for _, review := range reviews {
|
|
switch review.State {
|
|
case gitea.ReviewStateApproved,
|
|
gitea.ReviewStateRequestChanges,
|
|
gitea.ReviewStateRequestReview:
|
|
if r, ok := reviewByUser[review.Reviewer.ID]; !ok || review.Submitted.After(r.Submitted) {
|
|
reviewByUser[review.Reviewer.ID] = review
|
|
}
|
|
}
|
|
}
|
|
|
|
// group reviews by type
|
|
usersByState := make(map[gitea.ReviewStateType][]string)
|
|
for _, r := range reviewByUser {
|
|
u := r.Reviewer.UserName
|
|
users := usersByState[r.State]
|
|
usersByState[r.State] = append(users, u)
|
|
}
|
|
|
|
// stringify
|
|
for state, user := range usersByState {
|
|
result += fmt.Sprintf("- %s by @%s\n", state, strings.Join(user, ", @"))
|
|
}
|
|
return result
|
|
}
|
|
|
|
// PullsList prints a listing of pulls
|
|
func PullsList(prs []*gitea.PullRequest, output string, fields []string) {
|
|
printPulls(prs, output, fields)
|
|
}
|
|
|
|
// PullFields are all available fields to print with PullsList()
|
|
var PullFields = []string{
|
|
"index",
|
|
"state",
|
|
"author",
|
|
"author-id",
|
|
"url",
|
|
|
|
"title",
|
|
"body",
|
|
|
|
"mergeable",
|
|
"base",
|
|
"base-commit",
|
|
"head",
|
|
"diff",
|
|
"patch",
|
|
|
|
"created",
|
|
"updated",
|
|
"deadline",
|
|
|
|
"assignees",
|
|
"milestone",
|
|
"labels",
|
|
"comments",
|
|
}
|
|
|
|
func printPulls(pulls []*gitea.PullRequest, output string, fields []string) {
|
|
labelMap := map[int64]string{}
|
|
var printables = make([]printable, len(pulls))
|
|
machineReadable := isMachineReadable(output)
|
|
|
|
for i, x := range pulls {
|
|
// pre-serialize labels for performance
|
|
for _, label := range x.Labels {
|
|
if _, ok := labelMap[label.ID]; !ok {
|
|
labelMap[label.ID] = formatLabel(label, !machineReadable, "")
|
|
}
|
|
}
|
|
// store items with printable interface
|
|
printables[i] = &printablePull{x, &labelMap}
|
|
}
|
|
|
|
t := tableFromItems(fields, printables, machineReadable)
|
|
t.print(output)
|
|
}
|
|
|
|
type printablePull struct {
|
|
*gitea.PullRequest
|
|
formattedLabels *map[int64]string
|
|
}
|
|
|
|
func (x printablePull) FormatField(field string, machineReadable bool) string {
|
|
switch field {
|
|
case "index":
|
|
return fmt.Sprintf("%d", x.Index)
|
|
case "state":
|
|
return formatPRState(x.PullRequest)
|
|
case "author":
|
|
return formatUserName(x.Poster)
|
|
case "author-id":
|
|
return x.Poster.UserName
|
|
case "url":
|
|
return x.HTMLURL
|
|
case "title":
|
|
return x.Title
|
|
case "body":
|
|
return x.Body
|
|
case "created":
|
|
return FormatTime(*x.Created)
|
|
case "updated":
|
|
return FormatTime(*x.Updated)
|
|
case "deadline":
|
|
if x.Deadline == nil {
|
|
return ""
|
|
}
|
|
return FormatTime(*x.Deadline)
|
|
case "milestone":
|
|
if x.Milestone != nil {
|
|
return x.Milestone.Title
|
|
}
|
|
return ""
|
|
case "labels":
|
|
var labels = make([]string, len(x.Labels))
|
|
for i, l := range x.Labels {
|
|
labels[i] = (*x.formattedLabels)[l.ID]
|
|
}
|
|
return strings.Join(labels, " ")
|
|
case "assignees":
|
|
var assignees = make([]string, len(x.Assignees))
|
|
for i, a := range x.Assignees {
|
|
assignees[i] = formatUserName(a)
|
|
}
|
|
return strings.Join(assignees, " ")
|
|
case "comments":
|
|
return fmt.Sprintf("%d", x.Comments)
|
|
case "mergeable":
|
|
isMergeable := x.Mergeable && x.State == gitea.StateOpen
|
|
return formatBoolean(isMergeable, !machineReadable)
|
|
case "base":
|
|
return x.Base.Ref
|
|
case "base-commit":
|
|
return x.MergeBase
|
|
case "head":
|
|
return formatPRHead(x.PullRequest)
|
|
case "diff":
|
|
return x.DiffURL
|
|
case "patch":
|
|
return x.PatchURL
|
|
}
|
|
return ""
|
|
}
|