install.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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 route
  5. import (
  6. "net/mail"
  7. "os"
  8. "os/exec"
  9. "path/filepath"
  10. "strings"
  11. "github.com/unknwon/com"
  12. log "gopkg.in/clog.v1"
  13. "gopkg.in/ini.v1"
  14. "gopkg.in/macaron.v1"
  15. "xorm.io/xorm"
  16. "github.com/gogs/git-module"
  17. "gogs.io/gogs/internal/context"
  18. "gogs.io/gogs/internal/cron"
  19. "gogs.io/gogs/internal/db"
  20. "gogs.io/gogs/internal/form"
  21. "gogs.io/gogs/internal/mailer"
  22. "gogs.io/gogs/internal/markup"
  23. "gogs.io/gogs/internal/setting"
  24. "gogs.io/gogs/internal/ssh"
  25. "gogs.io/gogs/internal/template/highlight"
  26. "gogs.io/gogs/internal/tool"
  27. "gogs.io/gogs/internal/user"
  28. )
  29. const (
  30. INSTALL = "install"
  31. )
  32. func checkRunMode() {
  33. if setting.ProdMode {
  34. macaron.Env = macaron.PROD
  35. macaron.ColorLog = false
  36. } else {
  37. git.Debug = true
  38. }
  39. log.Info("Run mode: %s", strings.Title(macaron.Env))
  40. }
  41. func NewServices() {
  42. setting.NewServices()
  43. mailer.NewContext()
  44. }
  45. // GlobalInit is for global configuration reload-able.
  46. func GlobalInit() {
  47. setting.NewContext()
  48. log.Trace("Custom path: %s", setting.CustomPath)
  49. log.Trace("Log path: %s", setting.LogRootPath)
  50. db.LoadConfigs()
  51. NewServices()
  52. if setting.InstallLock {
  53. highlight.NewContext()
  54. markup.NewSanitizer()
  55. if err := db.NewEngine(); err != nil {
  56. log.Fatal(2, "Fail to initialize ORM engine: %v", err)
  57. }
  58. db.HasEngine = true
  59. db.LoadAuthSources()
  60. db.LoadRepoConfig()
  61. db.NewRepoContext()
  62. // Booting long running goroutines.
  63. cron.NewContext()
  64. db.InitSyncMirrors()
  65. db.InitDeliverHooks()
  66. db.InitTestPullRequests()
  67. }
  68. if db.EnableSQLite3 {
  69. log.Info("SQLite3 is supported")
  70. }
  71. if setting.SupportMiniWinService {
  72. log.Info("Builtin Windows Service is supported")
  73. }
  74. if setting.LoadAssetsFromDisk {
  75. log.Trace("Assets are loaded from disk")
  76. }
  77. checkRunMode()
  78. if !setting.InstallLock {
  79. return
  80. }
  81. if setting.SSH.StartBuiltinServer {
  82. ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort, setting.SSH.ServerCiphers)
  83. log.Info("SSH server started on %s:%v", setting.SSH.ListenHost, setting.SSH.ListenPort)
  84. log.Trace("SSH server cipher list: %v", setting.SSH.ServerCiphers)
  85. }
  86. if setting.SSH.RewriteAuthorizedKeysAtStart {
  87. if err := db.RewriteAuthorizedKeys(); err != nil {
  88. log.Warn("Failed to rewrite authorized_keys file: %v", err)
  89. }
  90. }
  91. }
  92. func InstallInit(c *context.Context) {
  93. if setting.InstallLock {
  94. c.NotFound()
  95. return
  96. }
  97. c.Title("install.install")
  98. c.PageIs("Install")
  99. dbOpts := []string{"MySQL", "PostgreSQL", "MSSQL"}
  100. if db.EnableSQLite3 {
  101. dbOpts = append(dbOpts, "SQLite3")
  102. }
  103. c.Data["DbOptions"] = dbOpts
  104. }
  105. func Install(c *context.Context) {
  106. f := form.Install{}
  107. // Database settings
  108. f.DbHost = db.DbCfg.Host
  109. f.DbUser = db.DbCfg.User
  110. f.DbName = db.DbCfg.Name
  111. f.DbPath = db.DbCfg.Path
  112. c.Data["CurDbOption"] = "MySQL"
  113. switch db.DbCfg.Type {
  114. case "postgres":
  115. c.Data["CurDbOption"] = "PostgreSQL"
  116. case "mssql":
  117. c.Data["CurDbOption"] = "MSSQL"
  118. case "sqlite3":
  119. if db.EnableSQLite3 {
  120. c.Data["CurDbOption"] = "SQLite3"
  121. }
  122. }
  123. // Application general settings
  124. f.AppName = setting.AppName
  125. f.RepoRootPath = setting.RepoRootPath
  126. // Note(unknwon): it's hard for Windows users change a running user,
  127. // so just use current one if config says default.
  128. if setting.IsWindows && setting.RunUser == "git" {
  129. f.RunUser = user.CurrentUsername()
  130. } else {
  131. f.RunUser = setting.RunUser
  132. }
  133. f.Domain = setting.Domain
  134. f.SSHPort = setting.SSH.Port
  135. f.UseBuiltinSSHServer = setting.SSH.StartBuiltinServer
  136. f.HTTPPort = setting.HTTPPort
  137. f.AppUrl = setting.AppURL
  138. f.LogRootPath = setting.LogRootPath
  139. // E-mail service settings
  140. if setting.MailService != nil {
  141. f.SMTPHost = setting.MailService.Host
  142. f.SMTPFrom = setting.MailService.From
  143. f.SMTPUser = setting.MailService.User
  144. }
  145. f.RegisterConfirm = setting.Service.RegisterEmailConfirm
  146. f.MailNotify = setting.Service.EnableNotifyMail
  147. // Server and other services settings
  148. f.OfflineMode = setting.OfflineMode
  149. f.DisableGravatar = setting.DisableGravatar
  150. f.EnableFederatedAvatar = setting.EnableFederatedAvatar
  151. f.DisableRegistration = setting.Service.DisableRegistration
  152. f.EnableCaptcha = setting.Service.EnableCaptcha
  153. f.RequireSignInView = setting.Service.RequireSignInView
  154. form.Assign(f, c.Data)
  155. c.Success(INSTALL)
  156. }
  157. func InstallPost(c *context.Context, f form.Install) {
  158. c.Data["CurDbOption"] = f.DbType
  159. if c.HasError() {
  160. if c.HasValue("Err_SMTPEmail") {
  161. c.FormErr("SMTP")
  162. }
  163. if c.HasValue("Err_AdminName") ||
  164. c.HasValue("Err_AdminPasswd") ||
  165. c.HasValue("Err_AdminEmail") {
  166. c.FormErr("Admin")
  167. }
  168. c.Success(INSTALL)
  169. return
  170. }
  171. if _, err := exec.LookPath("git"); err != nil {
  172. c.RenderWithErr(c.Tr("install.test_git_failed", err), INSTALL, &f)
  173. return
  174. }
  175. // Pass basic check, now test configuration.
  176. // Test database setting.
  177. dbTypes := map[string]string{"MySQL": "mysql", "PostgreSQL": "postgres", "MSSQL": "mssql", "SQLite3": "sqlite3", "TiDB": "tidb"}
  178. db.DbCfg.Type = dbTypes[f.DbType]
  179. db.DbCfg.Host = f.DbHost
  180. db.DbCfg.User = f.DbUser
  181. db.DbCfg.Passwd = f.DbPasswd
  182. db.DbCfg.Name = f.DbName
  183. db.DbCfg.SSLMode = f.SSLMode
  184. db.DbCfg.Path = f.DbPath
  185. if db.DbCfg.Type == "sqlite3" && len(db.DbCfg.Path) == 0 {
  186. c.FormErr("DbPath")
  187. c.RenderWithErr(c.Tr("install.err_empty_db_path"), INSTALL, &f)
  188. return
  189. }
  190. // Set test engine.
  191. var x *xorm.Engine
  192. if err := db.NewTestEngine(x); err != nil {
  193. if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
  194. c.FormErr("DbType")
  195. c.RenderWithErr(c.Tr("install.sqlite3_not_available", "https://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &f)
  196. } else {
  197. c.FormErr("DbSetting")
  198. c.RenderWithErr(c.Tr("install.invalid_db_setting", err), INSTALL, &f)
  199. }
  200. return
  201. }
  202. // Test repository root path.
  203. f.RepoRootPath = strings.Replace(f.RepoRootPath, "\\", "/", -1)
  204. if err := os.MkdirAll(f.RepoRootPath, os.ModePerm); err != nil {
  205. c.FormErr("RepoRootPath")
  206. c.RenderWithErr(c.Tr("install.invalid_repo_path", err), INSTALL, &f)
  207. return
  208. }
  209. // Test log root path.
  210. f.LogRootPath = strings.Replace(f.LogRootPath, "\\", "/", -1)
  211. if err := os.MkdirAll(f.LogRootPath, os.ModePerm); err != nil {
  212. c.FormErr("LogRootPath")
  213. c.RenderWithErr(c.Tr("install.invalid_log_root_path", err), INSTALL, &f)
  214. return
  215. }
  216. currentUser, match := setting.IsRunUserMatchCurrentUser(f.RunUser)
  217. if !match {
  218. c.FormErr("RunUser")
  219. c.RenderWithErr(c.Tr("install.run_user_not_match", f.RunUser, currentUser), INSTALL, &f)
  220. return
  221. }
  222. // Check host address and port
  223. if len(f.SMTPHost) > 0 && !strings.Contains(f.SMTPHost, ":") {
  224. c.FormErr("SMTP", "SMTPHost")
  225. c.RenderWithErr(c.Tr("install.smtp_host_missing_port"), INSTALL, &f)
  226. return
  227. }
  228. // Make sure FROM field is valid
  229. if len(f.SMTPFrom) > 0 {
  230. _, err := mail.ParseAddress(f.SMTPFrom)
  231. if err != nil {
  232. c.FormErr("SMTP", "SMTPFrom")
  233. c.RenderWithErr(c.Tr("install.invalid_smtp_from", err), INSTALL, &f)
  234. return
  235. }
  236. }
  237. // Check logic loophole between disable self-registration and no admin account.
  238. if f.DisableRegistration && len(f.AdminName) == 0 {
  239. c.FormErr("Services", "Admin")
  240. c.RenderWithErr(c.Tr("install.no_admin_and_disable_registration"), INSTALL, f)
  241. return
  242. }
  243. // Check admin password.
  244. if len(f.AdminName) > 0 && len(f.AdminPasswd) == 0 {
  245. c.FormErr("Admin", "AdminPasswd")
  246. c.RenderWithErr(c.Tr("install.err_empty_admin_password"), INSTALL, f)
  247. return
  248. }
  249. if f.AdminPasswd != f.AdminConfirmPasswd {
  250. c.FormErr("Admin", "AdminPasswd")
  251. c.RenderWithErr(c.Tr("form.password_not_match"), INSTALL, f)
  252. return
  253. }
  254. if f.AppUrl[len(f.AppUrl)-1] != '/' {
  255. f.AppUrl += "/"
  256. }
  257. // Save settings.
  258. cfg := ini.Empty()
  259. if com.IsFile(setting.CustomConf) {
  260. // Keeps custom settings if there is already something.
  261. if err := cfg.Append(setting.CustomConf); err != nil {
  262. log.Error(2, "Fail to load custom conf '%s': %v", setting.CustomConf, err)
  263. }
  264. }
  265. cfg.Section("database").Key("DB_TYPE").SetValue(db.DbCfg.Type)
  266. cfg.Section("database").Key("HOST").SetValue(db.DbCfg.Host)
  267. cfg.Section("database").Key("NAME").SetValue(db.DbCfg.Name)
  268. cfg.Section("database").Key("USER").SetValue(db.DbCfg.User)
  269. cfg.Section("database").Key("PASSWD").SetValue(db.DbCfg.Passwd)
  270. cfg.Section("database").Key("SSL_MODE").SetValue(db.DbCfg.SSLMode)
  271. cfg.Section("database").Key("PATH").SetValue(db.DbCfg.Path)
  272. cfg.Section("").Key("APP_NAME").SetValue(f.AppName)
  273. cfg.Section("repository").Key("ROOT").SetValue(f.RepoRootPath)
  274. cfg.Section("").Key("RUN_USER").SetValue(f.RunUser)
  275. cfg.Section("server").Key("DOMAIN").SetValue(f.Domain)
  276. cfg.Section("server").Key("HTTP_PORT").SetValue(f.HTTPPort)
  277. cfg.Section("server").Key("ROOT_URL").SetValue(f.AppUrl)
  278. if f.SSHPort == 0 {
  279. cfg.Section("server").Key("DISABLE_SSH").SetValue("true")
  280. } else {
  281. cfg.Section("server").Key("DISABLE_SSH").SetValue("false")
  282. cfg.Section("server").Key("SSH_PORT").SetValue(com.ToStr(f.SSHPort))
  283. cfg.Section("server").Key("START_SSH_SERVER").SetValue(com.ToStr(f.UseBuiltinSSHServer))
  284. }
  285. if len(strings.TrimSpace(f.SMTPHost)) > 0 {
  286. cfg.Section("mailer").Key("ENABLED").SetValue("true")
  287. cfg.Section("mailer").Key("HOST").SetValue(f.SMTPHost)
  288. cfg.Section("mailer").Key("FROM").SetValue(f.SMTPFrom)
  289. cfg.Section("mailer").Key("USER").SetValue(f.SMTPUser)
  290. cfg.Section("mailer").Key("PASSWD").SetValue(f.SMTPPasswd)
  291. } else {
  292. cfg.Section("mailer").Key("ENABLED").SetValue("false")
  293. }
  294. cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").SetValue(com.ToStr(f.RegisterConfirm))
  295. cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").SetValue(com.ToStr(f.MailNotify))
  296. cfg.Section("server").Key("OFFLINE_MODE").SetValue(com.ToStr(f.OfflineMode))
  297. cfg.Section("picture").Key("DISABLE_GRAVATAR").SetValue(com.ToStr(f.DisableGravatar))
  298. cfg.Section("picture").Key("ENABLE_FEDERATED_AVATAR").SetValue(com.ToStr(f.EnableFederatedAvatar))
  299. cfg.Section("service").Key("DISABLE_REGISTRATION").SetValue(com.ToStr(f.DisableRegistration))
  300. cfg.Section("service").Key("ENABLE_CAPTCHA").SetValue(com.ToStr(f.EnableCaptcha))
  301. cfg.Section("service").Key("REQUIRE_SIGNIN_VIEW").SetValue(com.ToStr(f.RequireSignInView))
  302. cfg.Section("").Key("RUN_MODE").SetValue("prod")
  303. cfg.Section("session").Key("PROVIDER").SetValue("file")
  304. mode := "file"
  305. if f.EnableConsoleMode {
  306. mode = "console, file"
  307. }
  308. cfg.Section("log").Key("MODE").SetValue(mode)
  309. cfg.Section("log").Key("LEVEL").SetValue("Info")
  310. cfg.Section("log").Key("ROOT_PATH").SetValue(f.LogRootPath)
  311. cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")
  312. secretKey, err := tool.RandomString(15)
  313. if err != nil {
  314. c.RenderWithErr(c.Tr("install.secret_key_failed", err), INSTALL, &f)
  315. return
  316. }
  317. cfg.Section("security").Key("SECRET_KEY").SetValue(secretKey)
  318. os.MkdirAll(filepath.Dir(setting.CustomConf), os.ModePerm)
  319. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  320. c.RenderWithErr(c.Tr("install.save_config_failed", err), INSTALL, &f)
  321. return
  322. }
  323. GlobalInit()
  324. // Create admin account
  325. if len(f.AdminName) > 0 {
  326. u := &db.User{
  327. Name: f.AdminName,
  328. Email: f.AdminEmail,
  329. Passwd: f.AdminPasswd,
  330. IsAdmin: true,
  331. IsActive: true,
  332. }
  333. if err := db.CreateUser(u); err != nil {
  334. if !db.IsErrUserAlreadyExist(err) {
  335. setting.InstallLock = false
  336. c.FormErr("AdminName", "AdminEmail")
  337. c.RenderWithErr(c.Tr("install.invalid_admin_setting", err), INSTALL, &f)
  338. return
  339. }
  340. log.Info("Admin account already exist")
  341. u, _ = db.GetUserByName(u.Name)
  342. }
  343. // Auto-login for admin
  344. c.Session.Set("uid", u.ID)
  345. c.Session.Set("uname", u.Name)
  346. }
  347. log.Info("First-time run install finished!")
  348. c.Flash.Success(c.Tr("install.install_success"))
  349. c.Redirect(f.AppUrl + "user/login")
  350. }