|
-
-
-
-
-
- package git
-
- import (
- "fmt"
- "os/exec"
- "strings"
- "time"
-
- "code.gitea.io/gitea/modules/process"
-
- "github.com/mcuadros/go-version"
- )
-
-
- func Version() string {
- return "0.4.2"
- }
-
- var (
-
-
- Debug = false
-
- Prefix = "[git-module] "
-
- GitVersionRequired = "1.7.2"
-
-
-
- GitExecutable = "git"
-
- gitVersion string
- )
-
- func log(format string, args ...interface{}) {
- if !Debug {
- return
- }
-
- fmt.Print(Prefix)
- if len(args) == 0 {
- fmt.Println(format)
- } else {
- fmt.Printf(format+"\n", args...)
- }
- }
-
-
- func BinVersion() (string, error) {
- if len(gitVersion) > 0 {
- return gitVersion, nil
- }
-
- stdout, err := NewCommand("version").Run()
- if err != nil {
- return "", err
- }
-
- fields := strings.Fields(stdout)
- if len(fields) < 3 {
- return "", fmt.Errorf("not enough output: %s", stdout)
- }
-
-
- i := strings.Index(fields[2], "windows")
- if i >= 1 {
- gitVersion = fields[2][:i-1]
- return gitVersion, nil
- }
-
- gitVersion = fields[2]
- return gitVersion, nil
- }
-
-
- func SetExecutablePath(path string) error {
-
- if path != "" {
- GitExecutable = path
- }
- absPath, err := exec.LookPath(GitExecutable)
- if err != nil {
- return fmt.Errorf("Git not found: %v", err)
- }
- GitExecutable = absPath
-
- gitVersion, err := BinVersion()
- if err != nil {
- return fmt.Errorf("Git version missing: %v", err)
- }
- if version.Compare(gitVersion, GitVersionRequired, "<") {
- return fmt.Errorf("Git version not supported. Requires version > %v", GitVersionRequired)
- }
-
- return nil
- }
-
-
- func Init() error {
-
- for configKey, defaultValue := range map[string]string{"user.name": "Gitea", "user.email": "gitea@fake.local"} {
- if stdout, stderr, err := process.GetManager().Exec("git.Init(get setting)", GitExecutable, "config", "--get", configKey); err != nil || strings.TrimSpace(stdout) == "" {
-
- if _, ok := err.(*exec.ExitError); ok || strings.TrimSpace(stdout) == "" {
- if _, stderr, gerr := process.GetManager().Exec("git.Init(set "+configKey+")", "git", "config", "--global", configKey, defaultValue); gerr != nil {
- return fmt.Errorf("Failed to set git %s(%s): %s", configKey, gerr, stderr)
- }
- } else {
- return fmt.Errorf("Failed to get git %s(%s): %s", configKey, err, stderr)
- }
- }
- }
-
-
- if _, stderr, err := process.GetManager().Exec("git.Init(git config --global core.quotepath false)",
- GitExecutable, "config", "--global", "core.quotepath", "false"); err != nil {
- return fmt.Errorf("Failed to execute 'git config --global core.quotepath false': %s", stderr)
- }
-
- if version.Compare(gitVersion, "2.18", ">=") {
- if _, stderr, err := process.GetManager().Exec("git.Init(git config --global core.commitGraph true)",
- GitExecutable, "config", "--global", "core.commitGraph", "true"); err != nil {
- return fmt.Errorf("Failed to execute 'git config --global core.commitGraph true': %s", stderr)
- }
-
- if _, stderr, err := process.GetManager().Exec("git.Init(git config --global gc.writeCommitGraph true)",
- GitExecutable, "config", "--global", "gc.writeCommitGraph", "true"); err != nil {
- return fmt.Errorf("Failed to execute 'git config --global gc.writeCommitGraph true': %s", stderr)
- }
- }
- return nil
- }
-
-
- func Fsck(repoPath string, timeout time.Duration, args ...string) error {
-
- if timeout <= 0 {
- timeout = -1
- }
- _, err := NewCommand("fsck").AddArguments(args...).RunInDirTimeout(timeout, repoPath)
- return err
- }
|