2020-03-04 22:22:16 +01:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2020-03-05 22:37:01 +01:00
|
|
|
"fmt"
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
"git.ctrlz.es/mgdelacroix/campaigner/app"
|
2020-11-18 19:24:40 +01:00
|
|
|
"git.ctrlz.es/mgdelacroix/campaigner/model"
|
2020-03-05 22:37:01 +01:00
|
|
|
|
2020-03-04 22:22:16 +01:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func JiraPublishCmd() *cobra.Command {
|
2020-03-05 20:42:25 +01:00
|
|
|
cmd := &cobra.Command{
|
2020-03-04 22:22:16 +01:00
|
|
|
Use: "jira",
|
2020-03-07 13:08:03 +01:00
|
|
|
Short: "Publishes the campaign tickets in jira",
|
2020-03-04 22:22:16 +01:00
|
|
|
Args: cobra.NoArgs,
|
2020-04-29 19:52:15 +02:00
|
|
|
RunE: withAppE(jiraPublishCmdF),
|
2020-03-04 22:22:16 +01:00
|
|
|
}
|
2020-03-05 20:42:25 +01:00
|
|
|
|
|
|
|
cmd.Flags().BoolP("all", "a", false, "Publish all the tickets of the campaign")
|
|
|
|
cmd.Flags().IntP("batch", "b", 0, "Number of tickets to publish")
|
2020-03-05 22:57:01 +01:00
|
|
|
cmd.Flags().Bool("dry-run", false, "Print the tickets information instead of publishing them")
|
2020-03-05 20:42:25 +01:00
|
|
|
|
|
|
|
return cmd
|
2020-03-04 22:22:16 +01:00
|
|
|
}
|
|
|
|
|
2020-03-07 13:08:03 +01:00
|
|
|
func GithubPublishCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "github",
|
|
|
|
Short: "Publishes the campaign tickets in github",
|
|
|
|
Args: cobra.NoArgs,
|
2020-04-29 19:52:15 +02:00
|
|
|
RunE: withAppE(githubPublishCmdF),
|
2020-03-07 13:08:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd.Flags().BoolP("all", "a", false, "Publish all the tickets of the campaign")
|
|
|
|
cmd.Flags().IntP("batch", "b", 0, "Number of tickets to publish")
|
|
|
|
cmd.Flags().Bool("dry-run", false, "Print the tickets information instead of publishing them")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2020-11-18 19:24:40 +01:00
|
|
|
func TicketPublishCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "ticket",
|
|
|
|
Short: "Publishes an already existing jira ticket in Github",
|
|
|
|
Long: `This command publishes a ticket that is outside the campaign and already created in jira, into Github.
|
|
|
|
|
|
|
|
It is intended to use for standalone Help Wanted tickets that don't fit into a campaing, but nonetheless need to be published in Github and linked back. It does require of a campaign.json file that describes the connection with both the Jira instance and the GitHub repository, but it will never modify it, so the command can be run pointing to a previously existing campaign which connection details match with the ones that apply for the ticket.
|
|
|
|
|
|
|
|
Github labels will not be read from the campaign.json file, so they need to be specified with the --label flag if wanted.`,
|
|
|
|
Example: ` # if we don't want any github label to be added to the ticket
|
|
|
|
$ campaigner publish ticket MM-1234
|
|
|
|
|
|
|
|
# if we want to add some labels in github
|
|
|
|
$ campaigner publish ticket MM-1234 --label Tech/Go --label "Help Wanted"
|
|
|
|
|
|
|
|
# if we want to use a campaign file outside the current directory
|
|
|
|
$ campaigner publish ticket MM-1234 --campaign ~/campaigns/standalone.json`,
|
|
|
|
Args: cobra.ExactArgs(1),
|
|
|
|
RunE: withAppE(ticketPublishCmdF),
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.Flags().StringSliceP("label", "l", []string{}, "the labels to add to the Github issues")
|
|
|
|
cmd.Flags().Bool("dry-run", false, "Print the tickets information instead of publishing them")
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2020-03-04 22:22:16 +01:00
|
|
|
func PublishCmd() *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "publish",
|
2020-04-27 12:22:15 +02:00
|
|
|
Short: "Publishes campaign tickets",
|
|
|
|
Long: "Publishes the campaign tickets in both Jira and Github",
|
2020-03-04 22:22:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(
|
2020-03-07 13:08:03 +01:00
|
|
|
GithubPublishCmd(),
|
2020-03-04 22:22:16 +01:00
|
|
|
JiraPublishCmd(),
|
2020-11-18 19:24:40 +01:00
|
|
|
TicketPublishCmd(),
|
2020-03-04 22:22:16 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func jiraPublishCmdF(a *app.App, cmd *cobra.Command, _ []string) error {
|
2020-03-05 22:37:01 +01:00
|
|
|
all, _ := cmd.Flags().GetBool("all")
|
|
|
|
batch, _ := cmd.Flags().GetInt("batch")
|
2020-03-05 22:57:01 +01:00
|
|
|
dryRun, _ := cmd.Flags().GetBool("dry-run")
|
2020-03-05 22:37:01 +01:00
|
|
|
|
|
|
|
if !all && batch == 0 {
|
|
|
|
return fmt.Errorf("One of --all or --batch flags is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if all {
|
2020-10-03 14:40:09 +02:00
|
|
|
count, err := a.PublishAllInJira(cmd.OutOrStdout(), dryRun)
|
2020-03-05 22:37:01 +01:00
|
|
|
if err != nil {
|
|
|
|
ErrorAndExit(cmd, err)
|
|
|
|
}
|
2020-10-03 14:40:09 +02:00
|
|
|
cmd.Printf("\nAll %d tickets successfully published in jira\n", count)
|
2020-03-05 22:37:01 +01:00
|
|
|
} else {
|
2020-10-03 14:40:09 +02:00
|
|
|
if err := a.PublishBatchInJira(cmd.OutOrStdout(), batch, dryRun); err != nil {
|
2020-03-05 22:37:01 +01:00
|
|
|
ErrorAndExit(cmd, err)
|
2020-03-05 20:42:25 +01:00
|
|
|
}
|
2020-10-03 14:40:09 +02:00
|
|
|
cmd.Printf("\nBatch of %d tickets successfully published in jira\n", batch)
|
2020-03-05 22:37:01 +01:00
|
|
|
}
|
2020-03-05 20:42:25 +01:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-03-07 13:08:03 +01:00
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func githubPublishCmdF(a *app.App, cmd *cobra.Command, _ []string) error {
|
2020-03-07 13:27:11 +01:00
|
|
|
all, _ := cmd.Flags().GetBool("all")
|
|
|
|
batch, _ := cmd.Flags().GetInt("batch")
|
|
|
|
dryRun, _ := cmd.Flags().GetBool("dry-run")
|
|
|
|
|
|
|
|
if !all && batch == 0 {
|
|
|
|
return fmt.Errorf("One of --all or --batch flags is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if all {
|
2020-10-03 14:40:09 +02:00
|
|
|
count, err := a.PublishAllInGithub(cmd.OutOrStdout(), dryRun)
|
2020-03-07 13:27:11 +01:00
|
|
|
if err != nil {
|
|
|
|
ErrorAndExit(cmd, err)
|
|
|
|
}
|
2020-10-03 14:40:09 +02:00
|
|
|
cmd.Printf("\nAll %d tickets successfully published in github\n", count)
|
2020-03-07 13:27:11 +01:00
|
|
|
} else {
|
2020-10-03 14:40:09 +02:00
|
|
|
if err := a.PublishBatchInGithub(cmd.OutOrStdout(), batch, dryRun); err != nil {
|
2020-03-07 13:27:11 +01:00
|
|
|
ErrorAndExit(cmd, err)
|
|
|
|
}
|
2020-10-03 14:40:09 +02:00
|
|
|
cmd.Printf("\nBatch of %d tickets successfully published in github\n", batch)
|
2020-03-07 13:08:03 +01:00
|
|
|
}
|
2020-03-07 13:27:11 +01:00
|
|
|
|
|
|
|
return nil
|
2020-03-07 13:08:03 +01:00
|
|
|
}
|
2020-11-18 19:24:40 +01:00
|
|
|
|
|
|
|
func ticketPublishCmdF(a *app.App, cmd *cobra.Command, args []string) error {
|
|
|
|
labels, _ := cmd.Flags().GetStringSlice("label")
|
|
|
|
dryRun, _ := cmd.Flags().GetBool("dry-run")
|
|
|
|
|
|
|
|
jiraTicketId := args[0]
|
|
|
|
|
|
|
|
jiraIssue, err := a.GetIssue(jiraTicketId)
|
|
|
|
if err != nil {
|
|
|
|
ErrorAndExit(cmd, fmt.Errorf("cannot get jira issue %q: %w", jiraTicketId, err))
|
|
|
|
}
|
|
|
|
|
|
|
|
ticket := &model.Ticket{
|
|
|
|
Summary: jiraIssue.Fields.Summary,
|
|
|
|
Description: jiraIssue.Fields.Description,
|
|
|
|
JiraLink: jiraTicketId,
|
|
|
|
}
|
|
|
|
// update the campaign labels only to publish the ticket
|
|
|
|
a.Campaign.Github.Labels = labels
|
|
|
|
|
|
|
|
githubIssue, err := a.PublishInGithub(ticket, dryRun)
|
|
|
|
if err != nil {
|
|
|
|
ErrorAndExit(cmd, fmt.Errorf("cannot publish ticket %q in github: %w", jiraTicketId, err))
|
|
|
|
}
|
|
|
|
|
|
|
|
if dryRun {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ticket.GithubLink = githubIssue.GetNumber()
|
|
|
|
ticket.GithubStatus = githubIssue.GetState()
|
|
|
|
|
|
|
|
cmd.Printf("Issue published: https://github.com/%s/issues/%d\n", a.Campaign.Github.Repo, ticket.GithubLink)
|
|
|
|
|
|
|
|
if err := a.UpdateJiraAfterGithub(ticket); err != nil {
|
|
|
|
ErrorAndExit(cmd, fmt.Errorf("error updating Jira info for %q after publishing in Github", jiraTicketId))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|