2020-12-08 05:28:54 -05: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 (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// NotificationsList prints a listing of notification threads
|
|
|
|
func NotificationsList(news []*gitea.NotificationThread, output string, showRepository bool) {
|
|
|
|
headers := []string{
|
|
|
|
"Type",
|
|
|
|
"Index",
|
|
|
|
"Title",
|
|
|
|
}
|
|
|
|
if showRepository {
|
|
|
|
headers = append(headers, "Repository")
|
|
|
|
}
|
|
|
|
|
2020-12-09 17:04:36 -05:00
|
|
|
t := table{headers: headers}
|
|
|
|
|
2020-12-08 05:28:54 -05:00
|
|
|
for _, n := range news {
|
|
|
|
if n.Subject == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// if pull or Issue get 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]
|
|
|
|
}
|
|
|
|
index = "#" + index
|
|
|
|
}
|
|
|
|
|
|
|
|
item := []string{n.Subject.Type, index, n.Subject.Title}
|
|
|
|
if showRepository {
|
|
|
|
item = append(item, n.Repository.FullName)
|
|
|
|
}
|
2020-12-09 17:04:36 -05:00
|
|
|
t.addRowSlice(item)
|
2020-12-08 05:28:54 -05:00
|
|
|
}
|
|
|
|
|
2020-12-09 17:04:36 -05:00
|
|
|
if t.Len() != 0 {
|
|
|
|
t.print(output)
|
2020-12-08 05:28:54 -05:00
|
|
|
}
|
|
|
|
}
|