bench-forgejo/models/update.go

163 lines
3.9 KiB
Go
Raw Normal View History

2014-04-27 12:35:13 +05:30
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-04-11 07:57:13 +05:30
package models
import (
"container/list"
2014-06-24 01:52:34 +05:30
"fmt"
2014-04-11 07:57:13 +05:30
"os/exec"
"strings"
"github.com/gogits/gogs/modules/base"
2014-07-26 09:54:27 +05:30
"github.com/gogits/gogs/modules/git"
2014-06-20 10:44:54 +05:30
"github.com/gogits/gogs/modules/log"
2014-04-11 07:57:13 +05:30
)
2014-06-28 21:26:41 +05:30
type UpdateTask struct {
Id int64
Uuid string `xorm:"index"`
RefName string
OldCommitId string
NewCommitId string
}
2014-09-22 17:55:39 +05:30
const (
MAX_COMMITS int = 5
)
2014-06-28 21:26:41 +05:30
func AddUpdateTask(task *UpdateTask) error {
_, err := x.Insert(task)
return err
}
func GetUpdateTasksByUuid(uuid string) ([]*UpdateTask, error) {
task := &UpdateTask{
Uuid: uuid,
}
tasks := make([]*UpdateTask, 0)
err := x.Find(&tasks, task)
if err != nil {
return nil, err
}
return tasks, nil
}
func DelUpdateTasksByUuid(uuid string) error {
_, err := x.Delete(&UpdateTask{Uuid: uuid})
return err
}
2014-06-24 01:52:34 +05:30
func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName string, userId int64) error {
2014-04-11 07:57:13 +05:30
isNew := strings.HasPrefix(oldCommitId, "0000000")
if isNew &&
strings.HasPrefix(newCommitId, "0000000") {
2014-06-24 01:52:34 +05:30
return fmt.Errorf("old rev and new rev both 000000")
2014-04-11 07:57:13 +05:30
}
2014-05-03 11:07:49 +05:30
f := RepoPath(repoUserName, repoName)
2014-04-11 07:57:13 +05:30
gitUpdate := exec.Command("git", "update-server-info")
gitUpdate.Dir = f
gitUpdate.Run()
2014-05-03 08:42:15 +05:30
isDel := strings.HasPrefix(newCommitId, "0000000")
if isDel {
2014-06-20 10:44:54 +05:30
log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userId)
2014-06-24 01:52:34 +05:30
return nil
2014-05-03 08:42:15 +05:30
}
2014-04-11 07:57:13 +05:30
repo, err := git.OpenRepository(f)
if err != nil {
2014-06-24 01:52:34 +05:30
return fmt.Errorf("runUpdate.Open repoId: %v", err)
2014-04-11 07:57:13 +05:30
}
2014-05-03 11:07:49 +05:30
ru, err := GetUserByName(repoUserName)
if err != nil {
2014-06-24 01:52:34 +05:30
return fmt.Errorf("runUpdate.GetUserByName: %v", err)
2014-05-03 11:07:49 +05:30
}
repos, err := GetRepositoryByName(ru.Id, repoName)
2014-04-11 07:57:13 +05:30
if err != nil {
2014-06-24 01:52:34 +05:30
return fmt.Errorf("runUpdate.GetRepositoryByName userId: %v", err)
2014-04-11 07:57:13 +05:30
}
2014-07-26 09:54:27 +05:30
// Push tags.
2014-06-28 12:25:33 +05:30
if strings.HasPrefix(refName, "refs/tags/") {
tagName := git.RefEndName(refName)
tag, err := repo.GetTag(tagName)
if err != nil {
2014-07-26 09:54:27 +05:30
log.GitLogger.Fatal(4, "runUpdate.GetTag: %v", err)
2014-06-28 12:25:33 +05:30
}
var actEmail string
if tag.Tagger != nil {
actEmail = tag.Tagger.Email
} else {
cmt, err := tag.Commit()
if err != nil {
2014-07-26 09:54:27 +05:30
log.GitLogger.Fatal(4, "runUpdate.GetTag Commit: %v", err)
2014-06-28 12:25:33 +05:30
}
actEmail = cmt.Committer.Email
}
commit := &base.PushCommits{}
if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
2014-08-26 17:50:18 +05:30
repos.Id, repoUserName, repoName, refName, commit, oldCommitId, newCommitId); err != nil {
2014-07-26 09:54:27 +05:30
log.GitLogger.Fatal(4, "runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
2014-06-28 12:25:33 +05:30
}
2014-06-28 12:30:03 +05:30
return err
2014-06-28 12:25:33 +05:30
}
2014-06-28 21:26:41 +05:30
newCommit, err := repo.GetCommit(newCommitId)
if err != nil {
return fmt.Errorf("runUpdate GetCommit of newCommitId: %v", err)
}
var l *list.List
// if a new branch
if isNew {
l, err = newCommit.CommitsBefore()
if err != nil {
return fmt.Errorf("Find CommitsBefore erro: %v", err)
}
} else {
l, err = newCommit.CommitsBeforeUntil(oldCommitId)
if err != nil {
return fmt.Errorf("Find CommitsBeforeUntil erro: %v", err)
}
}
if err != nil {
return fmt.Errorf("runUpdate.Commit repoId: %v", err)
}
// if commits push
2014-04-11 07:57:13 +05:30
commits := make([]*base.PushCommit, 0)
var actEmail string
for e := l.Front(); e != nil; e = e.Next() {
commit := e.Value.(*git.Commit)
2014-06-28 12:25:33 +05:30
2014-04-11 07:57:13 +05:30
if actEmail == "" {
actEmail = commit.Committer.Email
}
commits = append(commits,
2014-04-13 07:05:36 +05:30
&base.PushCommit{commit.Id.String(),
2014-04-11 07:57:13 +05:30
commit.Message(),
commit.Author.Email,
commit.Author.Name})
2014-09-22 17:55:39 +05:30
if len(commits) >= MAX_COMMITS {
2014-04-11 07:57:13 +05:30
break
}
}
//commits = append(commits, []string{lastCommit.Id().String(), lastCommit.Message()})
2014-05-03 11:07:49 +05:30
if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
2014-08-26 17:50:18 +05:30
repos.Id, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits}, oldCommitId, newCommitId); err != nil {
2014-06-24 01:52:34 +05:30
return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
2014-04-11 07:57:13 +05:30
}
2014-06-24 01:52:34 +05:30
return nil
2014-04-11 07:57:13 +05:30
}