repolist/scan.go

54 lines
945 B
Go
Raw Normal View History

2024-02-17 08:39:55 -06:00
package repolist
import (
"fmt"
"strings"
"go.wit.com/log"
)
2024-02-17 14:22:24 -06:00
func (r *RepoList) SetAutoScan(b bool) {
me.autoScan = b
}
func (r *RepoList) ScanRepositories() (int, string) {
2024-02-17 08:39:55 -06:00
var i 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-17 14:22:24 -06:00
repo.NewScan()
2024-02-17 08:39:55 -06:00
}
})
s := fmt.Sprint(t)
log.Info("Scanned", i, "repositories. todo: count/show changes in", s)
2024-02-17 08:39:55 -06:00
return i, s
}
2024-02-17 14:22:24 -06:00
func (r *Repo) NewScan() bool {
2024-02-17 15:48:56 -06:00
if r.Status == nil {
log.Warn("repo.Status = nil. not initialized for some reason")
2024-02-17 08:39:55 -06:00
return false
}
// run the repostatus update
2024-02-17 15:48:56 -06:00
r.Status.UpdateNew()
2024-02-17 08:39:55 -06:00
// print out whatever changes have happened
2024-02-17 15:48:56 -06:00
if c, ok := r.Status.Changed(); ok {
2024-02-17 08:39:55 -06:00
c := strings.TrimSpace(c)
for _, line := range strings.Split(c, "\n") {
2024-02-17 15:48:56 -06:00
log.Info(r.Status.Path(), line)
2024-02-17 08:39:55 -06:00
}
}
2024-02-18 17:56:25 -06:00
// hide or show repos based on the checkboxes
if me.autoHidePerfect {
if r.IsPerfect() {
2024-02-17 08:39:55 -06:00
r.Hide()
} else {
r.Show()
2024-02-17 08:39:55 -06:00
}
}
return true
2024-02-17 08:39:55 -06:00
}