gitea/update.go

161 lines
3.6 KiB
Go
Raw Normal View History

2014-03-16 17:53:41 +11: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-03-16 15:18:34 +11:00
package main
2014-03-26 03:00:36 +11:00
import (
2014-03-27 00:22:08 +11:00
"container/list"
"os"
"os/exec"
2014-04-01 00:26:15 +11:00
"path"
2014-03-27 00:22:08 +11:00
"strconv"
"strings"
"github.com/codegangsta/cli"
2014-04-07 03:00:20 +10:00
qlog "github.com/qiniu/log"
2014-03-27 00:22:08 +11:00
"github.com/gogits/git"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2014-03-26 03:00:36 +11:00
)
2014-03-16 15:18:34 +11:00
var CmdUpdate = cli.Command{
Name: "update",
Usage: "This command just should be called by ssh shell",
Description: `
gogs serv provide access auth for repositories`,
Action: runUpdate,
Flags: []cli.Flag{},
}
2014-04-01 00:26:15 +11:00
func newUpdateLogger(execDir string) {
logPath := execDir + "/log/update.log"
os.MkdirAll(path.Dir(logPath), os.ModePerm)
2014-04-07 03:41:58 +10:00
f, err := os.OpenFile(logPath, os.O_WRONLY|os.O_APPEND|os.O_CREATE, os.ModePerm)
2014-04-07 03:00:20 +10:00
if err != nil {
qlog.Fatal(err)
}
qlog.SetOutput(f)
qlog.Info("Start logging update...")
2014-04-01 00:26:15 +11:00
}
2014-03-19 00:58:58 +11:00
// for command: ./gogs update
2014-03-26 03:00:36 +11:00
func runUpdate(c *cli.Context) {
2014-04-01 00:26:15 +11:00
execDir, _ := base.ExecDir()
2014-04-07 03:54:48 +10:00
newUpdateLogger(execDir)
2014-04-01 00:26:15 +11:00
2014-03-26 16:38:16 +11:00
base.NewConfigContext()
models.LoadModelsConfig()
2014-03-31 07:01:50 +11:00
if models.UseSQLite3 {
os.Chdir(execDir)
}
2014-03-28 22:26:22 +11:00
models.SetEngine()
2014-03-23 19:31:13 +11:00
2014-03-26 16:21:09 +11:00
args := c.Args()
if len(args) != 3 {
2014-04-07 03:00:20 +10:00
qlog.Fatal("received less 3 parameters")
2014-03-26 03:05:09 +11:00
}
2014-03-26 16:21:09 +11:00
refName := args[0]
2014-03-28 13:48:36 +11:00
if refName == "" {
2014-04-07 03:00:20 +10:00
qlog.Fatal("refName is empty, shouldn't use")
2014-03-28 13:48:36 +11:00
}
2014-03-26 16:21:09 +11:00
oldCommitId := args[1]
newCommitId := args[2]
2014-03-28 13:48:36 +11:00
isNew := strings.HasPrefix(oldCommitId, "0000000")
if isNew &&
strings.HasPrefix(newCommitId, "0000000") {
2014-04-07 03:00:20 +10:00
qlog.Fatal("old rev and new rev both 000000")
2014-03-28 13:48:36 +11:00
}
2014-03-26 03:16:13 +11:00
userName := os.Getenv("userName")
2014-03-26 16:21:09 +11:00
userId := os.Getenv("userId")
2014-03-26 03:16:13 +11:00
//repoId := os.Getenv("repoId")
2014-03-26 16:21:09 +11:00
repoName := os.Getenv("repoName")
2014-03-16 15:18:34 +11:00
2014-03-26 16:21:09 +11:00
f := models.RepoPath(userName, repoName)
gitUpdate := exec.Command("git", "update-server-info")
gitUpdate.Dir = f
gitUpdate.Run()
2014-03-16 15:18:34 +11:00
repo, err := git.OpenRepository(f)
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Open repoId: %v", err)
2014-03-16 15:18:34 +11:00
}
2014-03-26 16:21:09 +11:00
newOid, err := git.NewOidFromString(newCommitId)
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Ref repoId: %v", err)
2014-03-26 16:21:09 +11:00
}
newCommit, err := repo.LookupCommit(newOid)
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Ref repoId: %v", err)
2014-03-26 16:21:09 +11:00
}
var l *list.List
// if a new branch
2014-03-28 13:48:36 +11:00
if isNew {
l, err = repo.CommitsBefore(newCommit.Id())
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("Find CommitsBefore erro:", err)
2014-03-28 13:48:36 +11:00
}
2014-03-26 16:21:09 +11:00
} else {
2014-03-28 13:48:36 +11:00
oldOid, err := git.NewOidFromString(oldCommitId)
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Ref repoId: %v", err)
2014-03-28 13:48:36 +11:00
}
oldCommit, err := repo.LookupCommit(oldOid)
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Ref repoId: %v", err)
2014-03-28 13:48:36 +11:00
}
l = repo.CommitsBetween(newCommit, oldCommit)
2014-03-26 16:21:09 +11:00
}
2014-03-16 15:18:34 +11:00
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Commit repoId: %v", err)
2014-03-16 15:18:34 +11:00
}
2014-03-17 02:02:59 +11:00
2014-03-16 17:53:41 +11:00
sUserId, err := strconv.Atoi(userId)
2014-03-16 15:18:34 +11:00
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.Parse userId: %v", err)
2014-03-16 17:53:41 +11:00
}
2014-03-26 16:21:09 +11:00
repos, err := models.GetRepositoryByName(int64(sUserId), repoName)
2014-03-16 17:53:41 +11:00
if err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.GetRepositoryByName userId: %v", err)
2014-03-16 17:53:41 +11:00
}
2014-03-26 16:21:09 +11:00
2014-03-29 22:29:52 +11:00
commits := make([]*base.PushCommit, 0)
2014-03-26 16:21:09 +11:00
var maxCommits = 3
2014-03-29 22:59:02 +11:00
var actEmail string
2014-03-26 16:21:09 +11:00
for e := l.Front(); e != nil; e = e.Next() {
commit := e.Value.(*git.Commit)
2014-03-29 22:59:02 +11:00
if actEmail == "" {
actEmail = commit.Committer.Email
}
2014-03-29 22:29:52 +11:00
commits = append(commits,
&base.PushCommit{commit.Id().String(),
commit.Message(),
commit.Author.Email,
commit.Author.Name})
2014-03-26 16:21:09 +11:00
if len(commits) >= maxCommits {
break
}
}
//commits = append(commits, []string{lastCommit.Id().String(), lastCommit.Message()})
2014-03-29 22:59:02 +11:00
if err = models.CommitRepoAction(int64(sUserId), userName, actEmail,
2014-03-26 16:45:55 +11:00
repos.Id, repoName, git.BranchName(refName), &base.PushCommits{l.Len(), commits}); err != nil {
2014-04-07 03:00:20 +10:00
qlog.Fatalf("runUpdate.models.CommitRepoAction: %v", err)
2014-03-26 16:21:09 +11:00
}
2014-03-16 15:18:34 +11:00
}