aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2014-06-28 15:00:38 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2014-06-28 15:00:38 +0800
commit4ce2fa520a1d9c36febd19562015107b74a4bc1d (patch)
tree774c8103577b4fe07809d1b38c7b5b38ca4b9acb
parenta357cda9575b482004329e81f0add6e4c32ab02a (diff)
parent54e17c7cca15aafc11bf394752ed0f1feb6f6979 (diff)
downloadgitea-4ce2fa520a1d9c36febd19562015107b74a4bc1d.tar.gz
gitea-4ce2fa520a1d9c36febd19562015107b74a4bc1d.zip
Merge branch 'master' into dev
-rw-r--r--models/update.go32
-rw-r--r--routers/repo/http.go60
2 files changed, 78 insertions, 14 deletions
diff --git a/models/update.go b/models/update.go
index 3328f2213f..6702ad3b46 100644
--- a/models/update.go
+++ b/models/update.go
@@ -17,6 +17,8 @@ import (
)
func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName string, userId int64) error {
+ //fmt.Println(refName, oldCommitId, newCommitId)
+ //fmt.Println(userName, repoUserName, repoName)
isNew := strings.HasPrefix(oldCommitId, "0000000")
if isNew &&
strings.HasPrefix(newCommitId, "0000000") {
@@ -73,11 +75,41 @@ func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName
return fmt.Errorf("runUpdate.GetRepositoryByName userId: %v", err)
}
+ // if tags push
+ if strings.HasPrefix(refName, "refs/tags/") {
+ tagName := git.RefEndName(refName)
+ tag, err := repo.GetTag(tagName)
+ if err != nil {
+ log.GitLogger.Fatal("runUpdate.GetTag: %v", err)
+ }
+
+ var actEmail string
+ if tag.Tagger != nil {
+ actEmail = tag.Tagger.Email
+ } else {
+ cmt, err := tag.Commit()
+ if err != nil {
+ log.GitLogger.Fatal("runUpdate.GetTag Commit: %v", err)
+ }
+ actEmail = cmt.Committer.Email
+ }
+
+ commit := &base.PushCommits{}
+
+ if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
+ repos.Id, repoUserName, repoName, refName, commit); err != nil {
+ log.GitLogger.Fatal("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
+ }
+ return err
+ }
+
+ // if commits push
commits := make([]*base.PushCommit, 0)
var maxCommits = 3
var actEmail string
for e := l.Front(); e != nil; e = e.Next() {
commit := e.Value.(*git.Commit)
+
if actEmail == "" {
actEmail = commit.Committer.Email
}
diff --git a/routers/repo/http.go b/routers/repo/http.go
index 7b89e9b05a..d22c0f8781 100644
--- a/routers/repo/http.go
+++ b/routers/repo/http.go
@@ -7,6 +7,7 @@ package repo
import (
"bytes"
"fmt"
+ "io"
"io/ioutil"
"net/http"
"os"
@@ -130,24 +131,49 @@ func Http(ctx *middleware.Context, params martini.Params) {
}
}
- config := Config{setting.RepoRootPath, "git", true, true, func(rpc string, input []byte) {
+ var f func(rpc string, input []byte)
+
+ f = func(rpc string, input []byte) {
if rpc == "receive-pack" {
- firstLine := bytes.IndexRune(input, '\000')
- if firstLine > -1 {
- fields := strings.Fields(string(input[:firstLine]))
- if len(fields) == 3 {
- oldCommitId := fields[0][4:]
- newCommitId := fields[1]
- refName := fields[2]
-
- if err = models.Update(refName, oldCommitId, newCommitId, authUsername, username, reponame, authUser.Id); err != nil {
- log.GitLogger.Error(err.Error())
+ var lastLine int64 = 0
+
+ for {
+ head := input[lastLine : lastLine+2]
+ if head[0] == '0' && head[1] == '0' {
+ size, err := strconv.ParseInt(string(input[lastLine+2:lastLine+4]), 16, 32)
+ if err != nil {
+ log.Error("%v", err)
return
}
+
+ if size == 0 {
+ //fmt.Println(string(input[lastLine:]))
+ break
+ }
+
+ line := input[lastLine : lastLine+size]
+ idx := bytes.IndexRune(line, '\000')
+ if idx > -1 {
+ line = line[:idx]
+ }
+ fields := strings.Fields(string(line))
+ if len(fields) >= 3 {
+ oldCommitId := fields[0][4:]
+ newCommitId := fields[1]
+ refName := fields[2]
+
+ models.Update(refName, oldCommitId, newCommitId, authUsername, username, reponame, authUser.Id)
+ }
+ lastLine = lastLine + size
+ } else {
+ //fmt.Println("ddddddddddd")
+ break
}
}
}
- }}
+ }
+
+ config := Config{setting.RepoRootPath, "git", true, true, f}
handler := HttpBackend(&config)
handler(ctx.ResponseWriter, ctx.Req)
@@ -240,8 +266,14 @@ func serviceRpc(rpc string, hr handler) {
w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-result", rpc))
w.WriteHeader(http.StatusOK)
- input, _ := ioutil.ReadAll(r.Body)
- br := bytes.NewReader(input)
+ var input []byte
+ var br io.Reader
+ if hr.Config.OnSucceed != nil {
+ input, _ = ioutil.ReadAll(r.Body)
+ br = bytes.NewReader(input)
+ } else {
+ br = r.Body
+ }
args := []string{rpc, "--stateless-rpc", dir}
cmd := exec.Command(hr.Config.GitBinPath, args...)