]> source.dussan.org Git - gitea.git/commitdiff
models/repo.go: add update hook when migrate for #789
authorUnknwon <joe2010xtmf@163.com>
Mon, 9 Feb 2015 17:42:53 +0000 (12:42 -0500)
committerUnknwon <joe2010xtmf@163.com>
Mon, 9 Feb 2015 17:42:53 +0000 (12:42 -0500)
models/repo.go

index 64c152dd8de83f4e45c95b1d0119219cee87f27d..15aadbba66e09cbd080e7939cbcf3443f6c57c5e 100644 (file)
@@ -357,13 +357,16 @@ func MigrateRepository(u *User, name, desc string, private, mirror bool, url str
                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,
                fmt.Sprintf("MigrateRepository: %s", repoPath),
                "git", "clone", "--mirror", "--bare", url, repoPath)
        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)
 }
 
@@ -402,7 +405,7 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
        return nil
 }
 
-func createHookUpdate(repoPath string) error {
+func createUpdateHook(repoPath string) error {
        return ioutil.WriteFile(path.Join(repoPath, "hooks/update"),
                []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
        }
 
-       // hook/post-update
-       if err := createHookUpdate(repoPath); err != nil {
+       if err := createUpdateHook(repoPath); err != nil {
                return err
        }
 
@@ -1175,7 +1177,7 @@ func RewriteRepositoryUpdateHook() error {
                        if err := repo.GetOwner(); err != nil {
                                return err
                        }
-                       return createHookUpdate(RepoPath(repo.Owner.Name, repo.Name))
+                       return createUpdateHook(RepoPath(repo.Owner.Name, repo.Name))
                })
 }