mirror of
https://github.com/Luzifer/git-changerelease.git
synced 2024-12-20 19:11:17 +00:00
255 lines
6.8 KiB
Go
255 lines
6.8 KiB
Go
package main
|
|
|
|
//go:generate go-bindata -o assets.go assets/
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
"regexp"
|
|
"strings"
|
|
"text/template"
|
|
"time"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
"github.com/Luzifer/rconfig"
|
|
"github.com/mitchellh/go-homedir"
|
|
)
|
|
|
|
type configFile struct {
|
|
DiableTagSigning bool `yaml:"disable_signed_tags"`
|
|
MatchMajor []string `yaml:"match_major"`
|
|
MatchPatch []string `yaml:"match_patch"`
|
|
ReleaseCommitMessage string `yaml:"release_commit_message"`
|
|
}
|
|
|
|
var (
|
|
cfg = struct {
|
|
ChangelogFile string `flag:"changelog" default:"History.md" description:"File to write the changelog to"`
|
|
ConfigFile string `flag:"config" default:"~/.git_changerelease.yaml" description:"Location of the configuration file"`
|
|
MkConfig bool `flag:"create-config" default:"false" description:"Copy an example configuration file to the location of --config"`
|
|
NoEdit bool `flag:"no-edit" default:"false" description:"Do not open the $EDITOR to modify the changelog"`
|
|
|
|
PreRelease string `flag:"pre-release" default:"" description:"Pre-Release information to append to the version (e.g. 'beta' or 'alpha.1')"`
|
|
ReleaseMeta string `flag:"release-meta" default:"" description:"Release metadata to append to the version (e.g. 'exp.sha.5114f85' or '20130313144700')"`
|
|
|
|
VersionAndExit bool `flag:"version" default:"false" description:"Prints current version and exits"`
|
|
}{}
|
|
|
|
config configFile
|
|
version = "dev"
|
|
|
|
matchers = make(map[*regexp.Regexp]semVerBump)
|
|
)
|
|
|
|
func prepareRun() {
|
|
if err := rconfig.Parse(&cfg); err != nil {
|
|
log.Fatalf("Unable to parse commandline options: %s", err)
|
|
}
|
|
|
|
if ecfg, err := homedir.Expand(cfg.ConfigFile); err != nil {
|
|
log.Fatalf("Unable to parse config path: %s", err)
|
|
} else {
|
|
cfg.ConfigFile = ecfg
|
|
}
|
|
|
|
if cfg.VersionAndExit {
|
|
fmt.Printf("git-changerelease %s\n", version)
|
|
os.Exit(0)
|
|
}
|
|
|
|
if cfg.MkConfig {
|
|
data, _ := Asset("assets/git_changerelease.yaml")
|
|
ioutil.WriteFile(cfg.ConfigFile, data, 0600)
|
|
log.Printf("Wrote an example configuration to %s", cfg.ConfigFile)
|
|
os.Exit(0)
|
|
}
|
|
|
|
if !cfg.NoEdit && os.Getenv("EDITOR") == "" {
|
|
log.Fatalf("You chose to open the changelog in the editor but there is no $EDITOR in your env")
|
|
}
|
|
|
|
if err := loadConfig(); err != nil {
|
|
log.Fatalf("Unable to load config file: %s", err)
|
|
}
|
|
|
|
// Collect matchers
|
|
for _, m := range config.MatchPatch {
|
|
r, err := regexp.Compile(m)
|
|
if err != nil {
|
|
log.Fatalf("Unable to parse regex '%s': %s", m, err)
|
|
}
|
|
matchers[r] = semVerBumpPatch
|
|
}
|
|
for _, m := range config.MatchMajor {
|
|
r, err := regexp.Compile(m)
|
|
if err != nil {
|
|
log.Fatalf("Unable to parse regex '%s': %s", m, err)
|
|
}
|
|
matchers[r] = semVerBumpMajor
|
|
}
|
|
}
|
|
|
|
func loadConfig() error {
|
|
if _, err := os.Stat(cfg.ConfigFile); err != nil {
|
|
return errors.New("Config file does not exist, use --create-config to create one")
|
|
}
|
|
|
|
defaultConfigData, _ := Asset("assets/git_changerelease.yaml")
|
|
yaml.Unmarshal(defaultConfigData, &config)
|
|
|
|
data, err := ioutil.ReadFile(cfg.ConfigFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return yaml.Unmarshal(data, &config)
|
|
}
|
|
|
|
func readChangelog() string {
|
|
var changelog string
|
|
|
|
if _, err := os.Stat(cfg.ChangelogFile); err == nil {
|
|
d, err := ioutil.ReadFile(cfg.ChangelogFile)
|
|
if err != nil {
|
|
log.Fatalf("Unable to read old changelog: %s", err)
|
|
}
|
|
changelog = string(d)
|
|
}
|
|
|
|
return changelog
|
|
}
|
|
|
|
func quickTemplate(name string, tplSrc []byte, values map[string]interface{}) ([]byte, error) {
|
|
tpl, err := template.New(name).Parse(string(tplSrc))
|
|
if err != nil {
|
|
return nil, errors.New("Unable to parse log template: " + err.Error())
|
|
}
|
|
buf := bytes.NewBuffer([]byte{})
|
|
tpl.Execute(buf, values)
|
|
|
|
return buf.Bytes(), nil
|
|
}
|
|
|
|
func main() {
|
|
prepareRun()
|
|
|
|
// Get last tag
|
|
lastTag, err := gitSilent("describe", "--tags", "--abbrev=0", `--match=v[0-9]*\.[0-9]*\.[0-9]*`)
|
|
|
|
// Fetch logs since last tag / since repo start
|
|
logArgs := []string{"log", `--format=` + gitLogFormat, "--abbrev-commit"}
|
|
if err == nil {
|
|
logArgs = append(logArgs, fmt.Sprintf("%s..HEAD", lastTag))
|
|
} else {
|
|
lastTag = "0.0.0"
|
|
}
|
|
rawLogs, err := gitErr(logArgs...)
|
|
|
|
if err != nil {
|
|
log.Fatalf("Unable to read git log entries: %s", err)
|
|
}
|
|
|
|
logs := []commit{}
|
|
|
|
for _, l := range strings.Split(rawLogs, "\n") {
|
|
if l == "" {
|
|
continue
|
|
}
|
|
pl, err := parseCommit(l)
|
|
if err != nil {
|
|
log.Fatalf("Git used an unexpected log format.")
|
|
}
|
|
logs = append(logs, *pl)
|
|
}
|
|
|
|
if len(logs) == 0 {
|
|
log.Printf("Found no changes since last tag, stopping now.")
|
|
return
|
|
}
|
|
|
|
// Tetermine increase type
|
|
semVerBumpType, err := selectBumpType(logs)
|
|
if err != nil {
|
|
log.Fatalf("Could not determine how to increase the version: %s", err)
|
|
}
|
|
|
|
// Generate new version
|
|
newVersion, err := parseSemVer(lastTag)
|
|
if err != nil {
|
|
log.Fatalf("Was unable to parse previous version: %s", err)
|
|
}
|
|
if newVersion.PreReleaseInformation == "" && cfg.PreRelease == "" {
|
|
newVersion.Bump(semVerBumpType)
|
|
}
|
|
newVersion.PreReleaseInformation = cfg.PreRelease
|
|
newVersion.MetaData = cfg.ReleaseMeta
|
|
|
|
// Render log
|
|
rawTpl, _ := Asset("assets/log_template.md")
|
|
c, err := quickTemplate("log_template", rawTpl, map[string]interface{}{
|
|
"NextVersion": newVersion,
|
|
"Now": time.Now(),
|
|
"LogLines": logs,
|
|
"OldLog": readChangelog(),
|
|
})
|
|
if err != nil {
|
|
log.Fatalf("Unable to compile log: %s", err)
|
|
}
|
|
|
|
if err := ioutil.WriteFile(cfg.ChangelogFile, bytes.TrimSpace(c), 0644); err != nil {
|
|
log.Fatalf("Unable to write new changelog: %s", err)
|
|
}
|
|
|
|
// Spawning editor
|
|
if !cfg.NoEdit {
|
|
editor := exec.Command(os.Getenv("EDITOR"), cfg.ChangelogFile)
|
|
editor.Stdin = os.Stdin
|
|
editor.Stdout = os.Stdout
|
|
editor.Stderr = os.Stderr
|
|
if err := editor.Run(); err != nil {
|
|
log.Fatalf("Editor ended with non-zero status, stopping here.")
|
|
}
|
|
}
|
|
|
|
// Read back version from changelog file
|
|
changelog := strings.Split(readChangelog(), "\n")
|
|
if len(changelog) < 1 {
|
|
log.Fatalf("Changelog is empty, no way to read back the version.")
|
|
}
|
|
newVersion, err = parseSemVer(strings.Split(changelog[0], " ")[1])
|
|
if err != nil {
|
|
log.Fatalf("Unable to parse new version from log: %s", err)
|
|
}
|
|
|
|
stringVersion := "v" + newVersion.String()
|
|
|
|
// Write the tag
|
|
if _, err := gitErr("add", cfg.ChangelogFile); err != nil {
|
|
log.Fatalf("Unable to add changelog file: %s", err)
|
|
}
|
|
|
|
commitMessage, err := quickTemplate("commitMessage", []byte(config.ReleaseCommitMessage), map[string]interface{}{
|
|
"Version": stringVersion,
|
|
})
|
|
if err != nil {
|
|
log.Fatalf("Unable to compile commit message: %s", err)
|
|
}
|
|
if _, err := gitErr("commit", "-m", string(commitMessage)); err != nil {
|
|
log.Fatalf("Unable to commit changelog: %s", err)
|
|
}
|
|
|
|
tagType := "-s" // By default use signed tags
|
|
if config.DiableTagSigning {
|
|
tagType = "-a" // If requested switch to annotated tags
|
|
}
|
|
|
|
if _, err := gitErr("tag", tagType, "-m", stringVersion, stringVersion); err != nil {
|
|
log.Fatalf("Unable to tag release: %s", err)
|
|
}
|
|
}
|