2020-04-29 19:52:15 +02:00
|
|
|
package app
|
2020-03-07 13:08:03 +01:00
|
|
|
|
|
|
|
import (
|
2020-04-28 11:21:31 +02:00
|
|
|
"bytes"
|
2020-03-07 13:08:03 +01:00
|
|
|
"context"
|
2020-04-27 11:42:29 +02:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2020-04-28 11:21:31 +02:00
|
|
|
"text/template"
|
2020-03-07 13:08:03 +01:00
|
|
|
|
2020-03-07 13:27:11 +01:00
|
|
|
"git.ctrlz.es/mgdelacroix/campaigner/model"
|
|
|
|
|
2020-04-27 11:42:29 +02:00
|
|
|
"github.com/StevenACoffman/j2m"
|
2020-03-07 13:08:03 +01:00
|
|
|
"github.com/google/go-github/v29/github"
|
2020-03-07 13:27:11 +01:00
|
|
|
"golang.org/x/oauth2"
|
2020-03-07 13:08:03 +01:00
|
|
|
)
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func (a *App) InitGithubClient() error {
|
2020-03-07 13:08:03 +01:00
|
|
|
ctx := context.Background()
|
2020-04-29 19:52:15 +02:00
|
|
|
ts := oauth2.StaticTokenSource(&oauth2.Token{AccessToken: a.Campaign.Github.Token})
|
2020-03-07 13:08:03 +01:00
|
|
|
tc := oauth2.NewClient(ctx, ts)
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
a.githubClient = github.NewClient(tc)
|
|
|
|
return nil
|
2020-03-07 13:27:11 +01:00
|
|
|
}
|
|
|
|
|
2020-04-28 11:21:31 +02:00
|
|
|
func getFooterTemplate(ticket *model.Ticket, templatePath string) (string, error) {
|
|
|
|
footerTmpl, err := template.ParseFiles(templatePath)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
var footerBytes bytes.Buffer
|
|
|
|
if err := footerTmpl.Execute(&footerBytes, ticket); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return footerBytes.String(), nil
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func (a *App) PublishInGithub(ticket *model.Ticket, dryRun bool) (*github.Issue, error) {
|
2020-04-27 11:42:29 +02:00
|
|
|
mdDescription := j2m.JiraToMD(ticket.Description)
|
2020-04-29 19:52:15 +02:00
|
|
|
if a.Campaign.FooterTemplate != "" {
|
|
|
|
footer, err := getFooterTemplate(ticket, a.Campaign.FooterTemplate)
|
2020-04-28 11:21:31 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
mdDescription += "\n" + footer
|
|
|
|
}
|
|
|
|
|
2020-04-27 11:42:29 +02:00
|
|
|
issueRequest := &github.IssueRequest{
|
|
|
|
Title: &ticket.Summary,
|
|
|
|
Body: &mdDescription,
|
2020-04-29 19:52:15 +02:00
|
|
|
Labels: &a.Campaign.Github.Labels,
|
2020-04-27 11:42:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if dryRun {
|
|
|
|
b, _ := json.MarshalIndent(issueRequest, "", " ")
|
|
|
|
fmt.Println(string(b))
|
|
|
|
return &github.Issue{
|
|
|
|
Title: issueRequest.Title,
|
|
|
|
Body: issueRequest.Body,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
owner, repo := a.Campaign.RepoComponents()
|
|
|
|
newIssue, _, err := a.githubClient.Issues.Create(context.Background(), owner, repo, issueRequest)
|
2020-04-27 11:42:29 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return newIssue, nil
|
2020-03-07 13:27:11 +01:00
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func (a *App) PublishNextInGithub(dryRun bool) (bool, error) {
|
|
|
|
ticket := a.Campaign.NextGithubUnpublishedTicket()
|
2020-03-07 13:27:11 +01:00
|
|
|
if ticket == nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
issue, err := a.PublishInGithub(ticket, dryRun)
|
2020-03-07 13:27:11 +01:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if dryRun {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-04-27 12:22:15 +02:00
|
|
|
ticket.GithubLink = issue.GetNumber()
|
2020-04-27 17:47:13 +02:00
|
|
|
if user := issue.GetUser(); user != nil {
|
|
|
|
ticket.GithubAssignee = user.GetLogin()
|
|
|
|
}
|
|
|
|
ticket.GithubStatus = issue.GetState()
|
2020-04-29 19:52:15 +02:00
|
|
|
if err := a.Save(); err != nil {
|
2020-03-07 13:27:11 +01:00
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func (a *App) PublishAllInGithub(dryRun bool) (int, error) {
|
2020-03-07 13:27:11 +01:00
|
|
|
count := 0
|
|
|
|
for {
|
2020-04-29 19:52:15 +02:00
|
|
|
next, err := a.PublishNextInGithub(dryRun)
|
2020-03-07 13:27:11 +01:00
|
|
|
if err != nil {
|
|
|
|
return count, err
|
|
|
|
}
|
|
|
|
if !next {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
return count, nil
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:52:15 +02:00
|
|
|
func (a *App) PublishBatchInGithub(batch int, dryRun bool) error {
|
2020-04-27 11:42:29 +02:00
|
|
|
for i := 1; i <= batch; i++ {
|
2020-04-29 19:52:15 +02:00
|
|
|
next, err := a.PublishNextInGithub(dryRun)
|
2020-03-07 13:27:11 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !next {
|
|
|
|
return nil
|
|
|
|
}
|
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
|
|
|
}
|