-
Notifications
You must be signed in to change notification settings - Fork 14
/
branch_submit.go
808 lines (707 loc) · 21.8 KB
/
branch_submit.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
package main
import (
"cmp"
"context"
"errors"
"fmt"
"slices"
"strconv"
"strings"
"time"
"github.com/charmbracelet/log"
"go.abhg.dev/gs/internal/forge"
"go.abhg.dev/gs/internal/git"
"go.abhg.dev/gs/internal/must"
"go.abhg.dev/gs/internal/secret"
"go.abhg.dev/gs/internal/spice"
"go.abhg.dev/gs/internal/spice/state"
"go.abhg.dev/gs/internal/text"
"go.abhg.dev/gs/internal/ui"
)
// submitOptions defines options that are common to all submit commands.
type submitOptions struct {
DryRun bool `short:"n" help:"Don't actually submit the stack"`
Fill bool `short:"c" help:"Fill in the change title and body from the commit messages"`
// TODO: Default to Fill if --no-prompt?
Draft *bool `negatable:"" help:"Whether to mark change requests as drafts"`
Publish bool `name:"publish" negatable:"" default:"true" config:"submit.publish" help:"Whether to create CRs for pushed branches. Defaults to true."`
Web bool `short:"w" negatable:"" config:"submit.web" help:"Open submitted changes in a web browser"`
NavigationComment navigationCommentWhen `name:"nav-comment" config:"submit.navigationComment" enum:"true,false,multiple" default:"true" help:"Whether to add a navigation comment to the change request. Must be one of: true, false, multiple."`
Force bool `help:"Force push, bypassing safety checks"`
// TODO: Other creation options e.g.:
// - assignees
// - labels
// - milestone
// - reviewers
}
const _submitHelp = `
Use --dry-run to print what would be submitted without submitting it.
For new Change Requests, a prompt will allow filling metadata.
Use --fill to populate title and body from the commit messages,
and --[no-]draft to set the draft status.
Omitting the draft flag will leave the status unchanged of open CRs.
Use --no-publish to push branches without creating CRs.
This has no effect if a branch already has an open CR.
Use --nav-comment=false to disable navigation comments in CRs,
or --nav-comment=multiple to post those comments only if there are multiple CRs in the stack.
`
type branchSubmitCmd struct {
submitOptions
Title string `help:"Title of the change request" placeholder:"TITLE"`
Body string `help:"Body of the change request" placeholder:"BODY"`
Branch string `placeholder:"NAME" help:"Branch to submit" predictor:"trackedBranches"`
}
func (*branchSubmitCmd) Help() string {
return text.Dedent(`
A Change Request is created for the current branch,
or updated if it already exists.
Use the --branch flag to target a different branch.
For new Change Requests, a prompt will allow filling metadata.
Use the --title and --body flags to skip the prompt,
or the --fill flag to use the commit message to fill them in.
The --draft flag marks the change request as a draft.
For updating Change Requests,
use --draft/--no-draft to change its draft status.
Without the flag, the draft status is not changed.
Use --no-publish to push the branch without creating a Change
Request.
Use --nav-comment=false to disable navigation comments in CRs,
or --nav-comment=multiple to post those comments only if there are multiple CRs in the stack.
`)
}
func (cmd *branchSubmitCmd) Run(
ctx context.Context,
secretStash secret.Stash,
log *log.Logger,
opts *globalOptions,
) error {
repo, store, svc, err := openRepo(ctx, log, opts)
if err != nil {
return err
}
session := newSubmitSession(repo, store, secretStash, opts, log)
if err := cmd.run(ctx, session, repo, store, svc, log, opts); err != nil {
return err
}
if cmd.DryRun {
return nil
}
return updateNavigationComments(
ctx,
store,
svc,
log,
cmd.NavigationComment,
session,
)
}
func (cmd *branchSubmitCmd) run(
ctx context.Context,
session *submitSession,
repo *git.Repository,
store *state.Store,
svc *spice.Service,
log *log.Logger,
opts *globalOptions,
) error {
if cmd.Branch == "" {
currentBranch, err := repo.CurrentBranch(ctx)
if err != nil {
return fmt.Errorf("get current branch: %w", err)
}
cmd.Branch = currentBranch
}
if cmd.Branch == store.Trunk() {
return errors.New("cannot submit trunk")
}
branch, err := svc.LookupBranch(ctx, cmd.Branch)
if err != nil {
return fmt.Errorf("lookup branch: %w", err)
}
// Refuse to submit if the branch is not restacked.
if !cmd.Force {
if err := svc.VerifyRestacked(ctx, cmd.Branch); err != nil {
log.Errorf("Branch %s needs to be restacked.", cmd.Branch)
log.Errorf("Run the following command to fix this:")
log.Errorf(" gs branch restack --branch=%s", cmd.Branch)
log.Errorf("Or, try again with --force to submit anyway.")
return errors.New("refusing to submit outdated branch")
}
}
if !cmd.DryRun && cmd.Publish {
session.branches = append(session.branches, cmd.Branch)
}
commitHash, err := repo.PeelToCommit(ctx, cmd.Branch)
if err != nil {
return fmt.Errorf("peel to commit: %w", err)
}
// TODO:
// Encapsulate (localBranch, upstreamBranch) in a struct.
// If the branch has already been pushed to upstream with a different name,
// use that name instead.
// This is useful for branches that were renamed locally.
upstreamBranch := cmd.Branch
if branch.UpstreamBranch != "" {
upstreamBranch = branch.UpstreamBranch
}
// Similarly, if the branch's base has a different name upstream,
// use that name instead.
upstreamBase := branch.Base
if branch.Base != store.Trunk() {
baseBranch, err := svc.LookupBranch(ctx, branch.Base)
if err != nil {
return fmt.Errorf("lookup base branch: %w", err)
}
upstreamBase = cmp.Or(baseBranch.UpstreamBranch, branch.Base)
}
remote, err := session.Remote.Get(ctx)
if err != nil {
return err
}
var existingChange *forge.FindChangeItem
if branch.Change == nil && cmd.Publish {
// If the branch doesn't have a CR associated with it,
// we'll probably need to create one,
// but verify that there isn't already one open.
remoteRepo, err := session.RemoteRepo.Get(ctx)
if err != nil {
return fmt.Errorf("discover CR for %s: %w", cmd.Branch, err)
}
changes, err := remoteRepo.FindChangesByBranch(ctx, upstreamBranch, forge.FindChangesOptions{
State: forge.ChangeOpen,
Limit: 3,
})
if err != nil {
return fmt.Errorf("list changes: %w", err)
}
switch len(changes) {
case 0:
// No PRs found, one will be created later.
case 1:
// A CR was found, but it wasn't associated with the branch.
// It was probably created manually.
// We'll associate it now.
existingChange = changes[0]
log.Infof("%v: Found existing CR %v", cmd.Branch, existingChange.ID)
md, err := remoteRepo.NewChangeMetadata(ctx, existingChange.ID)
if err != nil {
return fmt.Errorf("get change metadata: %w", err)
}
// If we're importing an existing CR,
// also check if there's a stack navigation comment to import.
listCommentOpts := forge.ListChangeCommentsOptions{
BodyMatchesAll: _navCommentRegexes,
CanUpdate: true,
}
for comment, err := range remoteRepo.ListChangeComments(ctx, existingChange.ID, &listCommentOpts) {
if err != nil {
log.Warn("Could not list comments for CR. Ignoring existing comments.", "cr", existingChange.ID, "error", err)
break
}
log.Infof("%v: Found existing navigation comment: %v", cmd.Branch, comment.ID)
md.SetNavigationCommentID(comment.ID)
break
}
// TODO: this should all happen in Service, probably.
changeMeta, err := remoteRepo.Forge().MarshalChangeMetadata(md)
if err != nil {
return fmt.Errorf("marshal change metadata: %w", err)
}
tx := store.BeginBranchTx()
msg := fmt.Sprintf("%v: associate existing CR", cmd.Branch)
if err := tx.Upsert(ctx, state.UpsertRequest{
Name: cmd.Branch,
ChangeForge: md.ForgeID(),
ChangeMetadata: changeMeta,
}); err != nil {
return fmt.Errorf("%s: %w", msg, err)
}
if err := tx.Commit(ctx, msg); err != nil {
return fmt.Errorf("update state: %w", err)
}
default:
// GitHub doesn't allow multiple PRs for the same branch
// with the same base branch.
// If we get here, it means there are multiple PRs open
// with different base branches.
return fmt.Errorf("multiple open change requests for %s", cmd.Branch)
// TODO: Ask the user to pick one and associate it with the branch.
}
} else if branch.Change != nil {
remoteRepo, err := session.RemoteRepo.Get(ctx)
if err != nil {
return fmt.Errorf("look up CR %v: %w", branch.Change.ChangeID(), err)
}
// If a CR is already associated with the branch,
// fetch information about it to compare with the current state.
change, err := remoteRepo.FindChangeByID(ctx, branch.Change.ChangeID())
if err != nil {
return fmt.Errorf("find change: %w", err)
}
// Consider the PR only if it's open.
if change.State == forge.ChangeOpen {
existingChange = change
} else {
var state string
if change.State == forge.ChangeMerged {
state = "merged"
} else {
state = "closed"
}
log.Infof("%v: Ignoring CR %v as it was %s: %v", cmd.Branch, change.ID, state, change.URL)
// TODO:
// We could offer to reopen the CR if it was closed,
// but not if it was merged.
}
}
var openURL string
if cmd.Web {
defer func() {
if openURL == "" {
return
}
if err := _browserLauncher.OpenURL(openURL); err != nil {
log.Warn("Could not open browser",
"url", openURL,
"error", err)
}
}()
}
// At this point, existingChange is nil only if we need to create a new CR.
if existingChange == nil {
if cmd.DryRun {
if cmd.Publish {
log.Infof("WOULD create a CR for %s", cmd.Branch)
} else {
log.Infof("WOULD push branch %s", cmd.Branch)
}
return nil
}
var prepared *preparedBranch
if cmd.Publish {
remoteRepo, err := session.RemoteRepo.Get(ctx)
if err != nil {
return fmt.Errorf("prepare publish: %w", err)
}
// TODO: Refactor:
// NoPublish and DryRun are checked repeatedly.
// Extract the logic that needs them into no-ops
// and make this function flow more linearly.
prepared, err = cmd.preparePublish(
ctx,
log,
opts,
svc,
store,
repo,
remote,
remoteRepo,
upstreamBranch,
branch.Base, upstreamBase,
)
if err != nil {
return err
}
}
pushOpts := git.PushOptions{
Remote: remote,
Refspec: git.Refspec(
commitHash.String() + ":refs/heads/" + upstreamBranch,
),
Force: cmd.Force,
}
// If we've already pushed this branch before,
// we'll need a force push.
// Use a --force-with-lease to avoid
// overwriting someone else's changes.
if !cmd.Force {
existingHash, err := repo.PeelToCommit(ctx, remote+"/"+upstreamBranch)
if err == nil {
pushOpts.ForceWithLease = upstreamBranch + ":" + existingHash.String()
}
}
err = repo.Push(ctx, pushOpts)
if err != nil {
return fmt.Errorf("push branch: %w", err)
}
// At this point, even if any other operation fails,
// we need to save to the state that we pushed the branch
// with the recorded name.
upsert := state.UpsertRequest{
Name: cmd.Branch,
UpstreamBranch: upstreamBranch,
}
defer func() {
msg := fmt.Sprintf("branch submit %s", cmd.Branch)
tx := store.BeginBranchTx()
err := errors.Join(
tx.Upsert(ctx, upsert),
tx.Commit(ctx, msg),
)
if err != nil {
log.Warn("Could not update branch state",
"branch", cmd.Branch,
"error", err)
return
}
}()
upstream := remote + "/" + cmd.Branch
if err := repo.SetBranchUpstream(ctx, cmd.Branch, upstream); err != nil {
log.Warn("Could not set upstream", "branch", cmd.Branch, "remote", remote, "error", err)
}
if prepared != nil {
changeID, changeURL, err := prepared.Publish(ctx)
if err != nil {
return err
}
openURL = changeURL
remoteRepo := prepared.remoteRepo
changeMeta, err := remoteRepo.NewChangeMetadata(ctx, changeID)
if err != nil {
return fmt.Errorf("get change metadata: %w", err)
}
changeIDJSON, err := remoteRepo.Forge().MarshalChangeMetadata(changeMeta)
if err != nil {
return fmt.Errorf("marshal change ID: %w", err)
}
upsert.ChangeForge = changeMeta.ForgeID()
upsert.ChangeMetadata = changeIDJSON
} else {
// no-publish mode, so no CR was created.
log.Infof("Pushed %s", cmd.Branch)
}
} else {
if !cmd.Publish {
log.Warnf("Ignoring --no-publish: %s was already published: %s", cmd.Branch, existingChange.URL)
}
// Check base and HEAD are up-to-date.
pull := existingChange
openURL = pull.URL
var updates []string
if pull.HeadHash != commitHash {
updates = append(updates, "push branch")
}
if pull.BaseName != upstreamBase {
updates = append(updates, "set base to "+upstreamBase)
}
if cmd.Draft != nil && pull.Draft != *cmd.Draft {
updates = append(updates, "set draft to "+strconv.FormatBool(*cmd.Draft))
}
if len(updates) == 0 {
log.Infof("CR %v is up-to-date: %s", pull.ID, pull.URL)
return nil
}
if cmd.DryRun {
log.Infof("WOULD update CR %v:", pull.ID)
for _, update := range updates {
log.Infof(" - %s", update)
}
return nil
}
if pull.HeadHash != commitHash {
pushOpts := git.PushOptions{
Remote: remote,
Refspec: git.Refspec(
commitHash.String() + ":refs/heads/" + upstreamBranch,
),
Force: cmd.Force,
}
if !cmd.Force {
// Force push, but only if the ref is exactly
// where we think it is.
existingHash, err := repo.PeelToCommit(ctx, remote+"/"+upstreamBranch)
if err == nil {
pushOpts.ForceWithLease = upstreamBranch + ":" + existingHash.String()
}
}
if err := repo.Push(ctx, pushOpts); err != nil {
log.Error("Push failed. Branch may have been updated by someone else. Try with --force.")
return fmt.Errorf("push branch: %w", err)
}
}
if len(updates) > 0 {
opts := forge.EditChangeOptions{
Base: upstreamBase,
Draft: cmd.Draft,
}
// remoteRepo is guaranteed to be available at this point.
remoteRepo, err := session.RemoteRepo.Get(ctx)
if err != nil {
return fmt.Errorf("edit CR %v: %w", pull.ID, err)
}
if err := remoteRepo.EditChange(ctx, pull.ID, opts); err != nil {
return fmt.Errorf("edit CR %v: %w", pull.ID, err)
}
}
log.Infof("Updated %v: %s", pull.ID, pull.URL)
}
return nil
}
type branchSubmitForm struct {
ctx context.Context
svc *spice.Service
repo *git.Repository
remote forge.Repository
log *log.Logger
tmpl *forge.ChangeTemplate
}
func newBranchSubmitForm(
ctx context.Context,
svc *spice.Service,
repo *git.Repository,
remoteRepo forge.Repository,
log *log.Logger,
) *branchSubmitForm {
return &branchSubmitForm{
ctx: ctx,
svc: svc,
log: log,
repo: repo,
remote: remoteRepo,
}
}
func (f *branchSubmitForm) titleField(title *string) ui.Field {
return ui.NewInput().
WithValue(title).
WithTitle("Title").
WithDescription("Short summary of the change").
WithValidate(func(s string) error {
if strings.TrimSpace(s) == "" {
return errors.New("title cannot be blank")
}
return nil
})
}
func (f *branchSubmitForm) templateField(changeTemplatesCh <-chan []*forge.ChangeTemplate) ui.Field {
return ui.Defer(func() ui.Field {
templates := <-changeTemplatesCh
switch len(templates) {
case 0:
return nil
case 1:
f.tmpl = templates[0]
return nil
default:
opts := make([]ui.SelectOption[*forge.ChangeTemplate], len(templates))
for i, tmpl := range templates {
opts[i] = ui.SelectOption[*forge.ChangeTemplate]{
Label: tmpl.Filename,
Value: tmpl,
}
}
return ui.NewSelect[*forge.ChangeTemplate]().
WithValue(&f.tmpl).
WithOptions(opts...).
WithTitle("Template").
WithDescription("Choose a template for the change body")
}
})
}
func (f *branchSubmitForm) bodyField(body *string) ui.Field {
editor := ui.Editor{
Command: gitEditor(f.ctx, f.repo),
Ext: "md",
}
return ui.Defer(func() ui.Field {
// By this point, the template field should have already run.
if f.tmpl != nil {
if *body != "" {
*body += "\n\n"
}
*body += f.tmpl.Body
}
ed := ui.NewOpenEditor(editor).
WithValue(body).
WithTitle("Body").
WithDescription("Open your editor to write " +
"a detailed description of the change")
ed.Style.NoEditorMessage = "" +
"Please configure a Git core.editor, " +
"or set the EDITOR environment variable."
return ed
})
}
func (f *branchSubmitForm) draftField(draft *bool) ui.Field {
return ui.NewConfirm().
WithValue(draft).
WithTitle("Draft").
WithDescription("Mark the change as a draft?")
}
// Fills change information in the branch submit command.
func (cmd *branchSubmitCmd) preparePublish(
ctx context.Context,
log *log.Logger,
opts *globalOptions,
svc *spice.Service,
store *state.Store,
repo *git.Repository,
remoteName string,
remoteRepo forge.Repository,
upstreamBranch,
baseBranch, upstreamBase string,
) (*preparedBranch, error) {
// Fetch the template while we're prompting the other fields.
changeTemplatesCh := make(chan []*forge.ChangeTemplate, 1)
go func() {
defer close(changeTemplatesCh)
ctx, cancel := context.WithTimeout(ctx, time.Second)
defer cancel()
templates, err := svc.ListChangeTemplates(ctx, remoteName, remoteRepo)
if err != nil {
log.Warn("Could not list change templates", "error", err)
templates = nil
}
slices.SortFunc(templates, func(a, b *forge.ChangeTemplate) int {
return strings.Compare(a.Filename, b.Filename)
})
changeTemplatesCh <- templates
}()
msgs, err := repo.CommitMessageRange(ctx, cmd.Branch, baseBranch)
if err != nil {
return nil, fmt.Errorf("list commits: %w", err)
}
if len(msgs) == 0 {
return nil, errors.New("no commits to submit")
}
var (
defaultTitle string
defaultBody strings.Builder
)
if len(msgs) == 1 {
// If there's only one commit,
// just the body will be the default body.
defaultTitle = msgs[0].Subject
defaultBody.WriteString(msgs[0].Body)
} else {
// Otherwise, we'll concatenate all the messages.
// The revisions are in reverse order,
// so we'll want to iterate in reverse.
defaultTitle = msgs[len(msgs)-1].Subject
for i := len(msgs) - 1; i >= 0; i-- {
msg := msgs[i]
if defaultBody.Len() > 0 {
defaultBody.WriteString("\n\n")
}
defaultBody.WriteString(msg.Subject)
if msg.Body != "" {
defaultBody.WriteString("\n\n")
defaultBody.WriteString(msg.Body)
}
}
}
var fields []ui.Field
form := newBranchSubmitForm(ctx, svc, repo, remoteRepo, log)
if cmd.Title == "" {
cmd.Title = defaultTitle
fields = append(fields, form.titleField(&cmd.Title))
}
if cmd.Body == "" {
cmd.Body = defaultBody.String()
if cmd.Fill {
// If the user selected --fill,
// and there are templates to choose from,
// just pick the first template in the body.
tmpls := <-changeTemplatesCh
if len(tmpls) > 0 {
cmd.Body += "\n\n" + tmpls[0].Body
}
} else {
// Otherwise, we'll prompt for the template (if needed)
// and the body.
fields = append(fields, form.templateField(changeTemplatesCh))
fields = append(fields, form.bodyField(&cmd.Body))
}
}
// Don't mess with draft setting if we're not prompting
// and the user didn't explicitly set it.
if opts.Prompt && cmd.Draft == nil {
cmd.Draft = new(bool)
fields = append(fields, form.draftField(cmd.Draft))
}
// TODO: should we assume --fill if --no-prompt?
if len(fields) > 0 && !cmd.Fill {
if !opts.Prompt {
return nil, fmt.Errorf("prompt for commit information: %w", errNoPrompt)
}
// If we're prompting and there's a prior submission attempt,
// change the title and body to the saved values.
prePrepared, err := store.LoadPreparedBranch(ctx, cmd.Branch)
if err == nil && prePrepared != nil {
usePrepared := true
f := ui.NewConfirm().
WithValue(&usePrepared).
WithTitle("Recover previously filled information?").
WithDescription(
"We found previously filled information for this branch.\n" +
"Would you like to recover and edit it?")
if err := ui.Run(f); err != nil {
return nil, fmt.Errorf("prompt for recovery: %w", err)
}
if usePrepared {
cmd.Title = prePrepared.Subject
cmd.Body = prePrepared.Body
} else {
// It will get cleared anyway when the branch
// is submitted, but clear it now to avoid the
// prompt again if this submission also fails.
if err := store.ClearPreparedBranch(ctx, cmd.Branch); err != nil {
log.Warn("Could not clear prepared branch information", "error", err)
}
}
}
form := ui.NewForm(fields...)
if err := form.Run(); err != nil {
return nil, fmt.Errorf("prompt form: %w", err)
}
}
must.NotBeBlankf(cmd.Title, "CR title must have been set")
storePrepared := state.PreparedBranch{
Name: cmd.Branch,
Subject: cmd.Title,
Body: cmd.Body,
}
var draft bool
if cmd.Draft != nil {
draft = *cmd.Draft
}
if err := store.SavePreparedBranch(ctx, &storePrepared); err != nil {
log.Warn("Could not save prepared branch. Will be unable to recover CR metadata if the push fails.", "error", err)
}
return &preparedBranch{
PreparedBranch: storePrepared,
draft: draft,
head: upstreamBranch,
base: upstreamBase,
remoteRepo: remoteRepo,
store: store,
log: log,
}, nil
}
// preparedBranch is a branch that is ready to be published as a CR
// (or equivalent).
type preparedBranch struct {
state.PreparedBranch
head string
base string
draft bool
remoteRepo forge.Repository
store *state.Store
log *log.Logger
}
func (b *preparedBranch) Publish(ctx context.Context) (forge.ChangeID, string, error) {
result, err := b.remoteRepo.SubmitChange(ctx, forge.SubmitChangeRequest{
Subject: b.Subject,
Body: b.Body,
Head: b.head,
Base: b.base,
Draft: b.draft,
})
if err != nil {
return nil, "", fmt.Errorf("create change: %w", err)
}
if err := b.store.ClearPreparedBranch(ctx, b.Name); err != nil {
b.log.Warn("Could not clear prepared branch", "error", err)
}
b.log.Infof("Created %v: %s", result.ID, result.URL)
return result.ID, result.URL, nil
}