git-chglog/commit_filter.go
Frederic BIDON d6459d4601 feat: added support for parsing headers in body, e.g. to support squashed commits
Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
2023-11-04 15:53:20 +01:00

73 lines
1.3 KiB
Go

package chglog
import (
"strings"
)
func commitFilter(commits []*Commit, filters map[string][]string, noCaseSensitive bool) []*Commit { //nolint:gocyclo
// NOTE(khos2ow): this function is over our cyclomatic complexity goal.
// Be wary when adding branches, and look for functionality that could
// be reasonably moved into an injected dependency.
res := []*Commit{}
expandedCommits := []*Commit{}
for _, commit := range commits {
// expand squashed entries
expandedCommits = append(expandedCommits, commit)
if len(commit.AllHeaders) > 0 {
expandedCommits = append(expandedCommits, commit.AllHeaders...)
}
}
for _, commit := range expandedCommits {
include := false
if len(filters) == 0 {
include = true
}
for key, values := range filters {
prop, ok := dotGet(commit, key)
if !ok {
include = false
break
}
str, ok := prop.(string)
if !ok {
include = false
break
}
if noCaseSensitive {
str = strings.ToLower(str)
}
exist := false
for _, val := range values {
if noCaseSensitive {
val = strings.ToLower(val)
}
if str == val {
exist = true
}
}
if !exist {
include = false
break
}
include = true
}
if include {
res = append(res, commit)
}
}
return res
}