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.

init.go 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/models/migrations"
  11. "code.gitea.io/gitea/modules/cron"
  12. "code.gitea.io/gitea/modules/highlight"
  13. "code.gitea.io/gitea/modules/log"
  14. "code.gitea.io/gitea/modules/mailer"
  15. "code.gitea.io/gitea/modules/markup"
  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. markup.Init()
  46. if err := models.NewEngine(migrations.Migrate); err != nil {
  47. log.Fatal(4, "Failed to initialize ORM engine: %v", err)
  48. }
  49. models.HasEngine = true
  50. models.InitOAuth2()
  51. models.LoadRepoConfig()
  52. models.NewRepoContext()
  53. // Booting long running goroutines.
  54. cron.NewContext()
  55. models.InitIssueIndexer()
  56. models.InitSyncMirrors()
  57. models.InitDeliverHooks()
  58. models.InitTestPullRequests()
  59. log.NewGitLogger(path.Join(setting.LogRootPath, "http.log"))
  60. }
  61. if models.EnableSQLite3 {
  62. log.Info("SQLite3 Supported")
  63. }
  64. if models.EnableTiDB {
  65. log.Info("TiDB Supported")
  66. }
  67. checkRunMode()
  68. if setting.InstallLock && setting.SSH.StartBuiltinServer {
  69. ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort)
  70. log.Info("SSH server started on %s:%v", setting.SSH.ListenHost, setting.SSH.ListenPort)
  71. }
  72. }