2014-02-19 13:04:31 -05:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2016-12-21 07:13:17 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2014-02-19 13:04:31 -05:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-02-19 04:50:53 -05:00
|
|
|
|
2016-11-11 08:56:35 -05:00
|
|
|
// Gitea (git with a cup of tea) is a painless self-hosted Git Service.
|
|
|
|
package main // import "code.gitea.io/gitea"
|
2014-02-12 12:49:46 -05:00
|
|
|
|
|
|
|
import (
|
2019-04-29 14:08:21 -04:00
|
|
|
"fmt"
|
2014-02-19 04:50:53 -05:00
|
|
|
"os"
|
2019-01-24 10:22:51 -05:00
|
|
|
"runtime"
|
2017-02-27 19:40:02 -05:00
|
|
|
"strings"
|
2016-11-30 18:56:15 -05:00
|
|
|
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/cmd"
|
2017-01-04 08:16:03 -05:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-11-01 09:41:07 -04:00
|
|
|
|
2017-09-21 01:20:14 -04:00
|
|
|
// register supported doc types
|
2018-07-20 17:08:15 -04:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/csv"
|
2017-09-21 01:20:14 -04:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/markdown"
|
|
|
|
_ "code.gitea.io/gitea/modules/markup/orgmode"
|
|
|
|
|
2016-11-04 08:44:23 -04:00
|
|
|
"github.com/urfave/cli"
|
2014-02-12 12:49:46 -05:00
|
|
|
)
|
|
|
|
|
2019-04-02 12:10:11 -04:00
|
|
|
var (
|
|
|
|
// Version holds the current Gitea version
|
2020-01-25 08:21:22 -05:00
|
|
|
Version = "development"
|
2019-04-02 12:10:11 -04:00
|
|
|
// Tags holds the build tags used
|
|
|
|
Tags = ""
|
|
|
|
// MakeVersion holds the current Make version if built with make
|
|
|
|
MakeVersion = ""
|
2019-04-29 14:08:21 -04:00
|
|
|
|
|
|
|
originalAppHelpTemplate = ""
|
|
|
|
originalCommandHelpTemplate = ""
|
|
|
|
originalSubcommandHelpTemplate = ""
|
2019-04-02 12:10:11 -04:00
|
|
|
)
|
2017-02-27 19:40:02 -05:00
|
|
|
|
2014-02-12 14:54:09 -05:00
|
|
|
func init() {
|
2016-11-04 07:32:04 -04:00
|
|
|
setting.AppVer = Version
|
2019-06-12 15:41:28 -04:00
|
|
|
setting.AppBuiltWith = formatBuiltWith()
|
2019-04-29 14:08:21 -04:00
|
|
|
|
|
|
|
// Grab the original help templates
|
|
|
|
originalAppHelpTemplate = cli.AppHelpTemplate
|
|
|
|
originalCommandHelpTemplate = cli.CommandHelpTemplate
|
|
|
|
originalSubcommandHelpTemplate = cli.SubcommandHelpTemplate
|
2014-02-12 14:54:09 -05:00
|
|
|
}
|
|
|
|
|
2014-02-12 12:49:46 -05:00
|
|
|
func main() {
|
2014-02-19 04:50:53 -05:00
|
|
|
app := cli.NewApp()
|
2016-11-11 08:56:35 -05:00
|
|
|
app.Name = "Gitea"
|
|
|
|
app.Usage = "A painless self-hosted Git service"
|
2018-01-09 23:58:08 -05:00
|
|
|
app.Description = `By default, gitea will start serving using the webserver with no
|
|
|
|
arguments - which can alternatively be run by running the subcommand web.`
|
2019-06-12 15:41:28 -04:00
|
|
|
app.Version = Version + formatBuiltWith()
|
2014-02-19 04:50:53 -05:00
|
|
|
app.Commands = []cli.Command{
|
2014-05-01 21:21:46 -04:00
|
|
|
cmd.CmdWeb,
|
|
|
|
cmd.CmdServ,
|
2017-02-22 22:40:44 -05:00
|
|
|
cmd.CmdHook,
|
2014-06-10 19:11:53 -04:00
|
|
|
cmd.CmdDump,
|
2014-09-22 17:30:58 -04:00
|
|
|
cmd.CmdCert,
|
2016-08-13 19:11:52 -04:00
|
|
|
cmd.CmdAdmin,
|
2018-02-18 13:14:37 -05:00
|
|
|
cmd.CmdGenerate,
|
2018-10-30 23:14:42 -04:00
|
|
|
cmd.CmdMigrate,
|
2018-11-01 09:41:07 -04:00
|
|
|
cmd.CmdKeys,
|
2019-06-08 09:53:45 -04:00
|
|
|
cmd.CmdConvert,
|
2020-01-11 09:24:57 -05:00
|
|
|
cmd.CmdDoctor,
|
2020-01-28 20:01:06 -05:00
|
|
|
cmd.CmdManager,
|
2020-02-01 21:17:44 -05:00
|
|
|
cmd.Cmdembedded,
|
2014-02-19 04:50:53 -05:00
|
|
|
}
|
2019-04-29 14:08:21 -04:00
|
|
|
// Now adjust these commands to add our global configuration options
|
|
|
|
|
|
|
|
// First calculate the default paths and set the AppHelpTemplates in this context
|
2019-05-14 11:20:35 -04:00
|
|
|
setting.SetCustomPathAndConf("", "", "")
|
2019-04-29 14:08:21 -04:00
|
|
|
setAppHelpTemplates()
|
|
|
|
|
|
|
|
// default configuration flags
|
|
|
|
defaultFlags := []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "custom-path, C",
|
|
|
|
Value: setting.CustomPath,
|
|
|
|
Usage: "Custom path file path",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config, c",
|
|
|
|
Value: setting.CustomConf,
|
|
|
|
Usage: "Custom configuration file path",
|
|
|
|
},
|
|
|
|
cli.VersionFlag,
|
2019-05-14 11:20:35 -04:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "work-path, w",
|
|
|
|
Value: setting.AppWorkPath,
|
|
|
|
Usage: "Set the gitea working path",
|
|
|
|
},
|
2019-04-29 14:08:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the default to be equivalent to cmdWeb and add the default flags
|
2018-10-31 20:36:41 -04:00
|
|
|
app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
|
2019-04-29 14:08:21 -04:00
|
|
|
app.Flags = append(app.Flags, defaultFlags...)
|
2018-01-09 23:58:08 -05:00
|
|
|
app.Action = cmd.CmdWeb.Action
|
2019-04-29 14:08:21 -04:00
|
|
|
|
|
|
|
// Add functions to set these paths and these flags to the commands
|
|
|
|
app.Before = establishCustomPath
|
|
|
|
for i := range app.Commands {
|
|
|
|
setFlagsAndBeforeOnSubcommands(&app.Commands[i], defaultFlags, establishCustomPath)
|
|
|
|
}
|
|
|
|
|
2016-11-30 18:56:15 -05:00
|
|
|
err := app.Run(os.Args)
|
|
|
|
if err != nil {
|
2019-04-02 03:48:31 -04:00
|
|
|
log.Fatal("Failed to run app with %s: %v", os.Args, err)
|
2016-11-30 18:56:15 -05:00
|
|
|
}
|
2014-02-12 12:49:46 -05:00
|
|
|
}
|
2017-02-27 19:40:02 -05:00
|
|
|
|
2019-04-29 14:08:21 -04:00
|
|
|
func setFlagsAndBeforeOnSubcommands(command *cli.Command, defaultFlags []cli.Flag, before cli.BeforeFunc) {
|
|
|
|
command.Flags = append(command.Flags, defaultFlags...)
|
|
|
|
command.Before = establishCustomPath
|
|
|
|
for i := range command.Subcommands {
|
|
|
|
setFlagsAndBeforeOnSubcommands(&command.Subcommands[i], defaultFlags, before)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func establishCustomPath(ctx *cli.Context) error {
|
|
|
|
var providedCustom string
|
|
|
|
var providedConf string
|
2019-05-14 11:20:35 -04:00
|
|
|
var providedWorkPath string
|
2019-04-29 14:08:21 -04:00
|
|
|
|
|
|
|
currentCtx := ctx
|
|
|
|
for {
|
2019-05-14 11:20:35 -04:00
|
|
|
if len(providedCustom) != 0 && len(providedConf) != 0 && len(providedWorkPath) != 0 {
|
2019-04-29 14:08:21 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
if currentCtx == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if currentCtx.IsSet("custom-path") && len(providedCustom) == 0 {
|
|
|
|
providedCustom = currentCtx.String("custom-path")
|
|
|
|
}
|
|
|
|
if currentCtx.IsSet("config") && len(providedConf) == 0 {
|
|
|
|
providedConf = currentCtx.String("config")
|
|
|
|
}
|
2019-05-14 11:20:35 -04:00
|
|
|
if currentCtx.IsSet("work-path") && len(providedWorkPath) == 0 {
|
|
|
|
providedWorkPath = currentCtx.String("work-path")
|
|
|
|
}
|
2019-04-29 14:08:21 -04:00
|
|
|
currentCtx = currentCtx.Parent()
|
|
|
|
|
|
|
|
}
|
2019-05-14 11:20:35 -04:00
|
|
|
setting.SetCustomPathAndConf(providedCustom, providedConf, providedWorkPath)
|
2019-04-29 14:08:21 -04:00
|
|
|
|
|
|
|
setAppHelpTemplates()
|
|
|
|
|
|
|
|
if ctx.IsSet("version") {
|
|
|
|
cli.ShowVersion(ctx)
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func setAppHelpTemplates() {
|
|
|
|
cli.AppHelpTemplate = adjustHelpTemplate(originalAppHelpTemplate)
|
|
|
|
cli.CommandHelpTemplate = adjustHelpTemplate(originalCommandHelpTemplate)
|
|
|
|
cli.SubcommandHelpTemplate = adjustHelpTemplate(originalSubcommandHelpTemplate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func adjustHelpTemplate(originalTemplate string) string {
|
|
|
|
overrided := ""
|
|
|
|
if _, ok := os.LookupEnv("GITEA_CUSTOM"); ok {
|
|
|
|
overrided = "(GITEA_CUSTOM)"
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(`%s
|
|
|
|
DEFAULT CONFIGURATION:
|
|
|
|
CustomPath: %s %s
|
|
|
|
CustomConf: %s
|
|
|
|
AppPath: %s
|
|
|
|
AppWorkPath: %s
|
|
|
|
|
|
|
|
`, originalTemplate, setting.CustomPath, overrided, setting.CustomConf, setting.AppPath, setting.AppWorkPath)
|
|
|
|
}
|
|
|
|
|
2019-06-12 15:41:28 -04:00
|
|
|
func formatBuiltWith() string {
|
2019-04-02 12:10:11 -04:00
|
|
|
var version = runtime.Version()
|
|
|
|
if len(MakeVersion) > 0 {
|
|
|
|
version = MakeVersion + ", " + runtime.Version()
|
|
|
|
}
|
2017-02-27 19:40:02 -05:00
|
|
|
if len(Tags) == 0 {
|
2019-04-02 12:10:11 -04:00
|
|
|
return " built with " + version
|
2017-02-27 19:40:02 -05:00
|
|
|
}
|
|
|
|
|
2019-04-02 12:10:11 -04:00
|
|
|
return " built with " + version + " : " + strings.Replace(Tags, " ", ", ", -1)
|
2017-02-27 19:40:02 -05:00
|
|
|
}
|