campaigner/model/campaign.go

175 lines
4.5 KiB
Go
Raw Normal View History

2020-02-29 00:49:55 +01:00
package model
2020-03-06 19:54:52 +01:00
import (
"bytes"
2020-03-06 19:54:52 +01:00
"fmt"
2020-09-24 19:01:18 +02:00
"os"
"strings"
2020-09-24 14:16:51 +02:00
"text/tabwriter"
"text/template"
2020-04-28 08:51:06 +02:00
"github.com/fatih/color"
2020-03-06 19:54:52 +01:00
)
type ConfigJira struct {
Url string `json:"url"`
Username string `json:"username"`
Token string `json:"token"`
Project string `json:"project"`
Epic string `json:"epic"`
IssueType string `json:"issue_type"`
}
type ConfigGithub struct {
Token string `json:"token"`
Repo string `json:"repo"`
Labels []string `json:"labels"`
}
// ToDo: add key-value extra params as a map to allow for customfield_whatever = team
2020-02-29 00:49:55 +01:00
type Campaign struct {
Jira ConfigJira `json:"jira"`
Github ConfigGithub `json:"github"`
Summary string `json:"summary"`
IssueTemplate string `json:"issue_template"`
FooterTemplate string `json:"footer_template"`
Tickets []*Ticket `json:"tickets,omitempty"`
2020-02-29 00:49:55 +01:00
}
2020-03-05 22:37:01 +01:00
func (c *Campaign) NextJiraUnpublishedTicket() *Ticket {
2020-03-05 22:37:01 +01:00
for _, ticket := range c.Tickets {
2020-04-27 12:22:15 +02:00
if !ticket.IsPublishedJira() {
2020-03-05 22:37:01 +01:00
return ticket
}
}
return nil
}
2020-03-06 19:54:52 +01:00
func (c *Campaign) NextGithubUnpublishedTicket() *Ticket {
for _, ticket := range c.Tickets {
2020-04-27 12:22:15 +02:00
if ticket.IsPublishedJira() && !ticket.IsPublishedGithub() {
return ticket
}
}
return nil
}
2020-04-27 12:22:15 +02:00
func (c *Campaign) PrintStatus() {
2020-04-28 08:51:06 +02:00
totalTickets := len(c.Tickets)
var totalPublishedJira, totalPublishedGithub, totalAssigned, totalClosed int
2020-04-28 08:51:06 +02:00
for _, t := range c.Tickets {
if t.IsPublishedJira() {
totalPublishedJira++
if t.IsPublishedGithub() {
totalPublishedGithub++
if t.IsAssigned() {
totalAssigned++
2020-09-24 14:02:04 +02:00
if t.IsClosed() {
totalClosed++
}
}
2020-04-28 08:51:06 +02:00
}
}
2020-03-06 19:54:52 +01:00
}
2020-04-28 08:51:06 +02:00
fmt.Printf("Current campaign for %s with summary\n%s\n\n", color.GreenString(c.Github.Repo), color.CyanString(c.Summary))
if totalTickets == 0 {
fmt.Println("There are no tickets in the campaign. Run \"campaigner add --help\" to find out how to add them.")
return
}
2020-09-24 14:16:51 +02:00
w := tabwriter.NewWriter(os.Stdout, 0, 0, 3, ' ', tabwriter.AlignRight)
fmt.Fprintf(w, " %d\t-\ttotal tickets\t\n", totalTickets)
2020-10-03 14:07:05 +02:00
fmt.Fprintf(w, " %d\t%d%%\tpublished in Jira\t\n", totalPublishedJira, totalPublishedJira*100/totalTickets)
fmt.Fprintf(w, " %d\t%d%%\tpublished in Github\t\n", totalPublishedGithub, totalPublishedGithub*100/totalTickets)
fmt.Fprintf(w, " %d\t%d%%\tassigned\t\n", totalAssigned, totalAssigned*100/totalTickets)
fmt.Fprintf(w, " %d\t%d%%\tclosed\t\n\n", totalClosed, totalClosed*100/totalTickets)
2020-09-24 14:16:51 +02:00
w.Flush()
2020-03-06 19:54:52 +01:00
}
2020-04-29 19:52:15 +02:00
func (c *Campaign) AddTickets(tickets []*Ticket, fileOnly bool) {
c.Tickets = append(c.Tickets, tickets...)
c.RemoveDuplicateTickets(fileOnly)
}
func (c *Campaign) RemoveDuplicateTickets(fileOnly bool) {
2020-04-30 08:13:31 +02:00
datalessTickets := []*Ticket{}
2020-04-29 19:52:15 +02:00
ticketMap := map[string]*Ticket{}
for _, t := range c.Tickets {
filename, _ := t.Data["filename"].(string)
lineNo, _ := t.Data["lineNo"].(int)
2020-04-30 08:13:31 +02:00
if filename == "" {
datalessTickets = append(datalessTickets, t)
continue
}
2020-04-29 19:52:15 +02:00
if fileOnly {
ticketMap[filename] = t
} else {
ticketMap[fmt.Sprintf("%s:%d", filename, lineNo)] = t
}
}
cleanTickets := []*Ticket{}
2020-04-30 08:13:31 +02:00
// dataless tickets are added first as they come from already
// existing tickets in Jira
cleanTickets = append(cleanTickets, datalessTickets...)
2020-04-29 19:52:15 +02:00
for _, t := range ticketMap {
cleanTickets = append(cleanTickets, t)
}
c.Tickets = cleanTickets
}
func (c *Campaign) GetPublishedGithubTickets() []*Ticket {
publishedTickets := []*Ticket{}
for _, ticket := range c.Tickets {
if ticket.IsPublishedGithub() {
publishedTickets = append(publishedTickets, ticket)
}
}
return publishedTickets
2020-04-29 19:52:15 +02:00
}
func (c *Campaign) FillTicket(t *Ticket) error {
summaryTmpl, err := template.New("").Parse(c.Summary)
if err != nil {
return err
}
var summaryBytes bytes.Buffer
if err := summaryTmpl.Execute(&summaryBytes, t.Data); err != nil {
return err
}
t.Summary = summaryBytes.String()
descriptionTemplate, err := template.ParseFiles(c.IssueTemplate)
if err != nil {
return err
}
var descriptionBytes bytes.Buffer
if err := descriptionTemplate.Execute(&descriptionBytes, t.Data); err != nil {
return err
}
t.Description = descriptionBytes.String()
return nil
}
func (c *Campaign) RepoComponents() (string, string) {
parts := strings.Split(c.Github.Repo, "/")
if len(parts) == 2 {
return parts[0], parts[1]
}
return "", ""
}
2020-04-29 22:54:49 +02:00
func (c *Campaign) GetJiraUrl(ticket *Ticket) string {
return fmt.Sprintf("%s/browse/%s", c.Jira.Url, ticket.JiraLink)
}
func (c *Campaign) GetGithubUrl(ticket *Ticket) string {
return fmt.Sprintf("https://github.com/%s/issues/%d", c.Github.Repo, ticket.GithubLink)
}