repolist/scan.go

88 lines
1.6 KiB
Go
Raw Normal View History

2024-02-17 08:39:55 -06:00
package repolist
import (
"fmt"
2024-02-19 19:43:21 -06:00
"strconv"
2024-02-17 08:39:55 -06:00
2024-12-17 18:49:11 -06:00
"go.wit.com/lib/protobuf/gitpb"
2024-03-02 17:18:50 -06:00
"go.wit.com/log"
2024-02-17 08:39:55 -06:00
)
2024-02-23 09:02:51 -06:00
func (r *RepoList) RegisterHideFunction(f func(*RepoRow)) {
2024-02-19 19:43:21 -06:00
me.hideFunction = f
}
2024-02-17 14:22:24 -06:00
func (r *RepoList) ScanRepositories() (int, string) {
2024-02-17 08:39:55 -06:00
var i int
2024-02-19 19:43:21 -06:00
var shown int
2024-02-23 14:25:00 -06:00
var total int
2024-02-18 15:09:35 -06:00
t := TimeFunction(func() {
2024-02-17 08:39:55 -06:00
for _, repo := range me.allrepos {
i += 1
2024-02-23 14:25:00 -06:00
changed := repo.NewScan()
total += changed
2024-02-19 19:43:21 -06:00
}
var hidden int
for _, repo := range me.allrepos {
if repo.Hidden() {
hidden += 1
} else {
shown += 1
}
2024-02-17 08:39:55 -06:00
}
})
s := fmt.Sprint(t)
2024-02-19 19:43:21 -06:00
tmp := strconv.Itoa(shown) + " repos shown"
me.shownCount.SetText(tmp)
2024-02-20 14:45:09 -06:00
me.duration.SetText(s)
2024-02-19 19:43:21 -06:00
2024-11-30 15:07:27 -06:00
log.Info("repolist Scanned", i, "repositories.", total, "changes in", s)
2024-02-17 08:39:55 -06:00
return i, s
}
2025-01-07 06:15:09 -06:00
func (r *RepoRow) UpdatePb(newpb *gitpb.Repo) {
r.pb = newpb
}
2025-01-07 06:47:08 -06:00
func (r *RepoRow) NewScan() int {
2024-02-23 14:25:00 -06:00
var changed int = 0
2024-02-17 15:48:56 -06:00
if r.Status == nil {
2024-02-29 09:16:20 -06:00
log.Log(REPOWARN, "repo.Status = nil. not initialized for some reason")
2024-02-23 14:25:00 -06:00
return changed
2024-02-17 08:39:55 -06:00
}
2025-01-07 05:58:33 -06:00
pb := r.pb
2024-12-17 18:49:11 -06:00
if pb == nil {
log.Log(REPOWARN, "NewScan() pb = nil")
return changed
}
2024-02-17 08:39:55 -06:00
// run the repostatus update
2024-02-20 14:45:09 -06:00
r.Status.Update()
2024-02-17 08:39:55 -06:00
if r.lastTag != nil {
2024-12-17 18:49:11 -06:00
r.lastTag.SetLabel(pb.GetLastTag())
}
2024-11-29 02:01:43 -06:00
if r.masterVersion == nil {
panic("what the fuck node")
}
2025-01-07 06:47:08 -06:00
2024-12-17 18:49:11 -06:00
r.masterVersion.SetLabel(pb.GetMasterVersion())
r.develVersion.SetLabel(pb.GetDevelVersion())
r.userVersion.SetLabel(pb.GetUserVersion())
r.gitState.SetLabel(r.Status.GitState())
2025-01-07 04:58:42 -06:00
r.currentName.SetLabel(pb.GetCurrentBranchName())
r.currentVersion.SetLabel(pb.GetCurrentBranchVersion())
2024-12-17 06:36:28 -06:00
if r.State() == "merge to main" {
r.Hide()
}
if r.Status.GitState() == "PERFECT" {
r.Hide()
2024-11-30 15:07:27 -06:00
} else {
r.Show()
}
2024-02-23 14:25:00 -06:00
return changed
2024-02-17 08:39:55 -06:00
}