|
| 1 | +package cli |
| 2 | + |
| 3 | +import ( |
| 4 | + "fmt" |
| 5 | + "github.com/katbyte/ghp-repo-sync/lib/gh" |
| 6 | + "github.com/spf13/cobra" |
| 7 | + "strconv" |
| 8 | + //nolint:misspell |
| 9 | + c "github.com/gookit/color" |
| 10 | +) |
| 11 | + |
| 12 | +func CmdSync(_ *cobra.Command, args []string) error { |
| 13 | + f := GetFlags() |
| 14 | + |
| 15 | + sourceProjectOwner := args[0] |
| 16 | + sourceProjectNumber, err := strconv.Atoi(args[1]) |
| 17 | + if err != nil { |
| 18 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 19 | + return nil |
| 20 | + } |
| 21 | + |
| 22 | + source := gh.NewProject(sourceProjectOwner, sourceProjectNumber, f.Token) |
| 23 | + destination := gh.NewProject(f.ProjectOwner, f.ProjectNumber, f.Token) |
| 24 | + |
| 25 | + c.Printf("Looking up project details for <green>%s</>/<lightGreen>%d</>...\n", f.ProjectOwner, f.ProjectNumber) |
| 26 | + err = destination.LoadDetails() |
| 27 | + if err != nil { |
| 28 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 29 | + return nil |
| 30 | + } |
| 31 | + c.Printf(" ID: <magenta>%s</>\n", destination.ID) |
| 32 | + |
| 33 | + // print the fields of the destination project |
| 34 | + for _, f := range destination.Fields { |
| 35 | + c.Printf(" <lightBlue>%s</> <> <lightCyan>%s</>\n", f.Name, f.ID) |
| 36 | + } |
| 37 | + c.Printf(" getting existing items.. ") |
| 38 | + dstItems, err := destination.GetItems() |
| 39 | + if err != nil { |
| 40 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 41 | + return nil |
| 42 | + } |
| 43 | + c.Printf(" <yellow>%d</>\n\n\n", len(dstItems)) |
| 44 | + |
| 45 | + dstItemNodeIDMap := map[string]gh.ProjectItem{} |
| 46 | + for _, item := range dstItems { |
| 47 | + dstItemNodeIDMap[item.NodeID] = item |
| 48 | + } |
| 49 | + |
| 50 | + c.Printf("Getting items from source <green>%s</>/<lightGreen>%d</>...", source.Owner, source.Number) |
| 51 | + srcItems, err := source.GetItems() |
| 52 | + if err != nil { |
| 53 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 54 | + return nil |
| 55 | + } |
| 56 | + c.Printf(" <white>%d</>\n", len(srcItems)) |
| 57 | + |
| 58 | + for _, srcItem := range srcItems { |
| 59 | + c.Printf(" Item: <magenta>%s</> <lightMagenta>(%s)</> ", srcItem.ID, srcItem.NodeID) |
| 60 | + |
| 61 | + // TODO filters, for now we just want to add all PRs with a due date |
| 62 | + if srcItem.DueDate == "" { |
| 63 | + c.Printf(" skipping, no due date\n") |
| 64 | + continue |
| 65 | + } |
| 66 | + |
| 67 | + // parse the url (todo handle issues?) |
| 68 | + owner, name, _, number, err := gh.ParseGitHubURL(srcItem.URL) |
| 69 | + if err != nil { |
| 70 | + c.Printf("\n\n <red>ERROR!!</> parsing gh url %s: %s", srcItem.URL, err) |
| 71 | + return nil |
| 72 | + } |
| 73 | + |
| 74 | + // get the pr via rest |
| 75 | + r, err := gh.NewRepo(owner+"/"+name, f.Token) |
| 76 | + if err != nil { |
| 77 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 78 | + return nil |
| 79 | + } |
| 80 | + |
| 81 | + pr, err := r.GetPullRequest(number) |
| 82 | + if err != nil { |
| 83 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 84 | + return nil |
| 85 | + } |
| 86 | + |
| 87 | + nodeID := *pr.NodeID |
| 88 | + dstItemId := "" |
| 89 | + c.Printf("<blue>%s</>/<lightBlue>%s</>#<lightCyan>%d</> ", owner, name, pr.GetNumber()) |
| 90 | + if di, ok := dstItemNodeIDMap[nodeID]; ok { |
| 91 | + c.Printf(" already exists, ") |
| 92 | + dstItemId = di.ID |
| 93 | + } else { |
| 94 | + c.Printf(" <green>adding</> ") |
| 95 | + |
| 96 | + iid, err := destination.AddItem(nodeID) |
| 97 | + if err != nil { |
| 98 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 99 | + continue |
| 100 | + } |
| 101 | + c.Printf("(<magenta>%s</>), setting status.. ", *iid) |
| 102 | + dstItemId = *iid |
| 103 | + |
| 104 | + err = destination.SetItemStatus(dstItemId, "Unclaimed PR") |
| 105 | + if err != nil { |
| 106 | + c.Printf("\n\n <red>ERROR!!</> %s", err) |
| 107 | + continue |
| 108 | + } |
| 109 | + } |
| 110 | + |
| 111 | + // update the other fields |
| 112 | + c.Printf("<blue>updating</>...") |
| 113 | + |
| 114 | + //update status to "Unclaimed PR" & update request type to |
| 115 | + // TODO we can loop through the fields and build a more dynamic query from a function p.UpdateItemFields() |
| 116 | + q := `query= |
| 117 | + mutation ( |
| 118 | + $project:ID!, $item:ID!, |
| 119 | + $requesttype_field:ID!, $requesttype_value:String!, |
| 120 | + $pr_field:ID!, $pr_value:String!, |
| 121 | + $user_field:ID!, $user_value:String!, |
| 122 | + $duedate_field: ID!, $duedate_value: Date! |
| 123 | + ) { |
| 124 | + set_requesttype: updateProjectV2ItemFieldValue(input: { |
| 125 | + projectId: $project |
| 126 | + itemId: $item |
| 127 | + fieldId: $requesttype_field |
| 128 | + value: { |
| 129 | + text: $requesttype_value |
| 130 | + } |
| 131 | + }) { |
| 132 | + projectV2Item { |
| 133 | + id |
| 134 | + } |
| 135 | + } |
| 136 | + set_pr: updateProjectV2ItemFieldValue(input: { |
| 137 | + projectId: $project |
| 138 | + itemId: $item |
| 139 | + fieldId: $pr_field |
| 140 | + value: { |
| 141 | + text: $pr_value |
| 142 | + } |
| 143 | + }) { |
| 144 | + projectV2Item { |
| 145 | + id |
| 146 | + } |
| 147 | + } |
| 148 | + set_user: updateProjectV2ItemFieldValue(input: { |
| 149 | + projectId: $project |
| 150 | + itemId: $item |
| 151 | + fieldId: $user_field |
| 152 | + value: { |
| 153 | + text: $user_value |
| 154 | + } |
| 155 | + }) { |
| 156 | + projectV2Item { |
| 157 | + id |
| 158 | + } |
| 159 | + } |
| 160 | + set_duedate: updateProjectV2ItemFieldValue(input: { |
| 161 | + projectId: $project |
| 162 | + itemId: $item |
| 163 | + fieldId: $duedate_field |
| 164 | + value: { |
| 165 | + date: $duedate_value |
| 166 | + } |
| 167 | + }) { |
| 168 | + projectV2Item { |
| 169 | + id |
| 170 | + } |
| 171 | + } |
| 172 | + } |
| 173 | + ` |
| 174 | + |
| 175 | + p := [][]string{ |
| 176 | + {"-f", "project=" + destination.ID}, |
| 177 | + {"-f", "item=" + dstItemId}, |
| 178 | + {"-f", "pr_field=" + destination.FieldIDs["PR#"]}, |
| 179 | + {"-f", fmt.Sprintf("pr_value=%d", *pr.Number)}, // todo string + value |
| 180 | + {"-f", "user_field=" + destination.FieldIDs["User"]}, |
| 181 | + {"-f", fmt.Sprintf("user_value=%s", pr.User.GetLogin())}, |
| 182 | + {"-f", "requesttype_field=" + destination.FieldIDs["Request Type"]}, |
| 183 | + {"-f", fmt.Sprintf("requesttype_value=%s", srcItem.RequestType)}, |
| 184 | + {"-f", "duedate_field=" + destination.FieldIDs["Due Date"]}, |
| 185 | + {"-f", fmt.Sprintf("duedate_value=%s", srcItem.DueDate)}, // Replace 'dueDate' with your due date value |
| 186 | + } |
| 187 | + |
| 188 | + if !f.DryRun { |
| 189 | + out, err := r.GraphQLQuery(q, p) |
| 190 | + if err != nil { |
| 191 | + c.Printf("\n\n <red>ERROR!!</> %s\n%s", err, *out) |
| 192 | + return nil |
| 193 | + } |
| 194 | + } |
| 195 | + fmt.Println() |
| 196 | + } |
| 197 | + |
| 198 | + return nil |
| 199 | +} |
0 commit comments