Add report user command

This commit is contained in:
Miguel de la Cruz 2020-09-24 14:02:04 +02:00
parent 177ed7fd6e
commit 0e6678534e
5 changed files with 69 additions and 4 deletions

30
model/campaign_reports.go Normal file
View file

@ -0,0 +1,30 @@
package model
import (
"fmt"
"os"
"text/tabwriter"
)
func (c *Campaign) PrintUserReport() {
userTickets := map[string]int{}
for _, ticket := range c.Tickets {
user := ticket.GithubAssignee
if user != "" {
if count, ok := userTickets[user]; ok {
userTickets[user] = count+1
} else {
userTickets[user] = 1
}
}
}
fmt.Println("User report:\n")
w := tabwriter.NewWriter(os.Stdout, 3, 0, 3, ' ', tabwriter.AlignRight)
fmt.Fprintln(w, "GitHub username\tTickets closed\t")
for user, count := range userTickets {
fmt.Fprintf(w, "%s\t%d\t\n", user, count)
}
w.Flush()
fmt.Println()
}