Files
Gogs/internal/db/update.go

143 lines
3.7 KiB
Go
Raw Normal View History

2014-04-27 01:05:13 -06: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.
package db
2014-04-11 10:27:13 +08:00
import (
"container/list"
2014-06-23 16:22:34 -04:00
"fmt"
2014-04-11 10:27:13 +08:00
"os/exec"
"strings"
2018-05-27 08:53:48 +08:00
git "github.com/gogs/git-module"
2014-04-11 10:27:13 +08:00
)
2016-08-12 02:29:29 -07:00
// CommitToPushCommit transforms a git.Commit to PushCommit type.
func CommitToPushCommit(commit *git.Commit) *PushCommit {
return &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.Committer.When,
2016-08-12 02:29:29 -07:00
}
}
func ListToPushCommits(l *list.List) *PushCommits {
if l == nil {
return &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
}
2016-08-12 02:29:29 -07:00
commits = append(commits, CommitToPushCommit(commit))
}
return &PushCommits{l.Len(), commits, "", nil}
}
type PushUpdateOptions struct {
OldCommitID string
NewCommitID string
RefFullName 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) {
2016-08-16 23:06:38 -07:00
isNewRef := opts.OldCommitID == git.EMPTY_SHA
isDelRef := opts.NewCommitID == git.EMPTY_SHA
if isNewRef && isDelRef {
2016-08-16 23:06:38 -07:00
return fmt.Errorf("Old and new revisions are both %s", git.EMPTY_SHA)
2014-04-11 10:27:13 +08:00
}
repoPath := RepoPath(opts.RepoUserName, opts.RepoName)
2014-04-11 10:27:13 +08:00
gitUpdate := exec.Command("git", "update-server-info")
gitUpdate.Dir = repoPath
if err = gitUpdate.Run(); err != nil {
return fmt.Errorf("run 'git update-server-info': %v", err)
}
2014-04-11 10:27:13 +08:00
gitRepo, err := git.OpenRepository(repoPath)
2014-04-11 10:27:13 +08:00
if err != nil {
return fmt.Errorf("OpenRepository: %v", err)
2014-04-11 10:27:13 +08:00
}
2016-08-16 23:06:38 -07:00
owner, err := GetUserByName(opts.RepoUserName)
2014-05-03 01:37:49 -04:00
if err != nil {
return fmt.Errorf("GetUserByName: %v", err)
2014-05-03 01:37:49 -04:00
}
2016-08-16 23:06:38 -07:00
repo, err := GetRepositoryByName(owner.ID, opts.RepoName)
2014-04-11 10:27:13 +08:00
if err != nil {
return fmt.Errorf("GetRepositoryByName: %v", err)
2014-04-11 10:27:13 +08:00
}
2017-03-12 01:59:48 -05:00
if err = repo.UpdateSize(); err != nil {
return fmt.Errorf("UpdateSize: %v", err)
}
// Push tags
2016-08-16 23:06:38 -07:00
if strings.HasPrefix(opts.RefFullName, git.TAG_PREFIX) {
if err := CommitRepoAction(CommitRepoActionOptions{
PusherName: opts.PusherName,
RepoOwnerID: owner.ID,
RepoName: repo.Name,
RefFullName: opts.RefFullName,
OldCommitID: opts.OldCommitID,
NewCommitID: opts.NewCommitID,
Commits: &PushCommits{},
}); err != nil {
return fmt.Errorf("CommitRepoAction.(tag): %v", err)
2014-06-28 14:55:33 +08:00
}
2016-08-16 23:06:38 -07:00
return nil
2014-06-28 14:55:33 +08:00
}
2014-06-28 23:56:41 +08:00
var l *list.List
// Skip read parent commits when delete branch
if !isDelRef {
2017-03-12 01:59:48 -05:00
// Push new branch
newCommit, err := gitRepo.GetCommit(opts.NewCommitID)
2014-06-28 23:56:41 +08:00
if err != nil {
return fmt.Errorf("GetCommit [commit_id: %s]: %v", opts.NewCommitID, err)
2014-06-28 23:56:41 +08:00
}
if isNewRef {
l, err = newCommit.CommitsBeforeLimit(10)
if err != nil {
return fmt.Errorf("CommitsBeforeLimit [commit_id: %s]: %v", newCommit.ID, err)
}
} else {
l, err = newCommit.CommitsBeforeUntil(opts.OldCommitID)
if err != nil {
return fmt.Errorf("CommitsBeforeUntil [commit_id: %s]: %v", opts.OldCommitID, err)
}
2014-06-28 23:56:41 +08:00
}
}
2016-08-16 23:06:38 -07:00
if err := CommitRepoAction(CommitRepoActionOptions{
PusherName: opts.PusherName,
RepoOwnerID: owner.ID,
RepoName: repo.Name,
RefFullName: opts.RefFullName,
OldCommitID: opts.OldCommitID,
NewCommitID: opts.NewCommitID,
Commits: ListToPushCommits(l),
}); err != nil {
return fmt.Errorf("CommitRepoAction.(branch): %v", err)
2014-04-11 10:27:13 +08:00
}
2014-06-23 16:22:34 -04:00
return nil
2014-04-11 10:27:13 +08:00
}