mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
99e49991bb
Together with #415 this finally adds the field flag to all entity listings. closes #342 ### ⚠️ breaking changes ⚠️ This changes the column names of `tea milestones ls`: ```diff - TITLE | OPEN/CLOSED ISSUES | DUEDATE + TITLE | ITEMS | DUEDATE ``` Co-authored-by: Norwin <git@nroo.de> Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/422 Reviewed-by: delvh <dev.lh@web.de> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
84 lines
1.7 KiB
Go
84 lines
1.7 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"
|
|
)
|
|
|
|
// NotificationsList prints a listing of notification threads
|
|
func NotificationsList(news []*gitea.NotificationThread, output string, fields []string) {
|
|
var printables = make([]printable, len(news))
|
|
for i, x := range news {
|
|
printables[i] = &printableNotification{x}
|
|
}
|
|
t := tableFromItems(fields, printables, isMachineReadable(output))
|
|
t.print(output)
|
|
}
|
|
|
|
// NotificationFields are all available fields to print with NotificationsList
|
|
var NotificationFields = []string{
|
|
"id",
|
|
"status",
|
|
"updated",
|
|
|
|
// these are about the notification subject
|
|
"index",
|
|
"type",
|
|
"state",
|
|
"title",
|
|
"repository",
|
|
}
|
|
|
|
type printableNotification struct {
|
|
*gitea.NotificationThread
|
|
}
|
|
|
|
func (n printableNotification) FormatField(field string, machineReadable bool) string {
|
|
switch field {
|
|
case "id":
|
|
return fmt.Sprintf("%d", n.ID)
|
|
|
|
case "status":
|
|
status := "read"
|
|
if n.Pinned {
|
|
status = "pinned"
|
|
} else if n.Unread {
|
|
status = "unread"
|
|
}
|
|
return status
|
|
|
|
case "updated":
|
|
return FormatTime(n.UpdatedAt, machineReadable)
|
|
|
|
case "index":
|
|
var index string
|
|
if n.Subject.Type == "Issue" || n.Subject.Type == "Pull" {
|
|
index = n.Subject.URL
|
|
urlParts := strings.Split(n.Subject.URL, "/")
|
|
if len(urlParts) != 0 {
|
|
index = urlParts[len(urlParts)-1]
|
|
}
|
|
}
|
|
return index
|
|
|
|
case "type":
|
|
return string(n.Subject.Type)
|
|
|
|
case "state":
|
|
return string(n.Subject.State)
|
|
|
|
case "title":
|
|
return n.Subject.Title
|
|
|
|
case "repo", "repository":
|
|
return n.Repository.FullName
|
|
}
|
|
return ""
|
|
}
|