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 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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. cli.StringFlag{
  76. Name: "work-path, w",
  77. Value: setting.AppWorkPath,
  78. Usage: "Set the gitea working path",
  79. },
  80. }
  81. // Set the default to be equivalent to cmdWeb and add the default flags
  82. app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
  83. app.Flags = append(app.Flags, defaultFlags...)
  84. app.Action = cmd.CmdWeb.Action
  85. // Add functions to set these paths and these flags to the commands
  86. app.Before = establishCustomPath
  87. for i := range app.Commands {
  88. setFlagsAndBeforeOnSubcommands(&app.Commands[i], defaultFlags, establishCustomPath)
  89. }
  90. err := app.Run(os.Args)
  91. if err != nil {
  92. log.Fatal("Failed to run app with %s: %v", os.Args, err)
  93. }
  94. }
  95. func setFlagsAndBeforeOnSubcommands(command *cli.Command, defaultFlags []cli.Flag, before cli.BeforeFunc) {
  96. command.Flags = append(command.Flags, defaultFlags...)
  97. command.Before = establishCustomPath
  98. for i := range command.Subcommands {
  99. setFlagsAndBeforeOnSubcommands(&command.Subcommands[i], defaultFlags, before)
  100. }
  101. }
  102. func establishCustomPath(ctx *cli.Context) error {
  103. var providedCustom string
  104. var providedConf string
  105. var providedWorkPath string
  106. currentCtx := ctx
  107. for {
  108. if len(providedCustom) != 0 && len(providedConf) != 0 && len(providedWorkPath) != 0 {
  109. break
  110. }
  111. if currentCtx == nil {
  112. break
  113. }
  114. if currentCtx.IsSet("custom-path") && len(providedCustom) == 0 {
  115. providedCustom = currentCtx.String("custom-path")
  116. }
  117. if currentCtx.IsSet("config") && len(providedConf) == 0 {
  118. providedConf = currentCtx.String("config")
  119. }
  120. if currentCtx.IsSet("work-path") && len(providedWorkPath) == 0 {
  121. providedWorkPath = currentCtx.String("work-path")
  122. }
  123. currentCtx = currentCtx.Parent()
  124. }
  125. setting.SetCustomPathAndConf(providedCustom, providedConf, providedWorkPath)
  126. setAppHelpTemplates()
  127. if ctx.IsSet("version") {
  128. cli.ShowVersion(ctx)
  129. os.Exit(0)
  130. }
  131. return nil
  132. }
  133. func setAppHelpTemplates() {
  134. cli.AppHelpTemplate = adjustHelpTemplate(originalAppHelpTemplate)
  135. cli.CommandHelpTemplate = adjustHelpTemplate(originalCommandHelpTemplate)
  136. cli.SubcommandHelpTemplate = adjustHelpTemplate(originalSubcommandHelpTemplate)
  137. }
  138. func adjustHelpTemplate(originalTemplate string) string {
  139. overrided := ""
  140. if _, ok := os.LookupEnv("GITEA_CUSTOM"); ok {
  141. overrided = "(GITEA_CUSTOM)"
  142. }
  143. return fmt.Sprintf(`%s
  144. DEFAULT CONFIGURATION:
  145. CustomPath: %s %s
  146. CustomConf: %s
  147. AppPath: %s
  148. AppWorkPath: %s
  149. `, originalTemplate, setting.CustomPath, overrided, setting.CustomConf, setting.AppPath, setting.AppWorkPath)
  150. }
  151. func formatBuiltWith(makeTags string) string {
  152. var version = runtime.Version()
  153. if len(MakeVersion) > 0 {
  154. version = MakeVersion + ", " + runtime.Version()
  155. }
  156. if len(Tags) == 0 {
  157. return " built with " + version
  158. }
  159. return " built with " + version + " : " + strings.Replace(Tags, " ", ", ", -1)
  160. }