summaryrefslogtreecommitdiff
path: root/main.go
blob: 73bab4b7cb4429f3718d5deec05c6c2d9f9010c5 (plain)
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
package main

// An app to submit patches for the 30 GO GUI repos

import (
	"embed"
	"os"
	"strings"

	"go.wit.com/dev/alexflint/arg"
	"go.wit.com/gui"
	"go.wit.com/lib/protobuf/forgepb"
	"go.wit.com/lib/protobuf/gitpb"
	"go.wit.com/log"
)

// sent via -ldflags
var VERSION string
var BUILDTIME string

// this optionally can store the GUI plugins
//
//go:embed resources/*
var resources embed.FS

// used for shell auto completion
var ARGNAME string = "forge"

// using this for now. triggers config save
var configSave bool

func getVersion(repo *gitpb.Repo, name string) string {
	cmd := []string{"git", "describe", "--tags", "--always", name}
	result := repo.RunQuiet(cmd)
	output := strings.Join(result.Stdout, "\n")
	log.Info("cmd =", cmd, output)

	return strings.TrimSpace(output)
}

func main() {
	me = new(mainType)
	me.pp = arg.MustParse(&argv)

	if argv.Bash {
		argv.doBash()
		os.Exit(0)
	}
	if len(argv.BashAuto) != 0 {
		argv.doBashAuto()
		os.Exit(0)
	}
	me.urlbase = argv.URL
	if me.urlbase == "" {
		me.urlbase = "https://go.wit.com/"
	}
	me.urlbase = strings.Trim(me.urlbase, "/") // track down why trailing '/' makes http POST not work

	// load the ~/.config/forge/ config
	me.forge = forgepb.Init()
	me.found = new(gitpb.Repos)

	// first find the repos or gopaths to operate on
	if argv.Config != nil {
		doConfig()
		okExit("")
	}

	if argv.Commit != nil {
		doCommit()
		okExit("")
	}

	if argv.Checkout != nil {
		if err := doCheckout(); err != nil {
			badExit(err)
		}
		okExit("")
	}

	if argv.Clean != nil {
		if err := doClean(); err != nil {
			badExit(err)
		}
		okExit("")
	}

	if argv.Dirty != nil {
		doDirty()
		okExit("")
	}

	if argv.Examine != nil {
		if err := doExamine(); err != nil {
			badExit(err)
		}
		okExit("")
	}

	if argv.Rescan != nil {
		me.forge.ScanGoSrc()
		okExit("")
	}

	if argv.Show != "" {
		repo := me.forge.FindByGoPath(argv.Show)
		me.forge.HumanPrintRepo(repo)
		// newt := repo.Times.LastUpdate.AsTime()
		// oldt := repo.Times.MtimeHead.AsTime()
		if repo.Times.LastUpdate == nil {
			log.Info("SHOULD RUN Reload() here")
			repo.Reload()
			me.forge.HumanPrintRepo(repo)
		} else {
			if repo.Times.LastUpdate.Seconds < repo.Times.MtimeHead.Seconds {
				log.Info("SHOULD RUN Reload() here")
			}
		}
		okExit("")
	}

	if argv.GitPull != nil {
		// argv.GitPull.findRepos()
		doGitFetch()
		okExit("")
	}

	if argv.GitReset != nil {
		findAll() // select all the repos
		doGitReset()
		okExit("reset")
	}

	if argv.List != nil {
		argv.List.findRepos()
		// print out the repos
		me.forge.PrintHumanTable(me.found)
		okExit("")
	}
	if argv.Patch != nil {
		if argv.Patch.Submit != "" {
			doSubmit(argv.Patch.Submit)
			okExit("")
		}

		if argv.Patch.List != nil {
			if err := listPatches(); err != nil {
				badExit(err)
			}
			okExit("patch list")
		}
	}

	// todo: redo this logic using forgepb
	if configSave {
		me.forge.ConfigSave()
		configSave = false
	}

	// if the user doesn't want to open the GUI and
	// nothing else was specified to be done,
	// then just list the table to stdout
	if gui.NoGui() {
		me.forge.PrintHumanTable(me.found)
		okExit("")
	}

	// open the gui unless the user performed some other
	// basically, if you run just 'forge' it should open the GUI

	// if opening the GUI, always check git for dirty repos
	findAll() // select all the repos
	doCheckDirtyAndConfigSave()
	doGui()
	okExit("")
}