mirror of
https://github.com/vbatts/git-validation.git
synced 2024-11-17 22:08:39 +00:00
110 lines
2.9 KiB
Go
110 lines
2.9 KiB
Go
package git
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
// Commits returns a set of commits.
|
|
// If commitrange is a git still range 12345...54321, then it will be isolated set of commits.
|
|
// If commitrange is a single commit, all ancestor commits up through the hash provided.
|
|
func Commits(commitrange string) ([]CommitEntry, error) {
|
|
cmdArgs := []string{"git", "log", `--pretty=format:%H`, commitrange}
|
|
if debug() {
|
|
logrus.Infof("[git] cmd: %q", strings.Join(cmdArgs, " "))
|
|
}
|
|
output, err := exec.Command(cmdArgs[0], cmdArgs[1:]...).Output()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
commitHashes := strings.Split(strings.TrimSpace(string(output)), "\n")
|
|
commits := make([]CommitEntry, len(commitHashes))
|
|
for i, commitHash := range commitHashes {
|
|
c, err := LogCommit(commitHash)
|
|
if err != nil {
|
|
return commits, err
|
|
}
|
|
commits[i] = *c
|
|
}
|
|
return commits, nil
|
|
}
|
|
|
|
// FieldNames are for the formating and rendering of the CommitEntry structs.
|
|
// Keys here are from git log pretty format "format:..."
|
|
var FieldNames = map[string]string{
|
|
"%h": "abbreviated_commit",
|
|
"%p": "abbreviated_parent",
|
|
"%t": "abbreviated_tree",
|
|
"%aD": "author_date",
|
|
"%aE": "author_email",
|
|
"%aN": "author_name",
|
|
"%b": "body",
|
|
"%H": "commit",
|
|
"%N": "commit_notes",
|
|
"%cD": "committer_date",
|
|
"%cE": "committer_email",
|
|
"%cN": "committer_name",
|
|
"%e": "encoding",
|
|
"%P": "parent",
|
|
"%D": "refs",
|
|
"%f": "sanitized_subject_line",
|
|
"%GS": "signer",
|
|
"%GK": "signer_key",
|
|
"%s": "subject",
|
|
"%G?": "verification_flag",
|
|
}
|
|
|
|
// CommitEntry represents a single commit's information from `git`.
|
|
// See also FieldNames
|
|
type CommitEntry map[string]string
|
|
|
|
// LogCommit assembles the full information on a commit from its commit hash
|
|
func LogCommit(commit string) (*CommitEntry, error) {
|
|
buf := bytes.NewBuffer([]byte{})
|
|
c := CommitEntry{}
|
|
for k, v := range FieldNames {
|
|
cmd := exec.Command("git", "log", "-1", `--pretty=format:`+k+``, commit)
|
|
cmd.Stdout = buf
|
|
cmd.Stderr = os.Stderr
|
|
if err := cmd.Run(); err != nil {
|
|
return nil, err
|
|
}
|
|
c[v] = strings.TrimSpace(string(buf.Bytes()))
|
|
}
|
|
|
|
return &c, nil
|
|
}
|
|
|
|
func debug() bool {
|
|
return len(os.Getenv("DEBUG")) > 0
|
|
}
|
|
|
|
// FetchHeadCommit returns the hash of FETCH_HEAD
|
|
func FetchHeadCommit() (string, error) {
|
|
cmdArgs := []string{"git", "rev-parse", "--verify", "FETCH_HEAD"}
|
|
if debug() {
|
|
logrus.Infof("[git] cmd: %q", strings.Join(cmdArgs, " "))
|
|
}
|
|
output, err := exec.Command(cmdArgs[0], cmdArgs[1:]...).Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.TrimSpace(string(output)), nil
|
|
}
|
|
|
|
// HeadCommit returns the hash of HEAD
|
|
func HeadCommit() (string, error) {
|
|
cmdArgs := []string{"git", "rev-parse", "--verify", "HEAD"}
|
|
if debug() {
|
|
logrus.Infof("[git] cmd: %q", strings.Join(cmdArgs, " "))
|
|
}
|
|
output, err := exec.Command(cmdArgs[0], cmdArgs[1:]...).Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.TrimSpace(string(output)), nil
|
|
}
|