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