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.

255 lines
7.4 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. // Copyright 2014 The Gogs 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. "errors"
  7. "os"
  8. "os/exec"
  9. "path"
  10. "path/filepath"
  11. "strings"
  12. "github.com/Unknwon/com"
  13. "github.com/Unknwon/macaron"
  14. "github.com/go-xorm/xorm"
  15. "gopkg.in/ini.v1"
  16. "github.com/gogits/gogs/models"
  17. "github.com/gogits/gogs/modules/auth"
  18. "github.com/gogits/gogs/modules/base"
  19. "github.com/gogits/gogs/modules/cron"
  20. "github.com/gogits/gogs/modules/log"
  21. "github.com/gogits/gogs/modules/mailer"
  22. "github.com/gogits/gogs/modules/middleware"
  23. "github.com/gogits/gogs/modules/setting"
  24. "github.com/gogits/gogs/modules/social"
  25. )
  26. const (
  27. INSTALL base.TplName = "install"
  28. )
  29. func checkRunMode() {
  30. switch setting.Cfg.Section("").Key("RUN_MODE").String() {
  31. case "prod":
  32. macaron.Env = macaron.PROD
  33. setting.ProdMode = true
  34. case "test":
  35. macaron.Env = macaron.TEST
  36. }
  37. log.Info("Run Mode: %s", strings.Title(macaron.Env))
  38. }
  39. func NewServices() {
  40. setting.NewServices()
  41. social.NewOauthService()
  42. }
  43. // GlobalInit is for global configuration reload-able.
  44. func GlobalInit() {
  45. setting.NewConfigContext()
  46. log.Trace("Custom path: %s", setting.CustomPath)
  47. log.Trace("Log path: %s", setting.LogRootPath)
  48. mailer.NewMailerContext()
  49. models.LoadModelsConfig()
  50. NewServices()
  51. if setting.InstallLock {
  52. models.LoadRepoConfig()
  53. models.NewRepoContext()
  54. if err := models.NewEngine(); err != nil {
  55. log.Fatal(4, "Fail to initialize ORM engine: %v", err)
  56. }
  57. models.HasEngine = true
  58. cron.NewCronContext()
  59. log.NewGitLogger(path.Join(setting.LogRootPath, "http.log"))
  60. }
  61. if models.EnableSQLite3 {
  62. log.Info("SQLite3 Enabled")
  63. }
  64. checkRunMode()
  65. }
  66. func InstallInit(ctx *middleware.Context) {
  67. if setting.InstallLock {
  68. ctx.Handle(404, "Install", errors.New("Installation is prohibited"))
  69. return
  70. }
  71. ctx.Data["Title"] = ctx.Tr("install.install")
  72. ctx.Data["PageIsInstall"] = true
  73. ctx.Data["DbOptions"] = []string{"MySQL", "PostgreSQL", "SQLite3"}
  74. }
  75. func Install(ctx *middleware.Context) {
  76. form := auth.InstallForm{}
  77. form.DbHost = models.DbCfg.Host
  78. form.DbUser = models.DbCfg.User
  79. form.DbName = models.DbCfg.Name
  80. form.DbPath = models.DbCfg.Path
  81. form.RepoRootPath = setting.RepoRootPath
  82. // Note(unknwon): it's hard for Windows users change a running user,
  83. // so just use current one if config says default.
  84. if setting.IsWindows && setting.RunUser == "git" {
  85. form.RunUser = os.Getenv("USER")
  86. if len(form.RunUser) == 0 {
  87. form.RunUser = os.Getenv("USERNAME")
  88. }
  89. } else {
  90. form.RunUser = setting.RunUser
  91. }
  92. form.Domain = setting.Domain
  93. form.HTTPPort = setting.HttpPort
  94. form.AppUrl = setting.AppUrl
  95. curDbOp := ""
  96. if models.EnableSQLite3 {
  97. curDbOp = "SQLite3" // Default when enabled.
  98. }
  99. ctx.Data["CurDbOption"] = curDbOp
  100. auth.AssignForm(form, ctx.Data)
  101. ctx.HTML(200, INSTALL)
  102. }
  103. func InstallPost(ctx *middleware.Context, form auth.InstallForm) {
  104. ctx.Data["CurDbOption"] = form.DbType
  105. if ctx.HasError() {
  106. ctx.HTML(200, INSTALL)
  107. return
  108. }
  109. if _, err := exec.LookPath("git"); err != nil {
  110. ctx.RenderWithErr(ctx.Tr("install.test_git_failed", err), INSTALL, &form)
  111. return
  112. }
  113. // Pass basic check, now test configuration.
  114. // Test database setting.
  115. dbTypes := map[string]string{"MySQL": "mysql", "PostgreSQL": "postgres", "SQLite3": "sqlite3"}
  116. models.DbCfg.Type = dbTypes[form.DbType]
  117. models.DbCfg.Host = form.DbHost
  118. models.DbCfg.User = form.DbUser
  119. models.DbCfg.Passwd = form.DbPasswd
  120. models.DbCfg.Name = form.DbName
  121. models.DbCfg.SSLMode = form.SSLMode
  122. models.DbCfg.Path = form.DbPath
  123. // Set test engine.
  124. var x *xorm.Engine
  125. if err := models.NewTestEngine(x); err != nil {
  126. if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
  127. ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "http://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &form)
  128. } else {
  129. ctx.RenderWithErr(ctx.Tr("install.invalid_db_setting", err), INSTALL, &form)
  130. }
  131. return
  132. }
  133. // Test repository root path.
  134. if err := os.MkdirAll(form.RepoRootPath, os.ModePerm); err != nil {
  135. ctx.Data["Err_RepoRootPath"] = true
  136. ctx.RenderWithErr(ctx.Tr("install.invalid_repo_path", err), INSTALL, &form)
  137. return
  138. }
  139. // Check run user.
  140. curUser := os.Getenv("USER")
  141. if len(curUser) == 0 {
  142. curUser = os.Getenv("USERNAME")
  143. }
  144. if form.RunUser != curUser {
  145. ctx.Data["Err_RunUser"] = true
  146. ctx.RenderWithErr(ctx.Tr("install.run_user_not_match", form.RunUser, curUser), INSTALL, &form)
  147. return
  148. }
  149. // Check admin password.
  150. if form.AdminPasswd != form.AdminConfirmPasswd {
  151. ctx.Data["Err_AdminPasswd"] = true
  152. ctx.RenderWithErr(ctx.Tr("form.password_not_match"), INSTALL, form)
  153. return
  154. }
  155. if form.AppUrl[len(form.AppUrl)-1] != '/' {
  156. form.AppUrl += "/"
  157. }
  158. // Save settings.
  159. cfg := ini.Empty()
  160. if com.IsFile(setting.CustomConf) {
  161. // Keeps custom settings if there is already something.
  162. if err := cfg.Append(setting.CustomConf); err != nil {
  163. log.Error(4, "Fail to load custom conf '%s': %v", setting.CustomConf, err)
  164. }
  165. }
  166. cfg.Section("database").Key("DB_TYPE").SetValue(models.DbCfg.Type)
  167. cfg.Section("database").Key("HOST").SetValue(models.DbCfg.Host)
  168. cfg.Section("database").Key("NAME").SetValue(models.DbCfg.Name)
  169. cfg.Section("database").Key("USER").SetValue(models.DbCfg.User)
  170. cfg.Section("database").Key("PASSWD").SetValue(models.DbCfg.Passwd)
  171. cfg.Section("database").Key("SSL_MODE").SetValue(models.DbCfg.SSLMode)
  172. cfg.Section("database").Key("PATH").SetValue(models.DbCfg.Path)
  173. cfg.Section("repository").Key("ROOT").SetValue(form.RepoRootPath)
  174. cfg.Section("").Key("RUN_USER").SetValue(form.RunUser)
  175. cfg.Section("server").Key("DOMAIN").SetValue(form.Domain)
  176. cfg.Section("server").Key("HTTP_PORT").SetValue(form.HTTPPort)
  177. cfg.Section("server").Key("ROOT_URL").SetValue(form.AppUrl)
  178. if len(strings.TrimSpace(form.SMTPHost)) > 0 {
  179. cfg.Section("mailer").Key("ENABLED").SetValue("true")
  180. cfg.Section("mailer").Key("HOST").SetValue(form.SMTPHost)
  181. cfg.Section("mailer").Key("USER").SetValue(form.SMTPEmail)
  182. cfg.Section("mailer").Key("PASSWD").SetValue(form.SMTPPasswd)
  183. cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").SetValue(com.ToStr(form.RegisterConfirm == "on"))
  184. cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").SetValue(com.ToStr(form.MailNotify == "on"))
  185. }
  186. cfg.Section("").Key("RUN_MODE").SetValue("prod")
  187. cfg.Section("session").Key("PROVIDER").SetValue("file")
  188. cfg.Section("log").Key("MODE").SetValue("file")
  189. cfg.Section("log").Key("LEVEL").SetValue("Info")
  190. cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")
  191. cfg.Section("security").Key("SECRET_KEY").SetValue(base.GetRandomString(15))
  192. os.MkdirAll(filepath.Dir(setting.CustomConf), os.ModePerm)
  193. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  194. ctx.RenderWithErr(ctx.Tr("install.save_config_failed", err), INSTALL, &form)
  195. return
  196. }
  197. GlobalInit()
  198. // Create admin account.
  199. if err := models.CreateUser(&models.User{Name: form.AdminName, Email: form.AdminEmail, Passwd: form.AdminPasswd,
  200. IsAdmin: true, IsActive: true}); err != nil {
  201. if !models.IsErrUserAlreadyExist(err) {
  202. setting.InstallLock = false
  203. ctx.Data["Err_AdminName"] = true
  204. ctx.Data["Err_AdminEmail"] = true
  205. ctx.RenderWithErr(ctx.Tr("install.invalid_admin_setting", err), INSTALL, &form)
  206. return
  207. }
  208. log.Info("Admin account already exist")
  209. }
  210. log.Info("First-time run install finished!")
  211. ctx.Flash.Success(ctx.Tr("install.install_success"))
  212. ctx.Redirect(form.AppUrl + "user/login")
  213. }