2020-02-29 01:20:46 +01:00
|
|
|
package model
|
|
|
|
|
2020-02-29 14:17:34 +01:00
|
|
|
import (
|
|
|
|
"fmt"
|
2020-03-06 19:54:52 +01:00
|
|
|
"io"
|
2020-02-29 14:17:34 +01:00
|
|
|
)
|
|
|
|
|
2020-03-04 23:07:26 +01:00
|
|
|
type Ticket struct {
|
|
|
|
GithubLink string `json:"githubLink,omitempty"`
|
|
|
|
JiraLink string `json:"jiraLink,omitempty"`
|
2020-03-06 19:54:52 +01:00
|
|
|
Summary string `json:"summary,omitempty"`
|
2020-03-04 23:07:26 +01:00
|
|
|
Data map[string]interface{} `json:"data,omitempty"`
|
|
|
|
}
|
2020-02-29 14:17:34 +01:00
|
|
|
|
2020-03-01 13:21:10 +01:00
|
|
|
func RemoveDuplicateTickets(tickets []*Ticket, fileOnly bool) []*Ticket {
|
2020-02-29 14:17:34 +01:00
|
|
|
ticketMap := map[string]*Ticket{}
|
|
|
|
for _, t := range tickets {
|
2020-03-04 23:07:26 +01:00
|
|
|
filename, _ := t.Data["filename"].(string)
|
|
|
|
lineNo, _ := t.Data["lineNo"].(int)
|
2020-03-01 13:21:10 +01:00
|
|
|
if fileOnly {
|
2020-03-04 21:57:16 +01:00
|
|
|
ticketMap[filename] = t
|
2020-03-01 13:21:10 +01:00
|
|
|
} else {
|
2020-03-04 21:57:16 +01:00
|
|
|
ticketMap[fmt.Sprintf("%s:%d", filename, lineNo)] = t
|
2020-03-01 13:21:10 +01:00
|
|
|
}
|
2020-02-29 14:17:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanTickets := []*Ticket{}
|
|
|
|
for _, t := range ticketMap {
|
|
|
|
cleanTickets = append(cleanTickets, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
return cleanTickets
|
|
|
|
}
|
2020-03-06 19:54:52 +01:00
|
|
|
|
|
|
|
func (t *Ticket) PrintStatus(w io.Writer) {
|
|
|
|
fmt.Fprintf(w, " [%s] %s\n", t.JiraLink, t.Summary)
|
|
|
|
}
|