gitroast/models/update.go

173 lines
4.4 KiB
Go
Raw Normal View History

2014-04-27 07:05:13 +00:00
// 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 02:27:13 +00:00
package models
import (
"container/list"
2014-06-23 20:22:34 +00:00
"fmt"
2014-04-11 02:27:13 +00:00
"os/exec"
"strings"
git "github.com/gogits/git-module"
2014-06-20 05:14:54 +00:00
"github.com/gogits/gogs/modules/log"
2014-04-11 02:27:13 +00:00
)
2014-06-28 15:56:41 +00:00
type UpdateTask struct {
ID int64 `xorm:"pk autoincr"`
UUID string `xorm:"index"`
2014-06-28 15:56:41 +00:00
RefName string
OldCommitID string
NewCommitID string
2014-06-28 15:56:41 +00:00
}
func AddUpdateTask(task *UpdateTask) error {
_, err := x.Insert(task)
return err
}
2015-11-05 02:57:10 +00:00
// GetUpdateTaskByUUID returns update task by given UUID.
func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) {
2014-06-28 15:56:41 +00:00
task := &UpdateTask{
UUID: uuid,
2014-06-28 15:56:41 +00:00
}
has, err := x.Get(task)
2014-06-28 15:56:41 +00:00
if err != nil {
return nil, err
} else if !has {
2015-11-05 02:57:10 +00:00
return nil, ErrUpdateTaskNotExist{uuid}
2014-06-28 15:56:41 +00:00
}
return task, nil
2014-06-28 15:56:41 +00:00
}
func DeleteUpdateTaskByUUID(uuid string) error {
_, err := x.Delete(&UpdateTask{UUID: uuid})
2014-06-28 15:56:41 +00:00
return err
}
func ListToPushCommits(l *list.List) *PushCommits {
commits := make([]*PushCommit, 0)
var actEmail string
for e := l.Front(); e != nil; e = e.Next() {
commit := e.Value.(*git.Commit)
if actEmail == "" {
actEmail = commit.Committer.Email
}
commits = append(commits,
2016-08-10 01:28:06 +00:00
&PushCommit{
Sha1: commit.ID.String(),
Message: commit.Message(),
AuthorEmail: commit.Author.Email,
AuthorName: commit.Author.Name,
CommitterEmail: commit.Committer.Email,
CommitterName: commit.Committer.Name,
Timestamp: commit.Author.When,
})
}
return &PushCommits{l.Len(), commits, "", nil}
}
type PushUpdateOptions struct {
RefName string
OldCommitID string
NewCommitID string
PusherID int64
PusherName string
RepoUserName string
RepoName string
}
// PushUpdate must be called for any push actions in order to
// generates necessary push action history feeds.
func PushUpdate(opts PushUpdateOptions) (err error) {
isNewRef := strings.HasPrefix(opts.OldCommitID, "0000000")
isDelRef := strings.HasPrefix(opts.NewCommitID, "0000000")
if isNewRef && isDelRef {
return fmt.Errorf("Old and new revisions both start with 000000")
2014-04-11 02:27:13 +00:00
}
repoPath := RepoPath(opts.RepoUserName, opts.RepoName)
2014-04-11 02:27:13 +00:00
gitUpdate := exec.Command("git", "update-server-info")
gitUpdate.Dir = repoPath
if err = gitUpdate.Run(); err != nil {
return fmt.Errorf("Fail to call 'git update-server-info': %v", err)
}
2014-04-11 02:27:13 +00:00
if isDelRef {
log.GitLogger.Info("Reference '%s' has been deleted from '%s/%s' by %d",
opts.RefName, opts.RepoUserName, opts.RepoName, opts.PusherName)
2014-06-23 20:22:34 +00:00
return nil
2014-05-03 03:12:15 +00:00
}
gitRepo, err := git.OpenRepository(repoPath)
2014-04-11 02:27:13 +00:00
if err != nil {
return fmt.Errorf("OpenRepository: %v", err)
2014-04-11 02:27:13 +00:00
}
repoUser, err := GetUserByName(opts.RepoUserName)
2014-05-03 05:37:49 +00:00
if err != nil {
return fmt.Errorf("GetUserByName: %v", err)
2014-05-03 05:37:49 +00:00
}
2016-07-23 17:08:22 +00:00
repo, err := GetRepositoryByName(repoUser.ID, opts.RepoName)
2014-04-11 02:27:13 +00:00
if err != nil {
return fmt.Errorf("GetRepositoryByName: %v", err)
2014-04-11 02:27:13 +00:00
}
2014-07-26 04:24:27 +00:00
// Push tags.
if strings.HasPrefix(opts.RefName, "refs/tags/") {
tag, err := gitRepo.GetTag(git.RefEndName(opts.RefName))
2014-06-28 06:55:33 +00:00
if err != nil {
return fmt.Errorf("gitRepo.GetTag: %v", err)
2014-06-28 06:55:33 +00:00
}
// When tagger isn't available, fall back to get committer email.
2014-06-28 06:55:33 +00:00
var actEmail string
if tag.Tagger != nil {
actEmail = tag.Tagger.Email
} else {
cmt, err := tag.Commit()
if err != nil {
return fmt.Errorf("tag.Commit: %v", err)
2014-06-28 06:55:33 +00:00
}
actEmail = cmt.Committer.Email
}
2015-11-13 22:10:25 +00:00
commit := &PushCommits{}
2016-07-23 17:08:22 +00:00
if err = CommitRepoAction(opts.PusherID, repoUser.ID, opts.PusherName, actEmail,
repo.ID, opts.RepoUserName, opts.RepoName, opts.RefName, commit, opts.OldCommitID, opts.NewCommitID); err != nil {
return fmt.Errorf("CommitRepoAction (tag): %v", err)
2014-06-28 06:55:33 +00:00
}
2014-06-28 07:00:03 +00:00
return err
2014-06-28 06:55:33 +00:00
}
newCommit, err := gitRepo.GetCommit(opts.NewCommitID)
2014-06-28 15:56:41 +00:00
if err != nil {
return fmt.Errorf("gitRepo.GetCommit: %v", err)
2014-06-28 15:56:41 +00:00
}
2014-10-11 01:40:51 +00:00
// Push new branch.
2014-06-28 15:56:41 +00:00
var l *list.List
if isNewRef {
l, err = newCommit.CommitsBeforeLimit(10)
2014-06-28 15:56:41 +00:00
if err != nil {
return fmt.Errorf("newCommit.CommitsBeforeLimit: %v", err)
2014-06-28 15:56:41 +00:00
}
} else {
l, err = newCommit.CommitsBeforeUntil(opts.OldCommitID)
2014-06-28 15:56:41 +00:00
if err != nil {
return fmt.Errorf("newCommit.CommitsBeforeUntil: %v", err)
2014-06-28 15:56:41 +00:00
}
}
2016-07-23 17:08:22 +00:00
if err = CommitRepoAction(opts.PusherID, repoUser.ID, opts.PusherName, repoUser.Email,
repo.ID, opts.RepoUserName, opts.RepoName, opts.RefName, ListToPushCommits(l),
opts.OldCommitID, opts.NewCommitID); err != nil {
return fmt.Errorf("CommitRepoAction (branch): %v", err)
2014-04-11 02:27:13 +00:00
}
2014-06-23 20:22:34 +00:00
return nil
2014-04-11 02:27:13 +00:00
}