2014-04-10 20:20:58 +02: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 03:21:46 +02:00
|
|
|
package cmd
|
2014-04-10 20:20:58 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/codegangsta/cli"
|
2014-07-26 06:24:27 +02:00
|
|
|
|
2014-04-10 20:20:58 +02:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-06-20 07:14:54 +02:00
|
|
|
"github.com/gogits/gogs/modules/log"
|
2015-02-05 11:12:37 +01:00
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-04-10 20:20:58 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var CmdUpdate = cli.Command{
|
2014-05-05 06:55:17 +02:00
|
|
|
Name: "update",
|
|
|
|
Usage: "This command should only be called by SSH shell",
|
|
|
|
Description: `Update get pushed info and insert into database`,
|
|
|
|
Action: runUpdate,
|
2015-02-05 11:12:37 +01:00
|
|
|
Flags: []cli.Flag{
|
2015-02-09 03:26:14 +01:00
|
|
|
cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""},
|
2015-02-05 11:12:37 +01:00
|
|
|
},
|
2014-04-10 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func runUpdate(c *cli.Context) {
|
2015-02-05 11:12:37 +01:00
|
|
|
if c.IsSet("config") {
|
|
|
|
setting.CustomConf = c.String("config")
|
|
|
|
}
|
2014-04-11 04:27:13 +02:00
|
|
|
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
|
|
|
|
if cmd == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-06-20 07:14:54 +02:00
|
|
|
setup("update.log")
|
2014-04-10 20:20:58 +02:00
|
|
|
|
|
|
|
args := c.Args()
|
|
|
|
if len(args) != 3 {
|
2014-07-26 06:24:27 +02:00
|
|
|
log.GitLogger.Fatal(2, "received less 3 parameters")
|
2014-05-22 03:37:13 +02:00
|
|
|
} else if args[0] == "" {
|
2014-07-26 06:24:27 +02:00
|
|
|
log.GitLogger.Fatal(2, "refName is empty, shouldn't use")
|
2014-04-10 20:20:58 +02:00
|
|
|
}
|
|
|
|
|
2014-06-28 17:56:41 +02:00
|
|
|
uuid := os.Getenv("uuid")
|
|
|
|
|
|
|
|
task := models.UpdateTask{
|
|
|
|
Uuid: uuid,
|
|
|
|
RefName: args[0],
|
|
|
|
OldCommitId: args[1],
|
|
|
|
NewCommitId: args[2],
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.AddUpdateTask(&task); err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
log.GitLogger.Fatal(2, err.Error())
|
2014-06-23 22:22:34 +02:00
|
|
|
}
|
2014-04-10 20:20:58 +02:00
|
|
|
}
|