campaigner/cmd/add.go

154 lines
3.6 KiB
Go
Raw Normal View History

2020-02-29 00:59:54 +01:00
package cmd
import (
2020-02-29 17:45:53 +01:00
"bufio"
"fmt"
2020-02-29 17:45:53 +01:00
"os"
"strconv"
"strings"
2020-02-29 00:59:54 +01:00
"github.com/spf13/cobra"
2020-02-29 01:20:46 +01:00
2020-02-29 13:40:39 +01:00
"git.ctrlz.es/mgdelacroix/campaigner/campaign"
2020-02-29 01:20:46 +01:00
"git.ctrlz.es/mgdelacroix/campaigner/model"
2020-02-29 00:59:54 +01:00
)
func GrepAddCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "grep",
Short: "generates the tickets reading grep's output from stdin",
Long: "Generates tickets for the campaign reading from the standard input the output grep. The grep command must be run with the -n flag",
Example: ` grep -nriIF --include \*.go cobra.Command | campaigner add grep`,
Args: cobra.NoArgs,
Run: grepAddCmdF,
}
cmd.Flags().BoolP("file-only", "f", false, "generates one ticket per file instead of per match")
return cmd
}
func AgAddCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "ag",
Short: "generates the tickets reading ag's output from stdin",
Long: "Generates tickets for the campaign reading from the standard input the output ag",
Example: ` ag cobra.Command | campaigner add ag`,
Args: cobra.NoArgs,
RunE: agAddCmdF,
}
cmd.Flags().BoolP("file-only", "f", false, "generates one ticket per file instead of per match")
return cmd
}
func GovetAddCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "govet",
Short: "generates the tickets reading govet's output from stdin",
Long: "Generates tickets for the campaign reading from the standard input the output grep. The grep command must be run with the -json flag",
Example: ` govet -json ./... | campaigner add govet`,
Args: cobra.NoArgs,
RunE: govetAddCmdF,
}
cmd.Flags().BoolP("file-only", "f", false, "generates one ticket per file instead of per match")
return cmd
}
func CsvAddCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "csv",
Short: "generates the tickets reading a csv file",
Example: ` campaigner add csv --file tickets.csv`,
Args: cobra.NoArgs,
RunE: csvAddCmdF,
}
cmd.Flags().BoolP("file-only", "f", false, "generates one ticket per file instead of per match")
return cmd
}
2020-02-29 00:59:54 +01:00
func AddCmd() *cobra.Command {
2020-02-29 01:20:46 +01:00
cmd := &cobra.Command{
2020-02-29 00:59:54 +01:00
Use: "add",
2020-02-29 17:45:53 +01:00
Short: "Adds tickets to the campaign from the output of grep/ag/govet",
2020-02-29 00:59:54 +01:00
}
cmd.AddCommand(
GrepAddCmd(),
AgAddCmd(),
GovetAddCmd(),
CsvAddCmd(),
)
2020-02-29 01:20:46 +01:00
return cmd
}
2020-02-29 17:45:53 +01:00
func parseGrepLine(line string) (*model.Ticket, error) {
2020-02-29 13:11:36 +01:00
// ToDo: it would be great to be able to relate a line with its
// parent method, at least for JS and Golang
parts := strings.Split(line, ":")
if len(parts) < 3 {
return nil, fmt.Errorf("cannot parse line: %s", line)
}
filename := parts[0]
lineNo, err := strconv.Atoi(parts[1])
if err != nil {
return nil, err
}
text := strings.Join(parts[2:], "")
2020-02-29 17:45:53 +01:00
return &model.Ticket{
Filename: filename,
LineNo: lineNo,
Text: text,
}, nil
}
2020-02-29 17:45:53 +01:00
func parseGrep() []*model.Ticket {
tickets := []*model.Ticket{}
2020-02-29 17:45:53 +01:00
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
ticket, _ := parseGrepLine(scanner.Text())
if ticket != nil {
tickets = append(tickets, ticket)
}
}
2020-02-29 17:45:53 +01:00
return tickets
}
func grepAddCmdF(cmd *cobra.Command, _ []string) {
2020-03-01 13:21:10 +01:00
fileOnly, _ := cmd.Flags().GetBool("file-only")
2020-02-29 14:29:32 +01:00
tickets := parseGrep()
2020-02-29 13:40:39 +01:00
cmp, err := campaign.Read()
if err != nil {
ErrorAndExit(cmd, err)
}
cmp.Tickets = append(cmp.Tickets, tickets...)
2020-03-01 13:21:10 +01:00
cmp.Tickets = model.RemoveDuplicateTickets(cmp.Tickets, fileOnly)
2020-02-29 13:40:39 +01:00
if err := campaign.Save(cmp); err != nil {
ErrorAndExit(cmd, err)
}
}
func agAddCmdF(_ *cobra.Command, _ []string) error {
return fmt.Errorf("not implemented yet")
}
func govetAddCmdF(_ *cobra.Command, _ []string) error {
return fmt.Errorf("not implemented yet")
}
func csvAddCmdF(cmd *cobra.Command, _ []string) error {
return fmt.Errorf("not implemented yet")
2020-02-29 00:59:54 +01:00
}