install.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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/models/cron"
  18. "github.com/gogits/gogs/modules/auth"
  19. "github.com/gogits/gogs/modules/base"
  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. "github.com/gogits/gogs/modules/user"
  26. )
  27. const (
  28. INSTALL base.TplName = "install"
  29. )
  30. func checkRunMode() {
  31. switch setting.Cfg.Section("").Key("RUN_MODE").String() {
  32. case "prod":
  33. macaron.Env = macaron.PROD
  34. macaron.ColorLog = false
  35. setting.ProdMode = true
  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. models.InitDeliverHooks()
  60. log.NewGitLogger(path.Join(setting.LogRootPath, "http.log"))
  61. }
  62. if models.EnableSQLite3 {
  63. log.Info("SQLite3 Supported")
  64. }
  65. checkRunMode()
  66. }
  67. func InstallInit(ctx *middleware.Context) {
  68. if setting.InstallLock {
  69. ctx.Handle(404, "Install", errors.New("Installation is prohibited"))
  70. return
  71. }
  72. ctx.Data["Title"] = ctx.Tr("install.install")
  73. ctx.Data["PageIsInstall"] = true
  74. dbOpts := []string{"MySQL", "PostgreSQL"}
  75. if models.EnableSQLite3 {
  76. dbOpts = append(dbOpts, "SQLite3")
  77. }
  78. if models.EnableTidb {
  79. dbOpts = append(dbOpts, "TiDB")
  80. }
  81. ctx.Data["DbOptions"] = dbOpts
  82. }
  83. func Install(ctx *middleware.Context) {
  84. form := auth.InstallForm{}
  85. // Database settings
  86. form.DbHost = models.DbCfg.Host
  87. form.DbUser = models.DbCfg.User
  88. form.DbName = models.DbCfg.Name
  89. form.DbPath = models.DbCfg.Path
  90. ctx.Data["CurDbOption"] = "MySQL"
  91. switch models.DbCfg.Type {
  92. case "postgres":
  93. ctx.Data["CurDbOption"] = "PostgreSQL"
  94. case "sqlite3":
  95. if models.EnableSQLite3 {
  96. ctx.Data["CurDbOption"] = "SQLite3"
  97. }
  98. case "tidb":
  99. if models.EnableTidb {
  100. ctx.Data["CurDbOption"] = "TiDB"
  101. }
  102. }
  103. // Application general settings
  104. form.AppName = setting.AppName
  105. form.RepoRootPath = setting.RepoRootPath
  106. // Note(unknwon): it's hard for Windows users change a running user,
  107. // so just use current one if config says default.
  108. if setting.IsWindows && setting.RunUser == "git" {
  109. form.RunUser = user.CurrentUsername()
  110. } else {
  111. form.RunUser = setting.RunUser
  112. }
  113. form.Domain = setting.Domain
  114. form.SSHPort = setting.SSHPort
  115. form.HTTPPort = setting.HttpPort
  116. form.AppUrl = setting.AppUrl
  117. // E-mail service settings
  118. if setting.MailService != nil {
  119. form.SMTPHost = setting.MailService.Host
  120. form.SMTPFrom = setting.MailService.From
  121. form.SMTPEmail = setting.MailService.User
  122. }
  123. form.RegisterConfirm = setting.Service.RegisterEmailConfirm
  124. form.MailNotify = setting.Service.EnableNotifyMail
  125. // Server and other services settings
  126. form.OfflineMode = setting.OfflineMode
  127. form.DisableGravatar = setting.DisableGravatar
  128. form.DisableRegistration = setting.Service.DisableRegistration
  129. form.RequireSignInView = setting.Service.RequireSignInView
  130. auth.AssignForm(form, ctx.Data)
  131. ctx.HTML(200, INSTALL)
  132. }
  133. func InstallPost(ctx *middleware.Context, form auth.InstallForm) {
  134. ctx.Data["CurDbOption"] = form.DbType
  135. if ctx.HasError() {
  136. if ctx.HasValue("Err_SMTPEmail") {
  137. ctx.Data["Err_SMTP"] = true
  138. }
  139. if ctx.HasValue("Err_AdminName") ||
  140. ctx.HasValue("Err_AdminPasswd") ||
  141. ctx.HasValue("Err_AdminEmail") {
  142. ctx.Data["Err_Admin"] = true
  143. }
  144. ctx.HTML(200, INSTALL)
  145. return
  146. }
  147. if _, err := exec.LookPath("git"); err != nil {
  148. ctx.RenderWithErr(ctx.Tr("install.test_git_failed", err), INSTALL, &form)
  149. return
  150. }
  151. // Pass basic check, now test configuration.
  152. // Test database setting.
  153. dbTypes := map[string]string{"MySQL": "mysql", "PostgreSQL": "postgres", "SQLite3": "sqlite3", "TiDB": "tidb"}
  154. models.DbCfg.Type = dbTypes[form.DbType]
  155. models.DbCfg.Host = form.DbHost
  156. models.DbCfg.User = form.DbUser
  157. models.DbCfg.Passwd = form.DbPasswd
  158. models.DbCfg.Name = form.DbName
  159. models.DbCfg.SSLMode = form.SSLMode
  160. models.DbCfg.Path = form.DbPath
  161. if (models.DbCfg.Type == "sqlite3" || models.DbCfg.Type == "tidb") &&
  162. len(models.DbCfg.Path) == 0 {
  163. ctx.Data["Err_DbPath"] = true
  164. ctx.RenderWithErr(ctx.Tr("install.err_empty_db_path"), INSTALL, &form)
  165. return
  166. } else if models.DbCfg.Type == "tidb" &&
  167. strings.ContainsAny(path.Base(models.DbCfg.Path), ".-") {
  168. ctx.Data["Err_DbPath"] = true
  169. ctx.RenderWithErr(ctx.Tr("install.err_invalid_tidb_name"), INSTALL, &form)
  170. return
  171. }
  172. // Set test engine.
  173. var x *xorm.Engine
  174. if err := models.NewTestEngine(x); err != nil {
  175. if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
  176. ctx.Data["Err_DbType"] = true
  177. ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "http://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &form)
  178. } else {
  179. ctx.Data["Err_DbSetting"] = true
  180. ctx.RenderWithErr(ctx.Tr("install.invalid_db_setting", err), INSTALL, &form)
  181. }
  182. return
  183. }
  184. // Test repository root path.
  185. if err := os.MkdirAll(form.RepoRootPath, os.ModePerm); err != nil {
  186. ctx.Data["Err_RepoRootPath"] = true
  187. ctx.RenderWithErr(ctx.Tr("install.invalid_repo_path", err), INSTALL, &form)
  188. return
  189. }
  190. // Check run user.
  191. curUser := user.CurrentUsername()
  192. if form.RunUser != curUser {
  193. ctx.Data["Err_RunUser"] = true
  194. ctx.RenderWithErr(ctx.Tr("install.run_user_not_match", form.RunUser, curUser), INSTALL, &form)
  195. return
  196. }
  197. // Check logic loophole between disable self-registration and no admin account.
  198. if form.DisableRegistration && len(form.AdminName) == 0 {
  199. ctx.Data["Err_Services"] = true
  200. ctx.Data["Err_Admin"] = true
  201. ctx.RenderWithErr(ctx.Tr("install.no_admin_and_disable_registration"), INSTALL, form)
  202. return
  203. }
  204. // Check admin password.
  205. if len(form.AdminName) > 0 && len(form.AdminPasswd) == 0 {
  206. ctx.Data["Err_Admin"] = true
  207. ctx.Data["Err_AdminPasswd"] = true
  208. ctx.RenderWithErr(ctx.Tr("install.err_empty_admin_password"), INSTALL, form)
  209. return
  210. }
  211. if form.AdminPasswd != form.AdminConfirmPasswd {
  212. ctx.Data["Err_Admin"] = true
  213. ctx.Data["Err_AdminPasswd"] = true
  214. ctx.RenderWithErr(ctx.Tr("form.password_not_match"), INSTALL, form)
  215. return
  216. }
  217. if form.AppUrl[len(form.AppUrl)-1] != '/' {
  218. form.AppUrl += "/"
  219. }
  220. // Save settings.
  221. cfg := ini.Empty()
  222. if com.IsFile(setting.CustomConf) {
  223. // Keeps custom settings if there is already something.
  224. if err := cfg.Append(setting.CustomConf); err != nil {
  225. log.Error(4, "Fail to load custom conf '%s': %v", setting.CustomConf, err)
  226. }
  227. }
  228. cfg.Section("database").Key("DB_TYPE").SetValue(models.DbCfg.Type)
  229. cfg.Section("database").Key("HOST").SetValue(models.DbCfg.Host)
  230. cfg.Section("database").Key("NAME").SetValue(models.DbCfg.Name)
  231. cfg.Section("database").Key("USER").SetValue(models.DbCfg.User)
  232. cfg.Section("database").Key("PASSWD").SetValue(models.DbCfg.Passwd)
  233. cfg.Section("database").Key("SSL_MODE").SetValue(models.DbCfg.SSLMode)
  234. cfg.Section("database").Key("PATH").SetValue(models.DbCfg.Path)
  235. cfg.Section("").Key("APP_NAME").SetValue(form.AppName)
  236. cfg.Section("repository").Key("ROOT").SetValue(form.RepoRootPath)
  237. cfg.Section("").Key("RUN_USER").SetValue(form.RunUser)
  238. cfg.Section("server").Key("DOMAIN").SetValue(form.Domain)
  239. cfg.Section("server").Key("HTTP_PORT").SetValue(form.HTTPPort)
  240. cfg.Section("server").Key("ROOT_URL").SetValue(form.AppUrl)
  241. if form.SSHPort == 0 {
  242. cfg.Section("server").Key("DISABLE_SSH").SetValue("true")
  243. } else {
  244. cfg.Section("server").Key("DISABLE_SSH").SetValue("false")
  245. cfg.Section("server").Key("SSH_PORT").SetValue(com.ToStr(form.SSHPort))
  246. }
  247. if len(strings.TrimSpace(form.SMTPHost)) > 0 {
  248. cfg.Section("mailer").Key("ENABLED").SetValue("true")
  249. cfg.Section("mailer").Key("HOST").SetValue(form.SMTPHost)
  250. cfg.Section("mailer").Key("FROM").SetValue(form.SMTPFrom)
  251. cfg.Section("mailer").Key("USER").SetValue(form.SMTPEmail)
  252. cfg.Section("mailer").Key("PASSWD").SetValue(form.SMTPPasswd)
  253. } else {
  254. cfg.Section("mailer").Key("ENABLED").SetValue("false")
  255. }
  256. cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").SetValue(com.ToStr(form.RegisterConfirm))
  257. cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").SetValue(com.ToStr(form.MailNotify))
  258. cfg.Section("server").Key("OFFLINE_MODE").SetValue(com.ToStr(form.OfflineMode))
  259. cfg.Section("picture").Key("DISABLE_GRAVATAR").SetValue(com.ToStr(form.DisableGravatar))
  260. cfg.Section("service").Key("DISABLE_REGISTRATION").SetValue(com.ToStr(form.DisableRegistration))
  261. cfg.Section("service").Key("REQUIRE_SIGNIN_VIEW").SetValue(com.ToStr(form.RequireSignInView))
  262. cfg.Section("").Key("RUN_MODE").SetValue("prod")
  263. cfg.Section("session").Key("PROVIDER").SetValue("file")
  264. cfg.Section("log").Key("MODE").SetValue("file")
  265. cfg.Section("log").Key("LEVEL").SetValue("Info")
  266. cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")
  267. cfg.Section("security").Key("SECRET_KEY").SetValue(base.GetRandomString(15))
  268. os.MkdirAll(filepath.Dir(setting.CustomConf), os.ModePerm)
  269. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  270. ctx.RenderWithErr(ctx.Tr("install.save_config_failed", err), INSTALL, &form)
  271. return
  272. }
  273. GlobalInit()
  274. // Create admin account.
  275. if len(form.AdminName) > 0 {
  276. if err := models.CreateUser(&models.User{
  277. Name: form.AdminName,
  278. Email: form.AdminEmail,
  279. Passwd: form.AdminPasswd,
  280. IsAdmin: true,
  281. IsActive: true,
  282. }); err != nil {
  283. if !models.IsErrUserAlreadyExist(err) {
  284. setting.InstallLock = false
  285. ctx.Data["Err_AdminName"] = true
  286. ctx.Data["Err_AdminEmail"] = true
  287. ctx.RenderWithErr(ctx.Tr("install.invalid_admin_setting", err), INSTALL, &form)
  288. return
  289. }
  290. log.Info("Admin account already exist")
  291. }
  292. }
  293. log.Info("First-time run install finished!")
  294. ctx.Flash.Success(ctx.Tr("install.install_success"))
  295. ctx.Redirect(form.AppUrl + "user/login")
  296. }