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