summaryrefslogtreecommitdiff
path: root/windowRepos.go
blob: 0c9283a986c1fa6992eac25e027b0786f1a598f4 (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
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
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0

package main

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

import (
	"fmt"
	"os"
	"time"

	"go.wit.com/lib/gadgets"
	"go.wit.com/lib/protobuf/gitpb"
	"go.wit.com/log"
)

func makeReposWin() *gadgets.GenericWindow {
	win := gadgets.NewGenericWindow("git repos", "All about git repos")
	grid := win.Group.RawGrid()

	me.repoDirtyB = grid.NewButton("dirty", func() {
		doCheckDirtyAndConfigSave()
		found := findDirty()
		tb, box := makeStandardReposWindow("dirty repos", found)
		hbox := box.Box().Horizontal()
		hbox.NewButton("commit all", func() {
			all := found.SortByFullPath()
			for all.Scan() {
				repo := all.Next()
				log.Info("do commit here on", repo.GetGoPath())
			}
			log.Info("TODO: fix this")
			log.Info("run 'forge commit --all'")
		})
		hbox.NewButton("update table", func() {
			me.forge.PrintHumanTable(found)
			found2 := findDirty()
			me.forge.PrintHumanTable(found2)
			tb.Update()
			tb.UpdateTable(found2)
		})
		hbox.NewButton("delete table", func() {
			tb.Delete()
		})
	})

	var writeWin *gadgets.GenericWindow
	me.repoWritableB = grid.NewButton("writable", func() {
		// if the window exists, just toggle it open or closed
		if writeWin != nil {
			writeWin.Toggle()
			return
		}

		// make the window for the first time
		found := new(gitpb.Repos)
		all := me.forge.Repos.SortByFullPath()
		for all.Scan() {
			repo := all.Next()
			if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
				continue
			}

			found.AppendByGoPath(repo)

		}
		writeWin, _ = makeWritableWindow(found)
		writeWin.Win.Custom = func() {
			log.Info("closing window. could do somethine here")
		}
	})

	me.repoAllB = grid.NewButton("All", func() {
		me.found = new(gitpb.Repos)
		all := me.forge.Repos.SortByFullPath()
		for all.Scan() {
			repo := all.Next()
			me.found.AppendByGoPath(repo)

		}
		makeStandardReposWindow("All repos", me.found)
	})

	var insertWin *gadgets.GenericWindow
	me.repoWritableB = grid.NewButton("insert test", func() {
		// if the window exists, just toggle it open or closed
		if insertWin != nil {
			insertWin.Toggle()
			return
		}

		insertWin = makeWindowForPB()
		insertWin.Win.Custom = func() {
			log.Info("test delete window here")
		}
		grid := insertWin.Group.RawGrid()

		var t *gitpb.ReposTable
		grid.NewButton("dirty", func() {
			if t != nil {
				t.Delete()
				t = nil
			}
			found := findDirty()

			// display the protobuf
			t = addWindowPB(insertWin, found)
			log.Info("table has uuid", t.GetUuid())
		})

		grid.NewButton("all", func() {
			if t != nil {
				t.Delete()
				t = nil
			}
			found := new(gitpb.Repos)
			all := me.forge.Repos.SortByFullPath()
			for all.Scan() {
				repo := all.Next()
				found.AppendByGoPath(repo)

			}
			// display the protobuf
			t = addWindowPB(insertWin, found)
			log.Info("table has uuid", t.GetUuid())
		})

		grid.NewButton("writeable", func() {
			if t != nil {
				t.Delete()
				t = nil
			}
			found := new(gitpb.Repos)
			all := me.forge.Repos.SortByFullPath()
			for all.Scan() {
				repo := all.Next()
				if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
					continue
				}

				found.AppendByGoPath(repo)

			}

			// make the window for the first time
			t = addWindowPB(insertWin, found)
			log.Info("table has uuid", t.GetUuid())
		})
	})

	grid.NewButton("Configure", func() {
		log.Info("add a forge config window here")
	})

	win.Stack.NewGroup("misc (works in progress)")

	grid = win.Stack.RawGrid()
	var found *gitpb.Repos
	var txt string

	found = develBehindMasterProblem()
	txt = fmt.Sprintf("devel is behind master (%d)", found.Len())
	grid.NewButton(txt, func() {
		win := gadgets.RawBasicWindow("devel branches that are out of sync with master")
		win.Make()
		win.Show()
		win.Custom = func() {
			// sets the hidden flag to false so Toggle() works
			win.Hide()
		}
		box := win.Box().NewBox("bw vbox", false)

		found := develBehindMasterProblem()
		group := box.NewGroup("test buttons")
		hbox := group.Box().Horizontal()
		hbox.NewButton("git merge master devel", func() {
			all := found.SortByFullPath()
			for all.Scan() {
				repo := all.Next()
				mname := repo.GetMasterBranchName()
				dname := repo.GetDevelBranchName()
				if dname != repo.GetCurrentBranchName() {
					log.Info("Repo is not on the devel branch", repo.GetGoPath())
				}
				cmd := []string{"git", "merge", mname}
				log.Info(repo.GetGoPath(), cmd)
				repo.RunVerbose(cmd)
			}
		})
		hbox.NewButton("test", func() {
		})

		t := makeStandardReposGrid(found)
		t.SetParent(box)
		t.ShowTable()
	})

	found = remoteUserBranchProblem()
	txt = fmt.Sprintf("user branch is remote (%d)", found.Len())
	grid.NewButton(txt, func() {
		win := gadgets.RawBasicWindow("repos that seem to have remote user branches")
		win.Make()
		win.Show()
		win.Custom = func() {
			// sets the hidden flag to false so Toggle() works
			win.Hide()
		}
		box := win.Box().NewBox("bw vbox", false)

		found := remoteUserBranchProblem()
		group := box.NewGroup("test buttons")
		hbox := group.Box().Horizontal()
		hbox.NewButton("git branch delete", func() {
			win.Disable()
			defer win.Enable()
			all := found.SortByFullPath()
			for all.Scan() {
				repo := all.Next()
				brname := repo.GetUserBranchName()
				// git push origin --delete jcarr
				os.Setenv("GIT_TERMINAL_PROMPT", "0")
				cmd := []string{"git", "push", "origin", "--delete", brname}
				log.Info("You may want to run:", repo.GetGoPath(), cmd)
				repo.RunVerbose(cmd)
				os.Unsetenv("GIT_TERMINAL_PROMPT")

				// git branch --delete --remote origin/jcarr
				cmd = []string{"git", "branch", "--delete", "--remote", "origin/" + brname}
				log.Info(repo.GetGoPath(), cmd)
				repo.RunVerbose(cmd)
				repo.Reload()
			}
			me.forge.SetConfigSave(true)
			me.forge.ConfigSave()
		})

		t := makeStandardReposGrid(found)
		t.SetParent(box)
		t.ShowTable()
	})

	grid.NewButton("unknown branches", func() {
		log.Info("unknown branches not done yet")
	})
	grid.NextRow()

	found = develRemoteProblem()
	txt = fmt.Sprintf("remote devel != local devel (%d)", found.Len())
	grid.NewButton(txt, func() {
		found := develRemoteProblem()
		makeStandardReposWindow(txt, found)
	})

	found = masterRemoteProblem()
	txt = fmt.Sprintf("remote master != local master (%d)", found.Len())
	grid.NewButton(txt, func() {
		found := masterRemoteProblem()
		makeStandardReposWindow(txt, found)
	})
	grid.NextRow()

	return win
}

func develBehindMasterProblem() *gitpb.Repos {
	found := new(gitpb.Repos)
	all := me.forge.Repos.SortByFullPath()
	for all.Scan() {
		repo := all.Next()
		if repo.GetDevelVersion() == repo.GetMasterVersion() {
			continue
		}
		found.AppendByGoPath(repo)

	}
	return found
}

func remoteUserBranchProblem() *gitpb.Repos {
	found := new(gitpb.Repos)
	all := me.forge.Repos.SortByFullPath()
	for all.Scan() {
		repo := all.Next()
		username := repo.GetUserBranchName()
		if repo.IsBranchRemote(username) {
			found.AppendByGoPath(repo)
		}

	}
	return found
}

func develRemoteProblem() *gitpb.Repos {
	found := new(gitpb.Repos)
	all := me.forge.Repos.SortByFullPath()
	for all.Scan() {
		repo := all.Next()
		brname := repo.GetDevelBranchName()
		if !repo.IsBranchRemote(brname) {
			// log.Info("repo does not have remote devel branch", repo.GetGoPath())
			continue
		}
		lhash := repo.GetLocalHash(brname)
		rhash := repo.GetRemoteHash(brname)
		// log.Info(lhash, rhash, repo.GetGoPath())
		if lhash == "" || rhash == "" {
			// something is wrong if either of these are blank
			found.AppendByGoPath(repo)
			continue
		}
		if lhash == rhash {
			continue
		}
		found.AppendByGoPath(repo)

	}
	return found
}

func masterRemoteProblem() *gitpb.Repos {
	found := new(gitpb.Repos)
	all := me.forge.Repos.SortByFullPath()
	for all.Scan() {
		repo := all.Next()
		brname := repo.GetMasterBranchName()
		if !repo.IsBranchRemote(brname) {
			// log.Info("repo does not have remote devel branch", repo.GetGoPath())
			continue
		}
		lhash := repo.GetLocalHash(brname)
		rhash := repo.GetRemoteHash(brname)
		// log.Info(lhash, rhash, repo.GetGoPath())
		if lhash == "" || rhash == "" {
			// something is wrong if either of these are blank
			found.AppendByGoPath(repo)
			continue
		}
		if lhash == rhash {
			continue
		}
		found.AppendByGoPath(repo)

	}
	return found
}

func makeWritableWindow(pb *gitpb.Repos) (*gadgets.GenericWindow, *gitpb.ReposTable) {
	win := gadgets.NewGenericWindow("Repos You have write access to", "Configure")
	t := pb.NewTable("testForgeRepos")
	t.NewUuid()

	grid := win.Group.RawGrid()
	grid.NewButton("git pull", func() {
		log.Info("todo: run git pull on each repo")
	})

	grid.NewButton("do repos.ReScan()", func() {
		t.Update()
	})

	tbox := win.Bottom.Box()
	t.SetParent(tbox)

	sf := t.AddStringFunc("repo", func(r *gitpb.Repo) string {
		return r.GetGoPath()
	})
	sf.Custom = func(r *gitpb.Repo) {
		log.Info("do button click on", r.GetGoPath())
	}
	t.AddTimeFunc("age", func(repo *gitpb.Repo) time.Time {
		return repo.NewestTime()
	})
	t.AddMasterVersion()
	t.AddDevelVersion()
	t.AddUserVersion()
	t.AddCurrentBranchName()
	t.AddState()
	t.ShowTable()
	return win, t
}

func makeWindowForPB() *gadgets.GenericWindow {
	win := gadgets.NewGenericWindow("Raw PB View", "Configure")

	return win
}

func addWindowPB(win *gadgets.GenericWindow, pb *gitpb.Repos) *gitpb.ReposTable {
	t := pb.NewTable("testForgeRepos")
	t.NewUuid()
	tbox := win.Bottom.Box().SetProgName("TBOX")
	t.SetParent(tbox)

	sf := t.AddStringFunc("repo", func(r *gitpb.Repo) string {
		return r.GetGoPath()
	})
	sf.Custom = func(r *gitpb.Repo) {
		log.Info("do button click on", r.GetGoPath())
	}
	t.AddTimeFunc("age", func(repo *gitpb.Repo) time.Time {
		return repo.NewestTime()
	})
	t.AddMasterVersion()
	t.AddDevelVersion()
	t.AddUserVersion()
	t.AddCurrentBranchName()
	t.AddState()
	t.ShowTable()
	return t
}