You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.go 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2016 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. // Gitea (git with a cup of tea) is a painless self-hosted Git Service.
  6. package main // import "code.gitea.io/gitea"
  7. import (
  8. "fmt"
  9. "os"
  10. "runtime"
  11. "strings"
  12. "code.gitea.io/gitea/cmd"
  13. "code.gitea.io/gitea/modules/log"
  14. "code.gitea.io/gitea/modules/setting"
  15. // register supported doc types
  16. _ "code.gitea.io/gitea/modules/markup/csv"
  17. _ "code.gitea.io/gitea/modules/markup/markdown"
  18. _ "code.gitea.io/gitea/modules/markup/orgmode"
  19. "github.com/urfave/cli"
  20. )
  21. var (
  22. // Version holds the current Gitea version
  23. Version = "1.9.0-dev"
  24. // Tags holds the build tags used
  25. Tags = ""
  26. // MakeVersion holds the current Make version if built with make
  27. MakeVersion = ""
  28. originalAppHelpTemplate = ""
  29. originalCommandHelpTemplate = ""
  30. originalSubcommandHelpTemplate = ""
  31. )
  32. func init() {
  33. setting.AppVer = Version
  34. setting.AppBuiltWith = formatBuiltWith(Tags)
  35. // Grab the original help templates
  36. originalAppHelpTemplate = cli.AppHelpTemplate
  37. originalCommandHelpTemplate = cli.CommandHelpTemplate
  38. originalSubcommandHelpTemplate = cli.SubcommandHelpTemplate
  39. }
  40. func main() {
  41. app := cli.NewApp()
  42. app.Name = "Gitea"
  43. app.Usage = "A painless self-hosted Git service"
  44. app.Description = `By default, gitea will start serving using the webserver with no
  45. arguments - which can alternatively be run by running the subcommand web.`
  46. app.Version = Version + formatBuiltWith(Tags)
  47. app.Commands = []cli.Command{
  48. cmd.CmdWeb,
  49. cmd.CmdServ,
  50. cmd.CmdHook,
  51. cmd.CmdDump,
  52. cmd.CmdCert,
  53. cmd.CmdAdmin,
  54. cmd.CmdGenerate,
  55. cmd.CmdMigrate,
  56. cmd.CmdKeys,
  57. }
  58. // Now adjust these commands to add our global configuration options
  59. // First calculate the default paths and set the AppHelpTemplates in this context
  60. setting.SetCustomPathAndConf("", "")
  61. setAppHelpTemplates()
  62. // default configuration flags
  63. defaultFlags := []cli.Flag{
  64. cli.StringFlag{
  65. Name: "custom-path, C",
  66. Value: setting.CustomPath,
  67. Usage: "Custom path file path",
  68. },
  69. cli.StringFlag{
  70. Name: "config, c",
  71. Value: setting.CustomConf,
  72. Usage: "Custom configuration file path",
  73. },
  74. cli.VersionFlag,
  75. }
  76. // Set the default to be equivalent to cmdWeb and add the default flags
  77. app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
  78. app.Flags = append(app.Flags, defaultFlags...)
  79. app.Action = cmd.CmdWeb.Action
  80. // Add functions to set these paths and these flags to the commands
  81. app.Before = establishCustomPath
  82. for i := range app.Commands {
  83. setFlagsAndBeforeOnSubcommands(&app.Commands[i], defaultFlags, establishCustomPath)
  84. }
  85. err := app.Run(os.Args)
  86. if err != nil {
  87. log.Fatal("Failed to run app with %s: %v", os.Args, err)
  88. }
  89. }
  90. func setFlagsAndBeforeOnSubcommands(command *cli.Command, defaultFlags []cli.Flag, before cli.BeforeFunc) {
  91. command.Flags = append(command.Flags, defaultFlags...)
  92. command.Before = establishCustomPath
  93. for i := range command.Subcommands {
  94. setFlagsAndBeforeOnSubcommands(&command.Subcommands[i], defaultFlags, before)
  95. }
  96. }
  97. func establishCustomPath(ctx *cli.Context) error {
  98. var providedCustom string
  99. var providedConf string
  100. currentCtx := ctx
  101. for {
  102. if len(providedCustom) != 0 && len(providedConf) != 0 {
  103. break
  104. }
  105. if currentCtx == nil {
  106. break
  107. }
  108. if currentCtx.IsSet("custom-path") && len(providedCustom) == 0 {
  109. providedCustom = currentCtx.String("custom-path")
  110. }
  111. if currentCtx.IsSet("config") && len(providedConf) == 0 {
  112. providedConf = currentCtx.String("config")
  113. }
  114. currentCtx = currentCtx.Parent()
  115. }
  116. setting.SetCustomPathAndConf(providedCustom, providedConf)
  117. setAppHelpTemplates()
  118. if ctx.IsSet("version") {
  119. cli.ShowVersion(ctx)
  120. os.Exit(0)
  121. }
  122. return nil
  123. }
  124. func setAppHelpTemplates() {
  125. cli.AppHelpTemplate = adjustHelpTemplate(originalAppHelpTemplate)
  126. cli.CommandHelpTemplate = adjustHelpTemplate(originalCommandHelpTemplate)
  127. cli.SubcommandHelpTemplate = adjustHelpTemplate(originalSubcommandHelpTemplate)
  128. }
  129. func adjustHelpTemplate(originalTemplate string) string {
  130. overrided := ""
  131. if _, ok := os.LookupEnv("GITEA_CUSTOM"); ok {
  132. overrided = "(GITEA_CUSTOM)"
  133. }
  134. return fmt.Sprintf(`%s
  135. DEFAULT CONFIGURATION:
  136. CustomPath: %s %s
  137. CustomConf: %s
  138. AppPath: %s
  139. AppWorkPath: %s
  140. `, originalTemplate, setting.CustomPath, overrided, setting.CustomConf, setting.AppPath, setting.AppWorkPath)
  141. }
  142. func formatBuiltWith(makeTags string) string {
  143. var version = runtime.Version()
  144. if len(MakeVersion) > 0 {
  145. version = MakeVersion + ", " + runtime.Version()
  146. }
  147. if len(Tags) == 0 {
  148. return " built with " + version
  149. }
  150. return " built with " + version + " : " + strings.Replace(Tags, " ", ", ", -1)
  151. }