Refactor models.NewRepoContext to extract git related codes to modules/git (#6941)
* refactor models.NewRepoContext to extract git related codes to modules/git * fix imports * refactor
This commit is contained in:
parent
95d3d42c5f
commit
710245e81e
6 changed files with 34 additions and 49 deletions
|
@ -11,6 +11,8 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"code.gitea.io/gitea/modules/process"
|
||||
|
||||
"github.com/mcuadros/go-version"
|
||||
)
|
||||
|
||||
|
@ -31,6 +33,8 @@ var (
|
|||
// GitExecutable is the command name of git
|
||||
// Could be updated to an absolute path while initialization
|
||||
GitExecutable = "git"
|
||||
|
||||
gitVersion string
|
||||
)
|
||||
|
||||
func log(format string, args ...interface{}) {
|
||||
|
@ -46,8 +50,6 @@ func log(format string, args ...interface{}) {
|
|||
}
|
||||
}
|
||||
|
||||
var gitVersion string
|
||||
|
||||
// BinVersion returns current Git version from shell.
|
||||
func BinVersion() (string, error) {
|
||||
if len(gitVersion) > 0 {
|
||||
|
@ -89,6 +91,26 @@ func init() {
|
|||
if version.Compare(gitVersion, GitVersionRequired, "<") {
|
||||
panic(fmt.Sprintf("Git version not supported. Requires version > %v", GitVersionRequired))
|
||||
}
|
||||
|
||||
// Git requires setting user.name and user.email in order to commit changes.
|
||||
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) == "" {
|
||||
// ExitError indicates this config is not set
|
||||
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 {
|
||||
panic(fmt.Sprintf("Failed to set git %s(%s): %s", configKey, gerr, stderr))
|
||||
}
|
||||
} else {
|
||||
panic(fmt.Sprintf("Failed to get git %s(%s): %s", configKey, err, stderr))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Set git some configurations.
|
||||
if _, stderr, err := process.GetManager().Exec("git.Init(git config --global core.quotepath false)",
|
||||
GitExecutable, "config", "--global", "core.quotepath", "false"); err != nil {
|
||||
panic(fmt.Sprintf("Failed to execute 'git config --global core.quotepath false': %s", stderr))
|
||||
}
|
||||
}
|
||||
|
||||
// Fsck verifies the connectivity and validity of the objects in the database
|
||||
|
|
|
@ -16,7 +16,6 @@ import (
|
|||
var (
|
||||
// Git settings
|
||||
Git = struct {
|
||||
Version string `ini:"-"`
|
||||
DisableDiffHighlight bool
|
||||
MaxGitDiffLines int
|
||||
MaxGitDiffLineCharacters int
|
||||
|
@ -65,6 +64,8 @@ func newGit() {
|
|||
log.Fatal("Error retrieving git version: %v", err)
|
||||
}
|
||||
|
||||
log.Info("Git Version: %s", binVersion)
|
||||
|
||||
if version.Compare(binVersion, "2.9", ">=") {
|
||||
// Explicitly disable credential helper, otherwise Git credentials might leak
|
||||
git.GlobalCommandArgs = append(git.GlobalCommandArgs, "-c", "credential.helper=")
|
||||
|
|
|
@ -27,6 +27,7 @@ import (
|
|||
_ "code.gitea.io/gitea/modules/minwinsvc" // import minwinsvc for windows services
|
||||
"code.gitea.io/gitea/modules/user"
|
||||
|
||||
"github.com/Unknwon/cae/zip"
|
||||
"github.com/Unknwon/com"
|
||||
_ "github.com/go-macaron/cache/memcache" // memcache plugin for cache
|
||||
_ "github.com/go-macaron/cache/redis"
|
||||
|
@ -931,6 +932,8 @@ func NewContext() {
|
|||
sec = Cfg.Section("U2F")
|
||||
U2F.TrustedFacets, _ = shellquote.Split(sec.Key("TRUSTED_FACETS").MustString(strings.TrimRight(AppURL, "/")))
|
||||
U2F.AppID = sec.Key("APP_ID").MustString(strings.TrimRight(AppURL, "/"))
|
||||
|
||||
zip.Verbose = false
|
||||
}
|
||||
|
||||
func loadInternalToken(sec *ini.Section) string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue