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)
|
2024-02-19 16:28:24 -06:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2024-02-19 16:28:24 -06:00
|
|
|
// run the repostatus update
|
2024-02-17 15:48:56 -06:00
|
|
|
r.Status.UpdateNew()
|
2024-02-17 08:39:55 -06:00
|
|
|
|
2024-02-19 16:28:24 -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
|
|
|
|
2024-02-19 16:28:24 -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()
|
2024-02-19 16:28:24 -06:00
|
|
|
} else {
|
|
|
|
r.Show()
|
2024-02-17 08:39:55 -06:00
|
|
|
}
|
|
|
|
}
|
2024-02-19 16:28:24 -06:00
|
|
|
return true
|
2024-02-17 08:39:55 -06:00
|
|
|
}
|