-
Notifications
You must be signed in to change notification settings - Fork 1
/
count.go
140 lines (117 loc) · 2.6 KB
/
count.go
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package main
import (
"fmt"
"strings"
"github.com/kovetskiy/stash"
"github.com/reconquest/karma-go"
)
func handleCount(api *API, opts Options) error {
log.Infof(nil, "receiving a total number of repositories")
total := 0
err := api.StreamRepositories(func(repo stash.Repository) {
total++
})
if err != nil {
return karma.Format(
err,
"unable to obtain total number of repositories",
)
}
log.Infof(
nil, "total number of repositories: %d", total,
)
log.Infof(
nil,
"started measuring total number of repositories with enabled/configured hooks",
)
totalEnabled := 0
totalConfigured := 0
tableEnabled := map[string]int{}
tableConfigured := map[string]int{}
index := 0
err = api.StreamRepositories(func(repo stash.Repository) {
index++
hooks, err := api.GetHooks(repo.Project.Key, repo.Slug)
if err != nil {
log.Errorf(
err,
"unable to obtain hooks for repo: %s/%s",
repo.Project.Key,
repo.Name,
)
}
for _, hook := range hooks {
if strings.HasPrefix(hook.Details.Key, opts.Hook) {
if hook.Enabled {
var state string
if hook.Configured {
totalConfigured++
if _, ok := tableConfigured[hook.Details.Key]; !ok {
tableConfigured[hook.Details.Key] = 0
} else {
tableConfigured[hook.Details.Key]++
}
state = "enabled and configured"
} else {
totalEnabled++
if _, ok := tableEnabled[hook.Details.Key]; !ok {
tableEnabled[hook.Details.Key] = 0
} else {
tableEnabled[hook.Details.Key]++
}
state = "enabled (inherited from project)"
}
log.Debugf(
nil,
"%s/%s has %s hook: %s",
repo.Project.Key,
repo.Slug,
hook.Details.Key,
state,
)
}
}
}
if index%50 == 0 || index == total {
log.Infof(
nil,
"%.2f%% | %d of %d repositories processed",
(float64(index) / float64(total) * 100),
index,
total,
)
}
})
if err != nil {
return karma.Format(
err,
"unable to stream repositories",
)
}
keys := []string{}
for key, _ := range tableEnabled {
keys = append(keys, key)
}
for key, _ := range tableConfigured {
found := false
for _, item := range keys {
if key == item {
break
}
}
if !found {
keys = append(keys, key)
}
}
for i, key := range keys {
if i != 0 {
fmt.Println()
}
fmt.Printf("Hook: %s\n", key)
configured, _ := tableConfigured[key]
fmt.Printf("Enabled & Configured on %d repositories\n", configured)
enabled, _ := tableEnabled[key]
fmt.Printf("Enabled (inherited from project) on %d repositories\n", enabled)
}
return nil
}