1
0
Fork 0
mirror of https://github.com/vbatts/git-validation.git synced 2024-11-16 21:38:39 +00:00
git-validation/validate/rules.go
Vincent Batts 03bda4bcb2 main: add filtering of rules to run
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2015-10-05 18:49:02 -04:00

81 lines
2 KiB
Go

package validate
import (
"strings"
"github.com/vbatts/git-validation/git"
)
var (
// RegisteredRules are the standard validation to perform on git commits
RegisteredRules = []Rule{}
)
// RegisterRule includes the Rule in the avaible set to use
func RegisterRule(vr Rule) {
RegisteredRules = append(RegisteredRules, vr)
}
// Rule will operate over a provided git.CommitEntry, and return a result.
type Rule struct {
Name string // short name for reference in in the `-run=...` flag
Description string // longer Description for readability
Run func(git.CommitEntry) Result
}
// Commit processes the given rules on the provided commit, and returns the result set.
func Commit(c git.CommitEntry, rules []Rule) Results {
results := Results{}
for _, r := range rules {
results = append(results, r.Run(c))
}
return results
}
// Result is the result for a single validation of a commit.
type Result struct {
CommitEntry git.CommitEntry
Pass bool
Msg string
}
// Results is a set of results. This is type makes it easy for the following function.
type Results []Result
// PassFail gives a quick over/under of passes and failures of the results in this set
func (vr Results) PassFail() (pass int, fail int) {
for _, res := range vr {
if res.Pass {
pass++
} else {
fail++
}
}
return pass, fail
}
// SanitizeFilters takes a comma delimited list and returns the cleaned items in the list
func SanitizeFilters(filt string) (excludes []string) {
for _, item := range strings.Split(filt, ",") {
excludes = append(excludes, strings.TrimSpace(item))
}
return
}
// FilterRules takes a set of rules and a list of short names to exclude, and returns the reduced set.
// The comparison is case insensitive.
func FilterRules(rules []Rule, excludes []string) []Rule {
ret := []Rule{}
for _, r := range rules {
for _, e := range excludes {
if strings.ToLower(r.Name) == strings.ToLower(e) {
ret = append(ret, r)
}
}
}
return ret
}