-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
mob.go
1302 lines (1118 loc) · 39.7 KB
/
mob.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
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"bufio"
"errors"
"fmt"
config "github.com/remotemobprogramming/mob/v5/configuration"
"github.com/remotemobprogramming/mob/v5/goal"
"github.com/remotemobprogramming/mob/v5/help"
"github.com/remotemobprogramming/mob/v5/open"
"github.com/remotemobprogramming/mob/v5/say"
"os"
"os/exec"
"path/filepath"
"reflect"
"regexp"
"runtime"
"strconv"
"strings"
"time"
)
const (
versionNumber = "5.3.3"
minimumGitVersion = "2.13.0"
)
var (
workingDir = ""
args []string
GitPassthroughStderrStdout = false // hack to get git hooks to print to stdout/stderr
)
func openCommandFor(c config.Configuration, filepath string) (string, []string) {
if !c.IsOpenCommandGiven() {
return "", []string{}
}
filepathWithoutSpaces := strings.ReplaceAll(filepath, " ", "&spc&")
split := strings.Split(injectCommandWithMessage(c.OpenCommand, filepathWithoutSpaces), " ")
for i := 0; i < len(split); i++ {
split[i] = strings.ReplaceAll(split[i], "&spc&", " ")
}
return split[0], split[1:]
}
type GitVersion struct {
Major int
Minor int
Patch int
}
func parseGitVersion(version string) GitVersion {
// The git version string can be customized, so we need a more complex regex, for example: git version 2.38.1.windows.1
// "git" and "version" are optional, and the version number can be x, x.y or x.y.z
r := regexp.MustCompile(`(?:git)?(?: version )?(?P<major>\d+)(?:\.(?P<minor>\d+)(?:\.(?P<patch>\d+))?)?`)
matches := r.FindStringSubmatch(version)
var v GitVersion
var err error
if len(matches) > r.SubexpIndex("major") {
v.Major, err = strconv.Atoi(matches[r.SubexpIndex("major")])
if err != nil {
v.Major = 0
return v
}
}
if len(matches) > r.SubexpIndex("minor") {
v.Minor, err = strconv.Atoi(matches[r.SubexpIndex("minor")])
if err != nil {
v.Minor = 0
return v
}
}
if len(matches) > r.SubexpIndex("patch") {
v.Patch, err = strconv.Atoi(matches[r.SubexpIndex("patch")])
if err != nil {
v.Patch = 0
}
}
return v
}
func (v GitVersion) Less(rhs GitVersion) bool {
return v.Major < rhs.Major ||
(v.Major == rhs.Major && v.Minor < rhs.Minor) ||
(v.Major == rhs.Major && v.Minor == rhs.Minor && v.Patch < rhs.Patch)
}
type Branch struct {
Name string
}
func newBranch(name string) Branch {
return Branch{
Name: strings.TrimSpace(name),
}
}
func (branch Branch) String() string {
return branch.Name
}
func (branch Branch) Is(branchName string) bool {
return branch.Name == branchName
}
func (branch Branch) remote(configuration config.Configuration) Branch {
return newBranch(configuration.RemoteName + "/" + branch.Name)
}
func (branch Branch) hasRemoteBranch(configuration config.Configuration) bool {
remoteBranches := gitRemoteBranches()
remoteBranch := branch.remote(configuration).Name
say.Debug("Remote Branches: " + strings.Join(remoteBranches, "\n"))
say.Debug("Remote Branch: " + remoteBranch)
for i := 0; i < len(remoteBranches); i++ {
if remoteBranches[i] == remoteBranch {
return true
}
}
return false
}
func (branch Branch) hasLocalBranch() bool {
localBranches := gitBranches()
say.Debug("Local Branches: " + strings.Join(localBranches, "\n"))
say.Debug("Local Branch: " + branch.Name)
for i := 0; i < len(localBranches); i++ {
if localBranches[i] == branch.Name {
return true
}
}
return false
}
func (branch Branch) IsWipBranch(configuration config.Configuration) bool {
if branch.Name == "mob-session" {
return true
}
return strings.Index(branch.Name, configuration.WipBranchPrefix) == 0
}
func (branch Branch) addWipPrefix(configuration config.Configuration) Branch {
return newBranch(configuration.WipBranchPrefix + branch.Name)
}
func (branch Branch) addWipQualifier(configuration config.Configuration) Branch {
if configuration.CustomWipBranchQualifierConfigured() {
return newBranch(addSuffix(branch.Name, configuration.WipBranchQualifierSuffix()))
}
return branch
}
func addSuffix(branch string, suffix string) string {
return branch + suffix
}
func (branch Branch) removeWipPrefix(configuration config.Configuration) Branch {
return newBranch(removePrefix(branch.Name, configuration.WipBranchPrefix))
}
func removePrefix(branch string, prefix string) string {
if !strings.HasPrefix(branch, prefix) {
return branch
}
return branch[len(prefix):]
}
func (branch Branch) removeWipQualifier(localBranches []string, configuration config.Configuration) Branch {
for !branch.exists(localBranches) && branch.hasWipBranchQualifierSeparator(configuration) {
afterRemoval := branch.removeWipQualifierSuffixOrSeparator(configuration)
if branch == afterRemoval { // avoids infinite loop
break
}
branch = afterRemoval
}
return branch
}
func (branch Branch) removeWipQualifierSuffixOrSeparator(configuration config.Configuration) Branch {
if !configuration.CustomWipBranchQualifierConfigured() { // WipBranchQualifier not configured
return branch.removeFromSeparator(configuration.WipBranchQualifierSeparator)
} else { // WipBranchQualifier not configured
return branch.removeWipQualifierSuffix(configuration)
}
}
func (branch Branch) removeFromSeparator(separator string) Branch {
return newBranch(branch.Name[:strings.LastIndex(branch.Name, separator)])
}
func (branch Branch) removeWipQualifierSuffix(configuration config.Configuration) Branch {
if strings.HasSuffix(branch.Name, configuration.WipBranchQualifierSuffix()) {
return newBranch(branch.Name[:strings.LastIndex(branch.Name, configuration.WipBranchQualifierSuffix())])
}
return branch
}
func (branch Branch) exists(existingBranches []string) bool {
return stringContains(existingBranches, branch.Name)
}
func (branch Branch) hasWipBranchQualifierSeparator(configuration config.Configuration) bool { //TODO improve (dont use strings.Contains, add tests)
return strings.Contains(branch.Name, configuration.WipBranchQualifierSeparator)
}
func (branch Branch) hasLocalCommits(configuration config.Configuration) bool {
local := silentgit("for-each-ref", "--format=%(objectname)", "refs/heads/"+branch.Name)
remote := silentgit("for-each-ref", "--format=%(objectname)", "refs/remotes/"+branch.remote(configuration).Name)
return local != remote
}
func (branch Branch) hasUnpushedCommits(configuration config.Configuration) bool {
countOutput := silentgit(
"rev-list", "--count", "--left-only",
"refs/heads/"+branch.Name+"..."+"refs/remotes/"+branch.remote(configuration).Name,
)
unpushedCount, err := strconv.Atoi(countOutput)
if err != nil {
panic(err)
}
unpushedCommits := unpushedCount != 0
if unpushedCommits {
say.Info(fmt.Sprintf("there are %d unpushed commits on local base branch <%s>", unpushedCount, branch.Name))
}
return unpushedCommits
}
func stringContains(list []string, element string) bool {
found := false
for i := 0; i < len(list); i++ {
if list[i] == element {
found = true
}
}
return found
}
func main() {
run(os.Args)
}
func run(osArgs []string) {
args = osArgs
say.TurnOnDebuggingByArgs(args)
say.Debug(runtime.Version())
versionString := gitVersion()
if versionString == "" {
say.Error("'git' command was not found in PATH. It may be not installed. " +
"To learn how to install 'git' refer to https://git-scm.com/book/en/v2/Getting-Started-Installing-Git.")
Exit(1)
}
currentVersion := parseGitVersion(versionString)
if currentVersion.Less(parseGitVersion(minimumGitVersion)) {
say.Error(fmt.Sprintf("'git' command version '%s' is lower than the required minimum version (%s). "+
"Please update your 'git' installation!", versionString, minimumGitVersion))
Exit(1)
}
projectRootDir := ""
if isGit() {
projectRootDir = gitRootDir()
if !hasCommits() {
say.Error("Git repository does not have any commits yet. Please create an initial commit.")
Exit(1)
}
}
configuration := config.ReadConfiguration(projectRootDir)
say.Debug("Args '" + strings.Join(args, " ") + "'")
currentCliName := currentCliName(args[0])
if currentCliName != configuration.CliName {
say.Debug("Updating cli name to " + currentCliName)
configuration.CliName = currentCliName
}
command, parameters, configuration := config.ParseArgs(args, configuration)
say.Debug("command '" + command + "'")
say.Debug("parameters '" + strings.Join(parameters, " ") + "'")
say.Debug("version " + versionNumber)
say.Debug("workingDir '" + workingDir + "'")
// workaround until we have a better design
if configuration.GitHooksEnabled {
GitPassthroughStderrStdout = true
}
execute(command, parameters, configuration)
}
func hasCommits() bool {
commitCount := silentgit("rev-list", "--all", "--count")
return commitCount != "0"
}
func currentCliName(argZero string) string {
return strings.TrimSuffix(filepath.Base(argZero), ".exe")
}
func execute(command string, parameter []string, configuration config.Configuration) {
if helpRequested(parameter) {
help.Help(configuration)
return
}
switch command {
case "s", "start":
err := start(configuration)
if !isMobProgramming(configuration) || err != nil {
Exit(1)
}
if len(parameter) > 0 {
timer := parameter[0]
StartTimer(timer, configuration)
} else if configuration.Timer != "" {
StartTimer(configuration.Timer, configuration)
} else {
say.Info("It's now " + currentTime() + ". Happy collaborating! :)")
}
case "b", "branch":
branch(configuration)
case "n", "next":
next(configuration)
case "d", "done":
done(configuration)
case "fetch":
fetch(configuration)
case "reset":
reset(configuration)
case "clean":
clean(configuration)
case "config":
config.Config(configuration)
case "status":
status(configuration)
case "t", "timer":
if len(parameter) > 0 {
if parameter[0] == "open" || parameter[0] == "o" {
if err := openTimerInBrowser(configuration); err != nil {
say.Error(fmt.Sprintf("Could not open webtimer: %s", err.Error()))
}
} else {
timer := parameter[0]
StartTimer(timer, configuration)
}
} else if configuration.Timer != "" {
StartTimer(configuration.Timer, configuration)
} else {
help.Help(configuration)
}
case "break":
if len(parameter) > 0 {
StartBreakTimer(parameter[0], configuration)
} else {
help.Help(configuration)
}
case "moo":
moo(configuration)
case "sw", "squash-wip":
if len(parameter) > 1 && parameter[0] == "--git-editor" {
squashWipGitEditor(parameter[1], configuration)
} else if len(parameter) > 1 && parameter[0] == "--git-sequence-editor" {
squashWipGitSequenceEditor(parameter[1], configuration)
}
case "g", "goal":
goal.Goal(configuration, parameter)
case "version", "--version", "-v":
version()
case "help", "--help", "-h":
help.Help(configuration)
default:
help.Help(configuration)
}
}
func openTimerInBrowser(configuration config.Configuration) error {
timerurl := configuration.TimerUrl
if timerurl == "" {
return fmt.Errorf("Timer url is not configured")
}
if configuration.TimerRoom != "" {
if !strings.HasSuffix(configuration.TimerUrl, "/") {
timerurl += "/"
}
timerurl += configuration.TimerRoom
} else {
say.Warning("Timer Room is not configured. To open specific room please configure timer room variable.")
}
return open.OpenInBrowser(timerurl)
}
func helpRequested(parameter []string) bool {
for i := 0; i < len(parameter); i++ {
element := parameter[i]
if element == "help" || element == "--help" || element == "-h" {
return true
}
}
return false
}
func clean(configuration config.Configuration) {
git("fetch", configuration.RemoteName, "--prune")
currentBranch := gitCurrentBranch()
localBranches := gitBranches()
if currentBranch.isOrphanWipBranch(configuration) {
currentBaseBranch, _ := determineBranches(currentBranch, localBranches, configuration)
say.Info("Current branch " + currentBranch.Name + " is an orphan")
if currentBaseBranch.exists(localBranches) {
git("checkout", currentBaseBranch.Name)
} else if newBranch("main").exists(localBranches) {
git("checkout", "main")
} else {
git("checkout", "master")
}
}
for _, branch := range localBranches {
b := newBranch(branch)
if b.isOrphanWipBranch(configuration) {
say.Info("Removing orphan wip branch " + b.Name)
git("branch", "-D", b.Name)
}
}
}
func (branch Branch) isOrphanWipBranch(configuration config.Configuration) bool {
return branch.IsWipBranch(configuration) && !branch.hasRemoteBranch(configuration)
}
func branch(configuration config.Configuration) {
say.Say(silentgit("branch", "--list", "--remote", newBranch("*").addWipPrefix(configuration).remote(configuration).Name))
// DEPRECATED
say.Say(silentgit("branch", "--list", "--remote", newBranch("mob-session").remote(configuration).Name))
}
func determineBranches(currentBranch Branch, localBranches []string, configuration config.Configuration) (baseBranch Branch, wipBranch Branch) {
if currentBranch.Is("mob-session") || (currentBranch.Is("master") && !configuration.CustomWipBranchQualifierConfigured()) {
// DEPRECATED
baseBranch = newBranch("master")
wipBranch = newBranch("mob-session")
} else if currentBranch.IsWipBranch(configuration) {
baseBranch = currentBranch.removeWipPrefix(configuration).removeWipQualifier(localBranches, configuration)
wipBranch = currentBranch
} else {
baseBranch = currentBranch
wipBranch = currentBranch.addWipPrefix(configuration).addWipQualifier(configuration)
}
say.Debug("on currentBranch " + currentBranch.String() + " => BASE " + baseBranch.String() + " WIP " + wipBranch.String() + " with allLocalBranches " + strings.Join(localBranches, ","))
if currentBranch != baseBranch && currentBranch != wipBranch {
// this is unreachable code, but we keep it as a backup
panic("assertion failed! neither on base nor on wip branch")
}
return
}
func injectCommandWithMessage(command string, message string) string {
placeHolders := strings.Count(command, "%s")
if placeHolders > 1 {
say.Error(fmt.Sprintf("Too many placeholders (%d) in format command string: %s", placeHolders, command))
Exit(1)
}
if placeHolders == 0 {
return fmt.Sprintf("%s %s", command, message)
}
return fmt.Sprintf(command, message)
}
func executeCommandsInBackgroundProcess(commands ...string) (err error) {
cmds := make([]string, 0)
for _, c := range commands {
if len(c) > 0 {
cmds = append(cmds, c)
}
}
say.Debug(fmt.Sprintf("Operating System %s", runtime.GOOS))
switch runtime.GOOS {
case "windows":
_, err = startCommand("powershell", "-command", fmt.Sprintf("start-process powershell -NoNewWindow -ArgumentList '-command \"%s\"'", strings.Join(cmds, ";")))
case "darwin", "linux":
_, err = startCommand("sh", "-c", fmt.Sprintf("(%s) &", strings.Join(cmds, ";")))
default:
say.Warning(fmt.Sprintf("Cannot execute background commands on your os: %s", runtime.GOOS))
}
return err
}
func currentTime() string {
return time.Now().Format("15:04")
}
func moo(configuration config.Configuration) {
voiceMessage := "moo"
err := executeCommandsInBackgroundProcess(getVoiceCommand(voiceMessage, configuration.VoiceCommand))
if err != nil {
say.Warning(fmt.Sprintf("can't run voice command on your system (%s)", runtime.GOOS))
say.Warning(err.Error())
return
}
say.Info(voiceMessage)
}
func reset(configuration config.Configuration) {
if configuration.ResetDeleteRemoteWipBranch {
deleteRemoteWipBranch(configuration)
} else {
say.Fix("Executing this command deletes the mob branch for everyone. If you're sure you want that, use", configuration.Mob("reset --delete-remote-wip-branch"))
}
}
func deleteRemoteWipBranch(configuration config.Configuration) {
git("fetch", configuration.RemoteName)
currentBaseBranch, currentWipBranch := determineBranches(gitCurrentBranch(), gitBranches(), configuration)
git("checkout", currentBaseBranch.String())
if currentWipBranch.hasLocalBranch() {
git("branch", "--delete", "--force", currentWipBranch.String())
}
if currentWipBranch.hasRemoteBranch(configuration) {
gitWithoutEmptyStrings("push", gitHooksOption(configuration), configuration.RemoteName, "--delete", currentWipBranch.String())
}
say.Info("Branches " + currentWipBranch.String() + " and " + currentWipBranch.remote(configuration).String() + " deleted")
}
func start(configuration config.Configuration) error {
uncommittedChanges := hasUncommittedChanges()
if uncommittedChanges && configuration.HandleUncommittedChanges == config.FailWithError {
say.Info("cannot start; clean working tree required")
sayUnstagedChangesInfo()
sayUntrackedFilesInfo()
sayFixUncommittedChanges(configuration)
return errors.New("cannot start; clean working tree required")
}
git("fetch", configuration.RemoteName, "--prune")
currentBranch := gitCurrentBranch()
currentBaseBranch, currentWipBranch := determineBranches(currentBranch, gitBranches(), configuration)
if !currentWipBranch.hasRemoteBranch(configuration) && configuration.StartJoin {
say.Error("Remote wip branch " + currentWipBranch.remote(configuration).String() + " is missing")
return errors.New("remote wip branch is missing")
}
if !currentBaseBranch.hasRemoteBranch(configuration) && !configuration.StartCreate {
say.Error("Remote branch " + currentBaseBranch.remote(configuration).String() + " is missing")
say.Fix("To start and create the remote branch", "mob start --create")
return errors.New("remote branch is missing")
}
createRemoteBranch(configuration, currentBaseBranch)
if currentBaseBranch.hasLocalBranch() && currentBaseBranch.hasUnpushedCommits(configuration) {
say.Error("cannot start; unpushed changes on base branch must be pushed upstream")
say.Fix("to fix this, push those commits and try again", "git push "+configuration.RemoteName+" "+currentBaseBranch.String())
return errors.New("cannot start; unpushed changes on base branch must be pushed upstream")
}
if uncommittedChanges && configuration.HandleUncommittedChanges == config.DiscardChanges {
git("reset", "--hard")
}
if uncommittedChanges && configuration.HandleUncommittedChanges == config.IncludeChanges {
if silentgit("ls-tree", "-r", "HEAD", "--full-name", "--name-only", ".") == "" {
say.Error("cannot start; current working dir is an uncommitted subdir")
say.Fix("to fix this, go to the parent directory and try again", "cd ..")
return errors.New("cannot start; current working dir is an uncommitted subdir")
}
git("stash", "push", "--include-untracked", "--message", configuration.StashName)
say.Info("uncommitted changes were stashed. If an error occurs later on, you can recover them with 'git stash pop'.")
}
if !isMobProgramming(configuration) {
git("merge", "FETCH_HEAD", "--ff-only")
}
if currentWipBranch.hasRemoteBranch(configuration) {
startJoinMobSession(configuration)
} else {
warnForActiveWipBranches(configuration, currentBaseBranch)
startNewMobSession(configuration)
}
if uncommittedChanges && configuration.HandleUncommittedChanges == config.IncludeChanges {
stashes := silentgit("stash", "list")
stash := findStashByName(stashes, configuration.StashName)
git("stash", "pop", stash)
}
say.Info("you are on wip branch '" + currentWipBranch.String() + "' (base branch '" + currentBaseBranch.String() + "')")
sayLastCommitsList(currentBaseBranch, currentWipBranch, configuration)
openLastModifiedFileIfPresent(configuration)
return nil // no error
}
func sayFixUncommittedChanges(configuration config.Configuration) {
var instructionInclude string
var instructionDiscard string
if configuration.StartCreate {
instructionInclude = "To start, including uncommitted changes and create the remote branch, use"
instructionDiscard = "To start, discarding uncommitted changes and create the remote branch, use"
} else {
instructionInclude = "To start, including uncommitted changes, use"
instructionDiscard = "To start, discarding uncommitted changes, use"
}
fixCommandStart := configuration.CliName + " start" + createFix(configuration) + branchFix(configuration)
fixCommandInclude := fixCommandStart + " --include-uncommitted-changes"
fixCommandDiscard := fixCommandStart + " --discard-uncommitted-changes"
say.Fix(instructionInclude, fixCommandInclude)
say.Fix(instructionDiscard, fixCommandDiscard)
}
func createFix(configuration config.Configuration) string {
if configuration.StartCreate {
return " --create"
}
return ""
}
func branchFix(configuration config.Configuration) string {
if branchParameter(configuration) {
return " --branch " + configuration.WipBranchQualifier
}
return ""
}
func branchParameter(configuration config.Configuration) bool {
return containsAny(args, "-b", "--branch") && configuration.WipBranchQualifier != ""
}
func containsAny(list []string, elements ...string) bool {
for _, value := range list {
for _, element := range elements {
if value == element {
return true
}
}
}
return false
}
func createRemoteBranch(configuration config.Configuration, currentBaseBranch Branch) {
if !currentBaseBranch.hasRemoteBranch(configuration) && configuration.StartCreate {
git("push", configuration.RemoteName, currentBaseBranch.String(), "--set-upstream")
} else if currentBaseBranch.hasRemoteBranch(configuration) && configuration.StartCreate {
say.Info("Remote branch " + currentBaseBranch.remote(configuration).String() + " already exists")
}
}
func openLastModifiedFileIfPresent(configuration config.Configuration) {
if !configuration.IsOpenCommandGiven() {
say.Debug("No open command given")
return
}
say.Debug("Try to open last modified file")
if !lastCommitIsWipCommit(configuration) {
say.Debug("Last commit isn't a WIP commit.")
return
}
lastCommitMessage := lastCommitMessage()
split := strings.Split(lastCommitMessage, "lastFile:")
if len(split) == 1 {
say.Warning("Couldn't find last modified file in commit message!")
return
}
if len(split) > 2 {
say.Warning("Could not determine last modified file from commit message, separator was used multiple times!")
return
}
lastModifiedFile := split[1]
if strings.HasPrefix(lastModifiedFile, "\"") {
lastModifiedFile, _ = strconv.Unquote(lastModifiedFile)
}
if lastModifiedFile == "" {
say.Debug("Could not find last modified file in commit message")
return
}
lastModifiedFilePath := gitRootDir() + "/" + lastModifiedFile
commandname, args := openCommandFor(configuration, lastModifiedFilePath)
_, err := startCommand(commandname, args...)
if err != nil {
say.Warning(fmt.Sprintf("Couldn't open last modified file on your system (%s)", runtime.GOOS))
say.Warning(err.Error())
return
}
say.Debug("Open last modified file: " + lastModifiedFilePath)
}
func warnForActiveWipBranches(configuration config.Configuration, currentBaseBranch Branch) {
if isMobProgramming(configuration) {
return
}
// TODO show all active wip branches, even non-qualified ones
existingWipBranches := getWipBranchesForBaseBranch(currentBaseBranch, configuration)
if len(existingWipBranches) > 0 && configuration.WipBranchQualifier == "" {
say.Warning("Creating a new wip branch even though preexisting wip branches have been detected.")
for _, wipBranch := range existingWipBranches {
say.WithPrefix(wipBranch, " - ")
}
}
}
func sayUntrackedFilesInfo() {
untrackedFiles := getUntrackedFiles()
hasUntrackedFiles := len(untrackedFiles) > 0
if hasUntrackedFiles {
say.Info("untracked files present:")
say.InfoIndented(untrackedFiles)
}
}
func sayUnstagedChangesInfo() {
unstagedChanges := getUnstagedChanges()
hasUnstagedChanges := len(unstagedChanges) > 0
if hasUnstagedChanges {
say.Info("unstaged changes present:")
say.InfoIndented(unstagedChanges)
}
}
func getWipBranchesForBaseBranch(currentBaseBranch Branch, configuration config.Configuration) []string {
remoteBranches := gitRemoteBranches()
say.Debug("check on current base branch " + currentBaseBranch.String() + " with remote branches " + strings.Join(remoteBranches, ","))
remoteBranchWithQualifier := currentBaseBranch.addWipPrefix(configuration).addWipQualifier(configuration).remote(configuration).Name
remoteBranchNoQualifier := currentBaseBranch.addWipPrefix(configuration).remote(configuration).Name
if currentBaseBranch.Is("master") {
// LEGACY
remoteBranchNoQualifier = "mob-session"
}
var result []string
for _, remoteBranch := range remoteBranches {
if strings.Contains(remoteBranch, remoteBranchWithQualifier) || strings.Contains(remoteBranch, remoteBranchNoQualifier) {
result = append(result, remoteBranch)
}
}
return result
}
func startJoinMobSession(configuration config.Configuration) {
baseBranch, currentWipBranch := determineBranches(gitCurrentBranch(), gitBranches(), configuration)
say.Info("joining existing session from " + currentWipBranch.remote(configuration).String())
if currentWipBranch.hasLocalBranch() && doBranchesDiverge(baseBranch.remote(configuration).Name, currentWipBranch.Name) {
say.Warning("Careful, your wip branch (" + currentWipBranch.Name + ") diverges from your main branch (" + baseBranch.remote(configuration).Name + ") !")
}
git("checkout", "-B", currentWipBranch.Name, currentWipBranch.remote(configuration).Name)
git("branch", "--set-upstream-to="+currentWipBranch.remote(configuration).Name, currentWipBranch.Name)
}
func startNewMobSession(configuration config.Configuration) {
currentBaseBranch, currentWipBranch := determineBranches(gitCurrentBranch(), gitBranches(), configuration)
say.Info("starting new session from " + currentBaseBranch.remote(configuration).String())
git("checkout", "-B", currentWipBranch.Name, currentBaseBranch.remote(configuration).Name)
gitWithoutEmptyStrings(append(gitPushArgs(configuration), gitHooksOption(configuration), "--set-upstream", configuration.RemoteName, currentWipBranch.Name+":"+currentWipBranch.Name)...)
}
func gitPushArgs(c config.Configuration) []string {
pushArgs := []string{"push"}
if !c.SkipCiPushOptionEnabled {
return pushArgs
}
return append(pushArgs, "--push-option", "ci.skip")
}
func getUntrackedFiles() string {
return silentgit("ls-files", "--others", "--exclude-standard", "--full-name")
}
func getUnstagedChanges() string {
return silentgit("diff", "--stat")
}
func findStashByName(stashes string, stash string) string {
lines := strings.Split(stashes, "\n")
for i := 0; i < len(lines); i++ {
line := lines[i]
if strings.Contains(line, stash) {
return line[:strings.Index(line, ":")]
}
}
return "unknown"
}
func next(configuration config.Configuration) {
if !isMobProgramming(configuration) {
say.Fix("to start working together, use", configuration.Mob("start"))
return
}
if !configuration.HasCustomCommitMessage() && configuration.RequireCommitMessage && hasUncommittedChanges() {
say.Error("commit message required")
return
}
currentBaseBranch, currentWipBranch := determineBranches(gitCurrentBranch(), gitBranches(), configuration)
if isNothingToCommit() {
if currentWipBranch.hasLocalCommits(configuration) {
gitWithoutEmptyStrings("push", gitHooksOption(configuration), configuration.RemoteName, currentWipBranch.Name)
} else {
say.Info("nothing was done, so nothing to commit")
}
} else {
makeWipCommit(configuration)
gitWithoutEmptyStrings("push", gitHooksOption(configuration), configuration.RemoteName, currentWipBranch.Name)
}
showNext(configuration)
if !configuration.NextStay {
git("checkout", currentBaseBranch.Name)
}
}
func getChangesOfLastCommit() string {
return silentgit("diff", "HEAD^1", "--stat")
}
func getCachedChanges() string {
return silentgit("diff", "--cached", "--stat")
}
func makeWipCommit(configuration config.Configuration) {
git("add", "--all")
commitMessage := createWipCommitMessage(configuration)
gitWithoutEmptyStrings("commit", "--message", commitMessage, gitHooksOption(configuration))
say.InfoIndented(getChangesOfLastCommit())
say.InfoIndented(gitCommitHash())
}
func createWipCommitMessage(configuration config.Configuration) string {
commitMessage := configuration.WipCommitMessage
lastModifiedFilePath := getPathOfLastModifiedFile()
if lastModifiedFilePath != "" {
commitMessage += "\n\nlastFile:" + lastModifiedFilePath
}
return commitMessage
}
// uses git status --porcelain. To work properly files have to be staged.
func getPathOfLastModifiedFile() string {
rootDir := gitRootDir()
files := getModifiedFiles(rootDir)
lastModifiedFilePath := ""
lastModifiedTime := time.Time{}
say.Debug("Find last modified file")
if len(files) == 1 {
lastModifiedFilePath = files[0]
say.Debug("Just one modified file: " + lastModifiedFilePath)
return lastModifiedFilePath
}
for _, file := range files {
absoluteFilepath := rootDir + "/" + file
say.Debug(absoluteFilepath)
info, err := os.Stat(absoluteFilepath)
if err != nil {
say.Warning("Could not get statistics of file: " + absoluteFilepath)
say.Warning(err.Error())
continue
}
modTime := info.ModTime()
if modTime.After(lastModifiedTime) {
lastModifiedTime = modTime
lastModifiedFilePath = file
}
say.Debug(modTime.String())
}
return lastModifiedFilePath
}
// uses git status --porcelain. To work properly files have to be staged.
func getModifiedFiles(rootDir string) []string {
say.Debug("Find modified files")
oldWorkingDir := workingDir
workingDir = rootDir
gitstatus := silentgit("status", "--porcelain")
workingDir = oldWorkingDir
lines := strings.Split(gitstatus, "\n")
files := []string{}
for _, line := range lines {
relativeFilepath := ""
if strings.HasPrefix(line, "M") {
relativeFilepath = strings.TrimPrefix(line, "M")
} else if strings.HasPrefix(line, "A") {
relativeFilepath = strings.TrimPrefix(line, "A")
} else {
continue
}
relativeFilepath = strings.TrimSpace(relativeFilepath)
say.Debug(relativeFilepath)
files = append(files, relativeFilepath)
}
return files
}
func gitHooksOption(c config.Configuration) string {
if c.GitHooksEnabled {
return ""
} else {
return "--no-verify"
}
}
func fetch(configuration config.Configuration) {
git("fetch", configuration.RemoteName, "--prune")
}
func done(configuration config.Configuration) {
if !isMobProgramming(configuration) {
say.Fix("to start working together, use", configuration.Mob("start"))
return
}
git("fetch", configuration.RemoteName, "--prune")
baseBranch, wipBranch := determineBranches(gitCurrentBranch(), gitBranches(), configuration)
if wipBranch.hasRemoteBranch(configuration) {
if configuration.DoneSquash == config.SquashWip {
git("merge", "FETCH_HEAD", "--ff-only")
squashWip(configuration)
}
uncommittedChanges := hasUncommittedChanges()
if uncommittedChanges {
makeWipCommit(configuration)
}
gitWithoutEmptyStrings("push", gitHooksOption(configuration), configuration.RemoteName, wipBranch.Name)
git("checkout", baseBranch.Name)
git("merge", baseBranch.remote(configuration).Name, "--ff-only")
mergeFailed := gitIgnoreFailure("merge", squashOrCommit(configuration), "--ff", wipBranch.Name)
if mergeFailed != nil {
// TODO should this be an error and a fix for that error?
say.Warning("Skipped deleting " + wipBranch.Name + " because of merge conflicts.")
say.Warning("To fix this, solve the merge conflict manually, commit, push, and afterwards delete " + wipBranch.Name)
return
}
git("branch", "-D", wipBranch.Name)
if uncommittedChanges && configuration.DoneSquash != config.Squash { // give the user the chance to name their final commit
git("reset", "--soft", "HEAD^")
}
gitWithoutEmptyStrings("push", gitHooksOption(configuration), configuration.RemoteName, "--delete", wipBranch.Name)
cachedChanges := getCachedChanges()
hasCachedChanges := len(cachedChanges) > 0
if hasCachedChanges {
say.InfoIndented(cachedChanges)
}
err := appendCoauthorsToSquashMsg(gitDir())
if err != nil {
say.Warning(err.Error())
}
if hasUncommittedChanges() {
say.Next("To finish, use", "git commit")
} else if configuration.DoneSquash == config.Squash {
say.Info("nothing was done, so nothing to commit")
}
} else {
git("checkout", baseBranch.Name)
git("branch", "-D", wipBranch.Name)
git("pull", "--ff-only")
say.Info("someone else already ended your session")
}