guireleaser/findNext.go

186 lines
5.2 KiB
Go
Raw Normal View History

// This is a simple example
package main
import (
2024-12-16 00:19:03 -06:00
"strings"
"go.wit.com/log"
2024-12-03 18:00:42 -06:00
"go.wit.com/lib/gui/repolist"
"go.wit.com/lib/protobuf/gitpb"
)
2024-12-02 10:43:48 -06:00
var findCounter int
var findFix bool = false
2024-12-11 01:19:07 -06:00
var findOk bool = true
2024-12-02 10:43:48 -06:00
// trys to figure out if there is still something to update
// todo: redo this logic as it is terrible
// rename this findNext()
func findNext() bool {
2024-12-02 10:43:48 -06:00
findCounter = 0
loop := me.repos.View.ReposSortByName()
for loop.Scan() {
repo := loop.Repo()
2024-12-17 07:03:17 -06:00
check := me.forge.FindByGoPath(repo.GetGoPath())
if check == nil {
2024-12-17 07:03:17 -06:00
log.Info("boo, you didn't git clone", repo.GetGoPath())
return false
}
if check.GetTargetVersion() == check.GetCurrentBranchVersion() {
2024-12-17 07:03:17 -06:00
// log.Info("findNext() no update needed", check.GetGoPath, check.GetTargetVersion(), "vs", check.GetCurrentBranchVersion())
continue
} else {
2024-12-17 07:03:17 -06:00
log.Info("findNext() update needed", check.GetGoPath(), check.GetTargetVersion(), "vs", check.GetCurrentBranchVersion())
}
2024-12-17 07:03:17 -06:00
if me.forge.Config.IsReadOnly(check.GetGoPath()) {
log.Info("findNext() skipping readonly")
continue
}
if check.CheckDirty() {
log.Info("findNext() skipping dirty")
continue
}
2024-12-02 10:43:48 -06:00
if findFix {
log.Info("findFix is true. running fixGoDeps()")
if fixGodeps(check) {
log.Info("fixGoDeps() returned true")
} else {
log.Info("fixGoDeps() returned false")
}
2024-12-02 10:43:48 -06:00
}
findCounter += 1
if check.Exists("go.mod") {
log.Info("go.mod exists here")
} else {
log.Info("go.mod is gone here")
}
if ok, err := check.ParseGoSum(); !ok {
log.Info("ParseGoSum() failed (probably repo needs go mod tidy)", err)
log.Info("ParseGoSum() findFix =", findFix, "findCounter =", findCounter)
if check.Exists("go.mod") {
log.Info("go.mod exists here")
} else {
log.Info("go.mod is gone here")
}
continue
}
if check.Exists("go.mod") {
log.Info("go.mod exists here")
} else {
log.Info("go.mod is gone here")
}
2024-12-02 08:45:13 -06:00
if me.forge.FinalGoDepsCheckOk(check) {
setCurrentRepo(repo, "should be good to release", "pretty sure")
if check.Exists("go.mod") {
log.Info("go.mod exists here")
} else {
log.Info("go.mod is gone here")
}
return true
}
if check.Exists("go.mod") {
log.Info("go.mod exists here")
} else {
log.Info("go.mod is gone here")
}
2024-12-17 07:03:17 -06:00
log.Info("findNext() got to the end. repo", repo.GetGoPath(), "did not work. trying to find a new one now")
}
if findCounter == 0 {
log.Info("NOTHING TO UPDATE. findCounter =", findCounter)
} else {
findFix = true
log.Info("me.current is nil findCounter =", findCounter, "so set findFix =", findFix)
2024-12-02 10:43:48 -06:00
}
log.Info("tried to findNext() but not sure what to do next counter =", findCounter, "findFix =", findFix)
me.release.status.SetText("ALL DONE?")
return false
}
2024-12-13 02:21:39 -06:00
func runGoClean(check *gitpb.Repo) bool {
2024-12-02 05:13:17 -06:00
// check if the package dependancies changed, if so, re-publish
2024-12-13 02:21:39 -06:00
check.GoDeps = nil
2024-12-16 00:19:03 -06:00
cmd := []string{"go-mod-clean", "--strict"}
2024-12-17 07:03:17 -06:00
log.Info("Running", cmd, "in", check.GetGoPath())
2024-12-16 00:19:03 -06:00
result := check.Run(cmd)
2024-12-12 02:05:47 -06:00
if result.Error != nil {
2024-12-17 07:03:17 -06:00
log.Info(cmd, "failed with", result.Error, check.GetGoPath())
2024-12-16 00:19:03 -06:00
log.Info("STDOUT")
log.Info(strings.Join(result.Stdout, "\n"))
log.Info("STDERR")
log.Info(strings.Join(result.Stderr, "\n"))
2024-12-12 02:05:47 -06:00
return false
}
if result.Exit != 0 {
2024-12-17 07:03:17 -06:00
log.Info(cmd, "failed with", result.Exit, check.GetGoPath())
2024-12-16 00:19:03 -06:00
log.Info("STDOUT")
log.Info(strings.Join(result.Stdout, "\n"))
log.Info("STDERR")
log.Info(strings.Join(result.Stderr, "\n"))
2024-12-12 02:05:47 -06:00
return false
}
2024-12-13 02:21:39 -06:00
if ok, err := check.ParseGoSum(); !ok {
log.Info("ParseGoSum() failed", err)
return false
}
return true
}
// tries to fix the go.mod and go.sum files
func fixGodeps(check *gitpb.Repo) bool {
var good bool = true
if !runGoClean(check) {
return false
}
// skip primative ones
if ok, _ := check.IsPrimitive(); ok {
2024-12-17 07:03:17 -06:00
log.Info("fixGoDeps() skipping primitive", check.GetGoPath())
return true
}
2024-12-02 05:13:17 -06:00
log.Printf("current repo %s go dependancy count: %d", check.GetGoPath(), check.GoDepsLen())
deps := check.GoDeps.SortByGoPath()
for deps.Scan() {
depRepo := deps.Next()
// log.Info("found dep", depRepo.GetGoPath())
2024-12-17 07:03:17 -06:00
if me.forge.Config.IsReadOnly(depRepo.GetGoPath()) {
2024-12-02 05:13:17 -06:00
log.Info("IsReadOnly = true", depRepo.GetGoPath())
continue
2024-12-02 05:13:17 -06:00
} else {
// log.Info("IsReadOnly = false", depRepo.GetGoPath())
}
2024-12-17 07:03:17 -06:00
found := me.forge.FindByGoPath(depRepo.GetGoPath())
2024-12-02 05:13:17 -06:00
if found == nil {
log.Info("not found:", depRepo.GetGoPath())
continue
}
if depRepo.GetVersion() != found.GetMasterVersion() {
log.Printf("%-48s %10s (gitpb depRepo)", depRepo.GetGoPath(), depRepo.GetVersion())
log.Printf("%-48s %10s (gitpb found)", found.GetGoPath(), found.GetMasterVersion())
2024-12-02 05:13:17 -06:00
cmd := []string{"go", "get", depRepo.GetGoPath() + "@latest"}
check.Run(cmd)
}
}
return good
}
2024-12-03 18:00:42 -06:00
func setCurrentRepo(repo *repolist.RepoRow, s string, note string) bool {
2024-12-17 07:03:17 -06:00
check := me.forge.FindByGoPath(repo.GetGoPath())
2024-12-03 18:00:42 -06:00
if check == nil {
2024-12-17 07:03:17 -06:00
log.Info("boo, you didn't git clone", repo.GetGoPath())
2024-12-03 18:00:42 -06:00
return false
}
2024-12-17 07:03:17 -06:00
me.release.repo.SetText(check.GetGoPath())
2024-12-03 18:00:42 -06:00
me.release.status.SetText(s)
me.release.notes.SetText(note)
me.current = repo
me.release.version.SetText(check.GetTargetVersion())
me.release.releaseVersionB.SetText("release version " + check.GetTargetVersion())
me.release.openrepo.Enable()
return true
}