| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | 
							- // 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 models
 
- import (
 
- 	"container/list"
 
- 	"fmt"
 
- 	"os/exec"
 
- 	"strings"
 
- 	"github.com/gogits/gogs/modules/base"
 
- 	"github.com/gogits/gogs/modules/git"
 
- 	"github.com/gogits/gogs/modules/log"
 
- )
 
- type UpdateTask struct {
 
- 	ID          int64  `xorm:"pk autoincr"`
 
- 	UUID        string `xorm:"index"`
 
- 	RefName     string
 
- 	OldCommitID string
 
- 	NewCommitID string
 
- }
 
- func AddUpdateTask(task *UpdateTask) error {
 
- 	_, err := x.Insert(task)
 
- 	return err
 
- }
 
- func GetUpdateTaskByUUID(uuid string) (*UpdateTask, error) {
 
- 	task := &UpdateTask{
 
- 		UUID: uuid,
 
- 	}
 
- 	has, err := x.Get(task)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	} else if !has {
 
- 		return nil, fmt.Errorf("task does not exist: %s", uuid)
 
- 	}
 
- 	return task, nil
 
- }
 
- func DeleteUpdateTaskByUUID(uuid string) error {
 
- 	_, err := x.Delete(&UpdateTask{UUID: uuid})
 
- 	return err
 
- }
 
- func Update(refName, oldCommitId, newCommitId, userName, repoUserName, repoName string, userId int64) error {
 
- 	isNew := strings.HasPrefix(oldCommitId, "0000000")
 
- 	if isNew &&
 
- 		strings.HasPrefix(newCommitId, "0000000") {
 
- 		return fmt.Errorf("old rev and new rev both 000000")
 
- 	}
 
- 	f := RepoPath(repoUserName, repoName)
 
- 	gitUpdate := exec.Command("git", "update-server-info")
 
- 	gitUpdate.Dir = f
 
- 	gitUpdate.Run()
 
- 	isDel := strings.HasPrefix(newCommitId, "0000000")
 
- 	if isDel {
 
- 		log.GitLogger.Info("del rev", refName, "from", userName+"/"+repoName+".git", "by", userId)
 
- 		return nil
 
- 	}
 
- 	repo, err := git.OpenRepository(f)
 
- 	if err != nil {
 
- 		return fmt.Errorf("runUpdate.Open repoId: %v", err)
 
- 	}
 
- 	ru, err := GetUserByName(repoUserName)
 
- 	if err != nil {
 
- 		return fmt.Errorf("runUpdate.GetUserByName: %v", err)
 
- 	}
 
- 	repos, err := GetRepositoryByName(ru.Id, repoName)
 
- 	if err != nil {
 
- 		return fmt.Errorf("runUpdate.GetRepositoryByName userId: %v", err)
 
- 	}
 
- 	// Push tags.
 
- 	if strings.HasPrefix(refName, "refs/tags/") {
 
- 		tagName := git.RefEndName(refName)
 
- 		tag, err := repo.GetTag(tagName)
 
- 		if err != nil {
 
- 			log.GitLogger.Fatal(4, "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(4, "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, oldCommitId, newCommitId); err != nil {
 
- 			log.GitLogger.Fatal(4, "CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
 
- 		}
 
- 		return err
 
- 	}
 
- 	newCommit, err := repo.GetCommit(newCommitId)
 
- 	if err != nil {
 
- 		return fmt.Errorf("runUpdate GetCommit of newCommitId: %v", err)
 
- 	}
 
- 	// Push new branch.
 
- 	var l *list.List
 
- 	if isNew {
 
- 		l, err = newCommit.CommitsBefore()
 
- 		if err != nil {
 
- 			return fmt.Errorf("CommitsBefore: %v", err)
 
- 		}
 
- 	} else {
 
- 		l, err = newCommit.CommitsBeforeUntil(oldCommitId)
 
- 		if err != nil {
 
- 			return fmt.Errorf("CommitsBeforeUntil: %v", err)
 
- 		}
 
- 	}
 
- 	if err != nil {
 
- 		return fmt.Errorf("runUpdate.Commit repoId: %v", err)
 
- 	}
 
- 	// Push commits.
 
- 	commits := make([]*base.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,
 
- 			&base.PushCommit{commit.Id.String(),
 
- 				commit.Message(),
 
- 				commit.Author.Email,
 
- 				commit.Author.Name,
 
- 			})
 
- 	}
 
- 	if err = CommitRepoAction(userId, ru.Id, userName, actEmail,
 
- 		repos.ID, repoUserName, repoName, refName, &base.PushCommits{l.Len(), commits, ""}, oldCommitId, newCommitId); err != nil {
 
- 		return fmt.Errorf("runUpdate.models.CommitRepoAction: %s/%s:%v", repoUserName, repoName, err)
 
- 	}
 
- 	return nil
 
- }
 
 
  |