forgejo/cmd/update.go

57 lines
1.3 KiB
Go
Raw Normal View History

2014-04-11 03:20:58 +09: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-05-02 10:21:46 +09:00
package cmd
2014-04-11 03:20:58 +09:00
import (
"os"
"github.com/codegangsta/cli"
2014-07-26 13:24:27 +09:00
2014-04-11 03:20:58 +09:00
"github.com/gogits/gogs/models"
2014-06-20 14:14:54 +09:00
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/setting"
2014-04-11 03:20:58 +09:00
)
var CmdUpdate = cli.Command{
2014-05-05 13:55:17 +09:00
Name: "update",
2016-02-22 11:55:59 +09:00
Usage: "This command should only be called by Git hook",
2014-05-05 13:55:17 +09:00
Description: `Update get pushed info and insert into database`,
Action: runUpdate,
Flags: []cli.Flag{
2015-11-16 07:07:44 +09:00
stringFlag("config, c", "custom/conf/app.ini", "Custom configuration file path"),
},
2014-04-11 03:20:58 +09:00
}
func runUpdate(c *cli.Context) {
if c.IsSet("config") {
setting.CustomConf = c.String("config")
}
2016-02-16 13:11:22 +09:00
2016-02-18 05:17:52 +09:00
setup("update.log")
2016-02-16 13:11:22 +09:00
if len(os.Getenv("SSH_ORIGINAL_COMMAND")) == 0 {
log.GitLogger.Trace("SSH_ORIGINAL_COMMAND is empty")
2014-04-11 11:27:13 +09:00
return
}
2014-04-11 03:20:58 +09:00
args := c.Args()
if len(args) != 3 {
2016-02-16 13:11:22 +09:00
log.GitLogger.Fatal(2, "Arguments received are not equal to three")
} else if len(args[0]) == 0 {
log.GitLogger.Fatal(2, "First argument 'refName' is empty, shouldn't use")
2014-04-11 03:20:58 +09:00
}
2014-06-29 00:56:41 +09:00
task := models.UpdateTask{
2015-11-05 11:57:10 +09:00
UUID: os.Getenv("uuid"),
2014-06-29 00:56:41 +09:00
RefName: args[0],
OldCommitID: args[1],
NewCommitID: args[2],
2014-06-29 00:56:41 +09:00
}
if err := models.AddUpdateTask(&task); err != nil {
log.GitLogger.Fatal(2, "AddUpdateTask: %v", err)
2014-06-24 05:22:34 +09:00
}
2014-04-11 03:20:58 +09:00
}