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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // Copyright 2016 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package routers
  5. import (
  6. "path"
  7. "strings"
  8. "code.gitea.io/git"
  9. "code.gitea.io/gitea/models"
  10. "code.gitea.io/gitea/modules/cron"
  11. "code.gitea.io/gitea/modules/highlight"
  12. "code.gitea.io/gitea/modules/indexer"
  13. "code.gitea.io/gitea/modules/log"
  14. "code.gitea.io/gitea/modules/mailer"
  15. "code.gitea.io/gitea/modules/markdown"
  16. "code.gitea.io/gitea/modules/setting"
  17. "code.gitea.io/gitea/modules/ssh"
  18. macaron "gopkg.in/macaron.v1"
  19. )
  20. func checkRunMode() {
  21. switch setting.Cfg.Section("").Key("RUN_MODE").String() {
  22. case "prod":
  23. macaron.Env = macaron.PROD
  24. macaron.ColorLog = false
  25. setting.ProdMode = true
  26. default:
  27. git.Debug = true
  28. }
  29. log.Info("Run Mode: %s", strings.Title(macaron.Env))
  30. }
  31. // NewServices init new services
  32. func NewServices() {
  33. setting.NewServices()
  34. mailer.NewContext()
  35. }
  36. // GlobalInit is for global configuration reload-able.
  37. func GlobalInit() {
  38. setting.NewContext()
  39. log.Trace("Custom path: %s", setting.CustomPath)
  40. log.Trace("Log path: %s", setting.LogRootPath)
  41. models.LoadConfigs()
  42. NewServices()
  43. if setting.InstallLock {
  44. highlight.NewContext()
  45. markdown.BuildSanitizer()
  46. if err := models.NewEngine(); err != nil {
  47. log.Fatal(4, "Fail to initialize ORM engine: %v", err)
  48. }
  49. models.HasEngine = true
  50. models.LoadRepoConfig()
  51. models.NewRepoContext()
  52. // Booting long running goroutines.
  53. cron.NewContext()
  54. indexer.NewContext()
  55. models.InitSyncMirrors()
  56. models.InitDeliverHooks()
  57. models.InitTestPullRequests()
  58. log.NewGitLogger(path.Join(setting.LogRootPath, "http.log"))
  59. }
  60. if models.EnableSQLite3 {
  61. log.Info("SQLite3 Supported")
  62. }
  63. if models.EnableTiDB {
  64. log.Info("TiDB Supported")
  65. }
  66. checkRunMode()
  67. if setting.InstallLock && setting.SSH.StartBuiltinServer {
  68. ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort)
  69. log.Info("SSH server started on %s:%v", setting.SSH.ListenHost, setting.SSH.ListenPort)
  70. }
  71. }