models/repo.go: add update hook when migrate for #789
This commit is contained in:
parent
7d3932b9cd
commit
bad533a219
|
@ -357,13 +357,16 @@ func MigrateRepository(u *User, name, desc string, private, mirror bool, url str
|
||||||
os.RemoveAll(repoPath)
|
os.RemoveAll(repoPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// this command could for both migrate and mirror
|
// FIXME: this command could for both migrate and mirror
|
||||||
_, stderr, err := process.ExecTimeout(10*time.Minute,
|
_, stderr, err := process.ExecTimeout(10*time.Minute,
|
||||||
fmt.Sprintf("MigrateRepository: %s", repoPath),
|
fmt.Sprintf("MigrateRepository: %s", repoPath),
|
||||||
"git", "clone", "--mirror", "--bare", url, repoPath)
|
"git", "clone", "--mirror", "--bare", url, repoPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return repo, errors.New("git clone: " + stderr)
|
return repo, fmt.Errorf("git clone --mirror --bare: %v", stderr)
|
||||||
|
} else if err = createUpdateHook(repoPath); err != nil {
|
||||||
|
return repo, fmt.Errorf("create update hook: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return repo, UpdateRepository(repo)
|
return repo, UpdateRepository(repo)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -402,7 +405,7 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func createHookUpdate(repoPath string) error {
|
func createUpdateHook(repoPath string) error {
|
||||||
return ioutil.WriteFile(path.Join(repoPath, "hooks/update"),
|
return ioutil.WriteFile(path.Join(repoPath, "hooks/update"),
|
||||||
[]byte(fmt.Sprintf(_TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"", setting.CustomConf)), 0777)
|
[]byte(fmt.Sprintf(_TPL_UPDATE_HOOK, setting.ScriptType, "\""+appPath+"\"", setting.CustomConf)), 0777)
|
||||||
}
|
}
|
||||||
|
@ -416,8 +419,7 @@ func initRepository(f string, u *User, repo *Repository, initReadme bool, repoLa
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// hook/post-update
|
if err := createUpdateHook(repoPath); err != nil {
|
||||||
if err := createHookUpdate(repoPath); err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1175,7 +1177,7 @@ func RewriteRepositoryUpdateHook() error {
|
||||||
if err := repo.GetOwner(); err != nil {
|
if err := repo.GetOwner(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return createHookUpdate(RepoPath(repo.Owner.Name, repo.Name))
|
return createUpdateHook(RepoPath(repo.Owner.Name, repo.Name))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue