88 lines
1.6 KiB
Go
88 lines
1.6 KiB
Go
package repolist
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"go.wit.com/lib/protobuf/gitpb"
|
|
"go.wit.com/log"
|
|
)
|
|
|
|
func (r *RepoList) RegisterHideFunction(f func(*RepoRow)) {
|
|
me.hideFunction = f
|
|
}
|
|
|
|
func (r *RepoList) ScanRepositories() (int, string) {
|
|
var i int
|
|
var shown int
|
|
var total int
|
|
t := TimeFunction(func() {
|
|
for _, repo := range me.allrepos {
|
|
i += 1
|
|
changed := repo.NewScan()
|
|
total += changed
|
|
}
|
|
var hidden int
|
|
for _, repo := range me.allrepos {
|
|
if repo.Hidden() {
|
|
hidden += 1
|
|
} else {
|
|
shown += 1
|
|
}
|
|
}
|
|
})
|
|
s := fmt.Sprint(t)
|
|
tmp := strconv.Itoa(shown) + " repos shown"
|
|
me.shownCount.SetText(tmp)
|
|
me.duration.SetText(s)
|
|
|
|
log.Info("repolist Scanned", i, "repositories.", total, "changes in", s)
|
|
return i, s
|
|
}
|
|
|
|
func (r *RepoRow) UpdatePb(newpb *gitpb.Repo) {
|
|
r.pb = newpb
|
|
}
|
|
|
|
func (r *RepoRow) NewScan() int {
|
|
var changed int = 0
|
|
if r.Status == nil {
|
|
log.Log(REPOWARN, "repo.Status = nil. not initialized for some reason")
|
|
return changed
|
|
}
|
|
pb := r.pb
|
|
if pb == nil {
|
|
log.Log(REPOWARN, "NewScan() pb = nil")
|
|
return changed
|
|
}
|
|
|
|
// run the repostatus update
|
|
r.Status.Update()
|
|
|
|
if r.lastTag != nil {
|
|
r.lastTag.SetLabel(pb.GetLastTag())
|
|
}
|
|
|
|
if r.masterVersion == nil {
|
|
panic("what the fuck node")
|
|
}
|
|
|
|
r.masterVersion.SetLabel(pb.GetMasterVersion())
|
|
r.develVersion.SetLabel(pb.GetDevelVersion())
|
|
r.userVersion.SetLabel(pb.GetUserVersion())
|
|
r.gitState.SetLabel(r.Status.GitState())
|
|
r.currentName.SetLabel(pb.GetCurrentBranchName())
|
|
r.currentVersion.SetLabel(pb.GetCurrentBranchVersion())
|
|
|
|
if r.State() == "merge to main" {
|
|
r.Hide()
|
|
}
|
|
if r.Status.GitState() == "PERFECT" {
|
|
r.Hide()
|
|
} else {
|
|
r.Show()
|
|
}
|
|
|
|
return changed
|
|
}
|