summaryrefslogtreecommitdiffstats
path: root/models/update.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/update.go')
-rw-r--r--models/update.go32
1 files changed, 32 insertions, 0 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
}