summaryrefslogtreecommitdiff
path: root/human.go
blob: a615c0f903f378eac1df371a7bac90f9f18d9d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main

import (
	"fmt"

	"go.wit.com/lib/gui/repolist"
	"go.wit.com/log"
)

func PrintReport(readonly string, onlydirty string, perfect string) {
	var count int

	log.Info(repolist.ReportHeader())

	loop := me.repos.View.ReposSortByName()
	for loop.Scan() {
		repo := loop.Repo()

		count += 1
		header := repo.StandardHeader()
		if onlydirty == "true" {
			if repo.CheckDirty() {
				log.Info(header + "")
			}
			continue
		}

		if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
			if readonly == "true" {
				log.Info(header + "readonly")
			}
			continue
		}
		if repo.State() == "PERFECT" {
			if perfect == "false" {
				continue
			}
		}
		if repo.State() != "merge to main" {
			log.Info(header + "")
			continue
		}
		if repo.CheckDirty() {
			log.Info(header + "")
			continue
		}
		log.Info(header + "")
		check := me.forge.FindByGoPath(repo.GetGoPath())
		if check == nil {
			log.Info("boo, you didn't git clone", repo.GetGoPath())
			continue
		}
		me.forge.StandardReleaseHeader(check, repo.State())
	}
	log.Info(fmt.Sprintf("EVERYTHING WORKED repo count = %d", count))
}