ref(changelog): check for max changelog file size, generate new change log file if exceeded.feat/changelog

still in WIO
This commit is contained in:
Felix Wiedmann
2021-05-01 21:49:45 +02:00
parent 2fc6145149
commit d66364e474

View File

@@ -3,6 +3,8 @@ package semanticrelease
import ( import (
"fmt" "fmt"
"os" "os"
"path/filepath"
"strings"
"time" "time"
"github.com/Nightapes/go-semantic-release/internal/integrations" "github.com/Nightapes/go-semantic-release/internal/integrations"
@@ -194,22 +196,79 @@ func (s *SemanticRelease) GetChangelog(releaseVersion *shared.ReleaseVersion) (*
}, releaseVersion.Commits) }, releaseVersion.Commits)
} }
// Todo add maxMB paratemter
// WriteChangeLog writes changelog content to the given file // WriteChangeLog writes changelog content to the given file
func (s *SemanticRelease) WriteChangeLog(changelogContent, file string, overwrite bool) error { func (s *SemanticRelease) WriteChangeLog(changelogContent, file string, overwrite bool) error {
newContent := make([]byte, 0) info, err := os.Stat(file)
newContent = append(newContent, []byte(changelogContent)...) if overwrite || err != nil {
return os.WriteFile(file, []byte(changelogContent), 0644)
}
// TODO: add input of max mb and calculate correct with bytes
if info.Size() >= 1000000 {
err := moveExistingChangelogFile(file)
if err != nil {
return err
}
}
return prependToFile(changelogContent, file)
}
func moveExistingChangelogFile(file string) error {
filenameSeparated := strings.Split(filepath.Base(file), ".")
// check if file had several "." included.
// if yes the filename will be separated like this: "my.file.name", ".md"
if len(filenameSeparated) > 2 {
separatedFilenameWithExtension := make([]string, 0)
separatedFilenameWithExtension = append(separatedFilenameWithExtension, strings.Join(filenameSeparated[:len(filenameSeparated)-2], "."))
separatedFilenameWithExtension = append(separatedFilenameWithExtension, filenameSeparated[len(filenameSeparated)-1])
filenameSeparated = separatedFilenameWithExtension
}
var newFileName string
counter := 1
for {
newFileName = buildNewFileName(filenameSeparated, counter)
if _, err := os.Stat(newFileName); err != nil {
break
}
counter++
}
// only prepend the new changelog content if the the given file already exists
_, err := os.Stat(file)
if !overwrite && err == nil {
content, err := os.ReadFile(file) content, err := os.ReadFile(file)
if err != nil { if err != nil {
return err return err
} }
newContent = append(newContent, []byte("\n---\n\n")...)
newContent = append(newContent, content...) err = os.WriteFile(newFileName, content, 0666)
if err != nil {
return err
} }
return os.WriteFile(file, newContent, 0644) _, err = os.Create(file)
return err
}
func buildNewFileName(currentFileNameSeparated []string, counter int) string {
if len(currentFileNameSeparated) == 1 {
return fmt.Sprintf("%s-%d", currentFileNameSeparated[0], counter)
}
fileNameWithoutExtension := strings.Join(currentFileNameSeparated[:len(currentFileNameSeparated)-2], ".")
fileExtension := currentFileNameSeparated[len(currentFileNameSeparated)-1]
return fmt.Sprintf("%s-%d.%s", fileNameWithoutExtension, counter, fileExtension)
}
func prependToFile(newChangelogContent, file string) error {
currentContent, err := os.ReadFile(file)
if err != nil {
return err
}
content := make([]byte, 0)
content = append(content, []byte(newChangelogContent)...)
content = append(content, []byte("\n---\n\n")...)
content = append(content, currentContent...)
return os.WriteFile(file, content, 0644)
} }
// Release publish release to provider // Release publish release to provider