mirror of
https://github.com/thegeeklab/git-sv.git
synced 2024-11-10 02:10:38 +00:00
e650f64783
issue: #40
88 lines
2.8 KiB
Go
88 lines
2.8 KiB
Go
package sv
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/Masterminds/semver/v3"
|
|
)
|
|
|
|
// ReleaseNoteProcessor release note processor interface.
|
|
type ReleaseNoteProcessor interface {
|
|
Create(version *semver.Version, tag string, date time.Time, commits []GitCommitLog) ReleaseNote
|
|
}
|
|
|
|
// ReleaseNoteProcessorImpl release note based on commit log.
|
|
type ReleaseNoteProcessorImpl struct {
|
|
cfg ReleaseNotesConfig
|
|
}
|
|
|
|
// NewReleaseNoteProcessor ReleaseNoteProcessor constructor.
|
|
func NewReleaseNoteProcessor(cfg ReleaseNotesConfig) *ReleaseNoteProcessorImpl {
|
|
return &ReleaseNoteProcessorImpl{cfg: cfg}
|
|
}
|
|
|
|
// Create create a release note based on commits.
|
|
func (p ReleaseNoteProcessorImpl) Create(version *semver.Version, tag string, date time.Time, commits []GitCommitLog) ReleaseNote {
|
|
mapping := commitSectionMapping(p.cfg.Sections)
|
|
|
|
sections := make(map[string]ReleaseNoteSection)
|
|
authors := make(map[string]struct{})
|
|
var breakingChanges []string
|
|
for _, commit := range commits {
|
|
authors[commit.AuthorName] = struct{}{}
|
|
if sectionCfg, exists := mapping[commit.Message.Type]; exists {
|
|
section, sexists := sections[sectionCfg.Name]
|
|
if !sexists {
|
|
section = ReleaseNoteSection{Name: sectionCfg.Name, Types: sectionCfg.CommitTypes}
|
|
}
|
|
section.Items = append(section.Items, commit)
|
|
sections[sectionCfg.Name] = section
|
|
}
|
|
if commit.Message.BreakingMessage() != "" {
|
|
// TODO: if no message found, should use description instead?
|
|
breakingChanges = append(breakingChanges, commit.Message.BreakingMessage())
|
|
}
|
|
}
|
|
|
|
var breakingChangeSection BreakingChangeSection
|
|
if bcCfg := p.cfg.sectionConfig(ReleaseNotesSectionTypeBreakingChange); bcCfg != nil && len(breakingChanges) > 0 {
|
|
breakingChangeSection = BreakingChangeSection{Name: bcCfg.Name, Messages: breakingChanges}
|
|
}
|
|
return ReleaseNote{Version: version, Tag: tag, Date: date.Truncate(time.Minute), Sections: sections, BreakingChanges: breakingChangeSection, AuthorsNames: authors}
|
|
}
|
|
|
|
func commitSectionMapping(sections []ReleaseNotesSectionConfig) map[string]ReleaseNotesSectionConfig {
|
|
mapping := make(map[string]ReleaseNotesSectionConfig)
|
|
for _, section := range sections {
|
|
if section.SectionType == ReleaseNotesSectionTypeCommits {
|
|
for _, commitType := range section.CommitTypes {
|
|
mapping[commitType] = section
|
|
}
|
|
}
|
|
}
|
|
return mapping
|
|
}
|
|
|
|
// ReleaseNote release note.
|
|
type ReleaseNote struct {
|
|
Version *semver.Version
|
|
Tag string
|
|
Date time.Time
|
|
Sections map[string]ReleaseNoteSection
|
|
BreakingChanges BreakingChangeSection
|
|
AuthorsNames map[string]struct{}
|
|
}
|
|
|
|
// BreakingChangeSection breaking change section.
|
|
type BreakingChangeSection struct {
|
|
Name string
|
|
Messages []string
|
|
}
|
|
|
|
// ReleaseNoteSection release note section.
|
|
type ReleaseNoteSection struct {
|
|
Name string
|
|
Types []string
|
|
Items []GitCommitLog
|
|
}
|