0
0
mirror of https://github.com/thegeeklab/git-sv.git synced 2024-09-20 00:02:46 +02:00
git-sv/sv/formatter.go

115 lines
3.2 KiB
Go
Raw Normal View History

package sv
import (
"bytes"
"text/template"
)
type releaseNoteTemplateVariables struct {
Version string
Date string
Sections map[string]ReleaseNoteSection
Order []string
BreakingChanges BreakingChangeSection
}
2020-02-02 04:49:54 +01:00
const (
cglTemplate = `# Changelog
{{- range .}}
{{template "rnTemplate" .}}
---
{{- end}}
`
rnSectionItem = "- {{if .Message.Scope}}**{{.Message.Scope}}:** {{end}}{{.Message.Description}} ({{.Hash}}){{if .Message.Metadata.issue}} ({{.Message.Metadata.issue}}){{end}}"
2020-02-02 04:49:54 +01:00
rnSection = `{{- if .}}{{- if ne .Name ""}}
### {{.Name}}
{{range $k,$v := .Items}}
{{template "rnSectionItem" $v}}
{{- end}}
{{- end}}{{- end}}`
2020-02-02 04:49:54 +01:00
rnSectionBreakingChanges = `{{- if ne .Name ""}}
### {{.Name}}
{{range $k,$v := .Messages}}
- {{$v}}
{{- end}}
{{- end}}`
2020-02-02 04:49:54 +01:00
rnTemplate = `## {{if .Version}}v{{.Version}}{{end}}{{if and .Date .Version}} ({{end}}{{.Date}}{{if and .Version .Date}}){{end}}
{{- $sections := .Sections }}
{{- range $key := .Order }}
{{- template "rnSection" (index $sections $key) }}
{{- end}}
{{- template "rnSectionBreakingChanges" .BreakingChanges}}
`
2020-02-02 04:49:54 +01:00
)
// OutputFormatter output formatter interface.
type OutputFormatter interface {
2021-07-31 22:34:40 +02:00
FormatReleaseNote(releasenote ReleaseNote) (string, error)
FormatChangelog(releasenotes []ReleaseNote) (string, error)
}
// OutputFormatterImpl formater for release note and changelog.
type OutputFormatterImpl struct {
releasenoteTemplate *template.Template
2020-02-02 04:49:54 +01:00
changelogTemplate *template.Template
}
// NewOutputFormatter TemplateProcessor constructor.
func NewOutputFormatter() *OutputFormatterImpl {
2020-02-02 04:49:54 +01:00
cgl := template.Must(template.New("cglTemplate").Parse(cglTemplate))
rn := template.Must(cgl.New("rnTemplate").Parse(rnTemplate))
template.Must(rn.New("rnSectionItem").Parse(rnSectionItem))
template.Must(rn.New("rnSection").Parse(rnSection))
template.Must(rn.New("rnSectionBreakingChanges").Parse(rnSectionBreakingChanges))
return &OutputFormatterImpl{releasenoteTemplate: rn, changelogTemplate: cgl}
}
// FormatReleaseNote format a release note.
2021-07-31 22:34:40 +02:00
func (p OutputFormatterImpl) FormatReleaseNote(releasenote ReleaseNote) (string, error) {
2020-02-02 04:49:54 +01:00
var b bytes.Buffer
2021-07-31 22:34:40 +02:00
if err := p.releasenoteTemplate.Execute(&b, releaseNoteVariables(releasenote)); err != nil {
return "", err
}
return b.String(), nil
2020-02-02 04:49:54 +01:00
}
2021-07-31 21:03:58 +02:00
// FormatChangelog format a changelog.
2021-07-31 22:34:40 +02:00
func (p OutputFormatterImpl) FormatChangelog(releasenotes []ReleaseNote) (string, error) {
2021-07-31 21:35:28 +02:00
templateVars := make([]releaseNoteTemplateVariables, len(releasenotes))
for i, v := range releasenotes {
templateVars[i] = releaseNoteVariables(v)
2020-02-02 04:49:54 +01:00
}
var b bytes.Buffer
2021-07-31 22:34:40 +02:00
if err := p.changelogTemplate.Execute(&b, templateVars); err != nil {
return "", err
}
return b.String(), nil
2020-02-02 04:49:54 +01:00
}
func releaseNoteVariables(releasenote ReleaseNote) releaseNoteTemplateVariables {
2021-07-31 21:03:58 +02:00
date := ""
2020-05-01 05:45:08 +02:00
if !releasenote.Date.IsZero() {
date = releasenote.Date.Format("2006-01-02")
}
2021-07-31 21:03:58 +02:00
version := ""
if releasenote.Version != nil {
version = releasenote.Version.String()
}
2020-02-02 04:49:54 +01:00
return releaseNoteTemplateVariables{
Version: version,
2020-05-01 05:45:08 +02:00
Date: date,
Sections: releasenote.Sections,
Order: []string{"feat", "fix", "refactor", "perf", "test", "build", "ci", "chore", "docs", "style"},
BreakingChanges: releasenote.BreakingChanges,
}
}