|
| 1 | +package cli |
| 2 | + |
| 3 | +import ( |
| 4 | + "fmt" |
| 5 | + "github.com/ctreminiom/go-atlassian/v2/pkg/infra/models" |
| 6 | + "github.com/katbyte/ghp-repo-sync/lib/gh" |
| 7 | + "github.com/katbyte/ghp-repo-sync/lib/j" |
| 8 | + "github.com/spf13/cobra" |
| 9 | + "strings" |
| 10 | + "time" |
| 11 | + |
| 12 | + //nolint:misspell |
| 13 | + c "github.com/gookit/color" |
| 14 | +) |
| 15 | + |
| 16 | +func CmdJIRA(_ *cobra.Command, _ []string) error { |
| 17 | + f := GetFlags() |
| 18 | + |
| 19 | + p := gh.NewProject(f.ProjectOwner, f.ProjectNumber, f.Token) |
| 20 | + jira := j.NewInstance(f.Jira.Url, f.Jira.User, f.Jira.Token) |
| 21 | + |
| 22 | + ghc, ctx := p.NewClient() |
| 23 | + |
| 24 | + c.Printf("Looking up project details for <green>%s</>/<lightGreen>%d</>...\n", f.ProjectOwner, f.ProjectNumber) |
| 25 | + err := p.LoadDetails() |
| 26 | + if err != nil { |
| 27 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 28 | + return nil |
| 29 | + } |
| 30 | + c.Printf(" ID: <magenta>%s</>\n", p.ID) |
| 31 | + |
| 32 | + // todo we can probably remove this? its just for printing the fields (we do this multiple times so maybe just a helper) |
| 33 | + for _, f := range p.Fields { |
| 34 | + c.Printf(" <lightBlue>%s</> <> <lightCyan>%s</>\n", f.Name, f.ID) |
| 35 | + |
| 36 | + if f.Name == "Status" { |
| 37 | + for _, s := range f.Options { |
| 38 | + c.Printf(" <blue>%s</> <> <cyan>%s</>\n", s.Name, s.ID) |
| 39 | + } |
| 40 | + } |
| 41 | + } |
| 42 | + fmt.Println() |
| 43 | + |
| 44 | + c.Printf("Retrieving all issues matching <white>%s</> from <cyan>%s</>...\n", f.Jira.JQL, f.Jira.Url) |
| 45 | + c.Printf(" Fields %s\n", strings.Join(f.Jira.Fields, ", ")) |
| 46 | + c.Printf(" Expand %s\n", strings.Join(f.Jira.Expand, ", ")) |
| 47 | + |
| 48 | + //custom fields, this needs to be configurable but how? TODO |
| 49 | + // customfield_10089 -> type -> project_field ? |
| 50 | + cfIssueLink := "customfield_10089" |
| 51 | + cfSE := "customfield_10582" |
| 52 | + cfACV := "customfield_10134" |
| 53 | + |
| 54 | + // temp fields to get the jira issues |
| 55 | + fields := []string{"status", "summary", "created", "parent", "IssueLinks", "Issue Link", "Solution Engineer", cfIssueLink, cfSE, cfACV} |
| 56 | + expand := []string{} |
| 57 | + |
| 58 | + n := 0 |
| 59 | + err = jira.ListAllIssues(f.Jira.JQL, &fields, &expand, func(results *models.IssueSearchScheme, resp *models.ResponseScheme) error { |
| 60 | + c.Printf("<magenta>%d</>-<lightMagenta>%d</> <darkGray>of %d</>\n", results.StartAt, results.MaxResults, results.Total) |
| 61 | + |
| 62 | + //custom fields need to be loaded from the response |
| 63 | + issueLinks, err := models.ParseStringCustomFields(resp.Bytes, cfIssueLink) |
| 64 | + if err != nil { |
| 65 | + return fmt.Errorf("failed to parse issue links: %w", err) |
| 66 | + } |
| 67 | + |
| 68 | + solutionEngineers, err := models.ParseUserPickerCustomFields(resp.Bytes, cfSE) |
| 69 | + if err != nil { |
| 70 | + return fmt.Errorf("failed to parse solution engineers: %w", err) |
| 71 | + } |
| 72 | + |
| 73 | + acvs, err := models.ParseFloatCustomFields(resp.Bytes, cfACV) |
| 74 | + if err != nil { |
| 75 | + return fmt.Errorf("failed to parse acvs: %w", err) |
| 76 | + } |
| 77 | + |
| 78 | + for _, jiraIssue := range results.Issues { |
| 79 | + n++ |
| 80 | + |
| 81 | + keyColour := "lightGreen" |
| 82 | + if jiraIssue.Fields.Status.Name == "Closed" { |
| 83 | + keyColour = "green" |
| 84 | + } |
| 85 | + |
| 86 | + // lets collect everything we need |
| 87 | + key := jiraIssue.Key |
| 88 | + url := fmt.Sprintf("%s/browse/%s", jira.URL, key) |
| 89 | + summary := jiraIssue.Fields.Summary |
| 90 | + status := jiraIssue.Fields.Status.Name |
| 91 | + ghLink := issueLinks[jiraIssue.Key] |
| 92 | + created := time.Time(*jiraIssue.Fields.Created) |
| 93 | + |
| 94 | + parent := "" |
| 95 | + if jiraIssue.Fields.Parent != nil { |
| 96 | + parent = jiraIssue.Fields.Parent.Fields.Summary |
| 97 | + } |
| 98 | + |
| 99 | + se := "" |
| 100 | + if solutionEngineers[jiraIssue.Key] != nil { |
| 101 | + se = solutionEngineers[jiraIssue.Key].DisplayName |
| 102 | + } |
| 103 | + |
| 104 | + //c.Printf("<darkGray>%03d/%d</> <%s>%s</><darkGray>@%s</> - %s\n", n, results.Total, keyColour, jiraIssue.Key, parsedDate.Format("2006-01-02"), jiraIssue.Fields.Summary) |
| 105 | + c.Printf("<darkGray>%03d/%d</> <%s>%s</><darkGray>@%v</> - %s\n", n, results.Total, keyColour, key, created, summary) |
| 106 | + |
| 107 | + owner, name, _, number, err := gh.ParseGitHubURL(ghLink) |
| 108 | + if err != nil { |
| 109 | + c.Printf("\n\n <red>ERROR!!</> parsing gh url %s: %s", ghLink, err) |
| 110 | + return nil |
| 111 | + } |
| 112 | + |
| 113 | + ghIssue, _, err := ghc.Issues.Get(ctx, owner, name, number) |
| 114 | + if err != nil { |
| 115 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 116 | + return nil |
| 117 | + } |
| 118 | + |
| 119 | + // TODO output all the information we got and are adding to the project in a nice manner |
| 120 | + fmt.Println(" Status: ", status) |
| 121 | + fmt.Println(" Parent: ", parent) |
| 122 | + fmt.Println(" Issue Links: ", ghLink) |
| 123 | + fmt.Println(" Solution Engineers: ", se) |
| 124 | + |
| 125 | + iid, err := p.AddItem(*ghIssue.NodeID) |
| 126 | + if err != nil { |
| 127 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 128 | + continue |
| 129 | + } |
| 130 | + |
| 131 | + c.Printf("\n") |
| 132 | + |
| 133 | + fields := []gh.ProjectItemField{ |
| 134 | + {Name: "key", FieldID: p.FieldIDs["KEY"], Type: gh.ItemValueTypeText, Value: key}, |
| 135 | + {Name: "url", FieldID: p.FieldIDs["JIRA"], Type: gh.ItemValueTypeText, Value: url}, |
| 136 | + {Name: "summary", FieldID: p.FieldIDs["Title (JIRA)"], Type: gh.ItemValueTypeText, Value: summary}, |
| 137 | + {Name: "status", FieldID: p.FieldIDs["Status (JIRA)"], Type: gh.ItemValueTypeText, Value: status}, |
| 138 | + {Name: "parent", FieldID: p.FieldIDs["EPIC"], Type: gh.ItemValueTypeText, Value: parent}, |
| 139 | + {Name: "se", FieldID: p.FieldIDs["SE"], Type: gh.ItemValueTypeText, Value: se}, |
| 140 | + {Name: "age", FieldID: p.FieldIDs["Age (days)"], Type: gh.ItemValueTypeNumber, Value: int(time.Since(created).Hours() / 24)}, |
| 141 | + {Name: "number", FieldID: p.FieldIDs["#"], Type: gh.ItemValueTypeNumber, Value: *ghIssue.Number}, |
| 142 | + } |
| 143 | + |
| 144 | + if v, ok := acvs[jiraIssue.Key]; ok { |
| 145 | + fields = append(fields, gh.ProjectItemField{Name: "acv", FieldID: p.FieldIDs["ACV"], Type: gh.ItemValueTypeNumber, Value: int(v)}) |
| 146 | + } |
| 147 | + |
| 148 | + err = p.UpdateItem(*iid, fields) |
| 149 | + if err != nil { |
| 150 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 151 | + continue |
| 152 | + } |
| 153 | + |
| 154 | + c.Printf("\n") |
| 155 | + } |
| 156 | + |
| 157 | + return nil |
| 158 | + }) |
| 159 | + |
| 160 | + if err != nil { |
| 161 | + return fmt.Errorf("failed to list issues for %s @ %s: %w", jira.URL, f.Jira.JQL, err) |
| 162 | + } |
| 163 | + |
| 164 | + return nil |
| 165 | +} |
0 commit comments