gitea/routers/install.go

248 lines
7.0 KiB
Go
Raw Normal View History

2014-03-25 09:51:42 +01:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package routers
2014-03-28 12:26:22 +01:00
import (
"errors"
"os"
2014-04-08 21:27:35 +02:00
"os/exec"
2014-05-26 02:11:25 +02:00
"path"
"strings"
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/com"
"github.com/Unknwon/goconfig"
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/macaron"
2014-04-18 15:35:09 +02:00
"github.com/go-xorm/xorm"
2014-03-28 12:26:22 +01:00
"github.com/gogits/gogs/models"
2014-03-28 23:40:31 +01:00
"github.com/gogits/gogs/modules/auth"
2014-03-28 12:26:22 +01:00
"github.com/gogits/gogs/modules/base"
2014-04-13 03:30:09 +02:00
"github.com/gogits/gogs/modules/cron"
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/mailer"
2014-03-28 12:26:22 +01:00
"github.com/gogits/gogs/modules/middleware"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-04-14 00:12:07 +02:00
"github.com/gogits/gogs/modules/social"
2014-03-28 12:26:22 +01:00
)
const (
INSTALL base.TplName = "install"
)
func checkRunMode() {
2014-05-26 02:11:25 +02:00
switch setting.Cfg.MustValue("", "RUN_MODE") {
case "prod":
2014-07-26 06:24:27 +02:00
macaron.Env = macaron.PROD
2014-05-26 02:11:25 +02:00
setting.ProdMode = true
case "test":
2014-07-26 06:24:27 +02:00
macaron.Env = macaron.TEST
}
2014-07-26 06:24:27 +02:00
log.Info("Run Mode: %s", strings.Title(macaron.Env))
}
2014-04-14 00:12:07 +02:00
func NewServices() {
2014-05-26 02:11:25 +02:00
setting.NewServices()
2014-04-14 00:12:07 +02:00
social.NewOauthService()
}
// GlobalInit is for global configuration reload-able.
func GlobalInit() {
2014-05-26 02:11:25 +02:00
setting.NewConfigContext()
2014-05-26 02:57:01 +02:00
log.Trace("Custom path: %s", setting.CustomPath)
2014-05-30 12:34:24 +02:00
log.Trace("Log path: %s", setting.LogRootPath)
mailer.NewMailerContext()
models.LoadModelsConfig()
2014-04-20 04:13:22 +02:00
NewServices()
2014-03-30 16:47:08 +02:00
2014-05-26 02:11:25 +02:00
if setting.InstallLock {
models.LoadRepoConfig()
models.NewRepoContext()
2014-03-30 16:47:08 +02:00
if err := models.NewEngine(); err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to initialize ORM engine: %v", err)
2014-03-30 16:47:08 +02:00
}
models.HasEngine = true
2014-04-13 03:30:09 +02:00
cron.NewCronContext()
2014-06-20 07:14:54 +02:00
log.NewGitLogger(path.Join(setting.LogRootPath, "http.log"))
}
2014-05-31 01:19:30 +02:00
if models.EnableSQLite3 {
log.Info("SQLite3 Enabled")
}
checkRunMode()
}
2014-04-27 06:34:48 +02:00
func renderDbOption(ctx *middleware.Context) {
ctx.Data["DbOptions"] = []string{"MySQL", "PostgreSQL", "SQLite3"}
}
// @router /install [get]
2014-04-10 22:36:50 +02:00
func Install(ctx *middleware.Context, form auth.InstallForm) {
2014-05-26 02:11:25 +02:00
if setting.InstallLock {
2014-03-28 12:26:22 +01:00
ctx.Handle(404, "install.Install", errors.New("Installation is prohibited"))
return
}
2014-03-25 09:51:42 +01:00
ctx.Data["Title"] = "Install"
2014-03-28 12:26:22 +01:00
ctx.Data["PageIsInstall"] = true
2014-05-05 19:08:01 +02:00
// Get and assign values to install form.
2014-04-10 20:37:43 +02:00
if len(form.Host) == 0 {
form.Host = models.DbCfg.Host
}
if len(form.User) == 0 {
form.User = models.DbCfg.User
}
if len(form.Passwd) == 0 {
form.Passwd = models.DbCfg.Pwd
}
if len(form.DatabaseName) == 0 {
form.DatabaseName = models.DbCfg.Name
}
if len(form.DatabasePath) == 0 {
form.DatabasePath = models.DbCfg.Path
}
2014-04-10 20:37:43 +02:00
if len(form.RepoRootPath) == 0 {
2014-05-26 02:11:25 +02:00
form.RepoRootPath = setting.RepoRootPath
2014-04-10 20:37:43 +02:00
}
if len(form.RunUser) == 0 {
2014-05-26 02:11:25 +02:00
form.RunUser = setting.RunUser
2014-04-10 20:37:43 +02:00
}
if len(form.Domain) == 0 {
2014-05-26 02:11:25 +02:00
form.Domain = setting.Domain
2014-04-10 20:37:43 +02:00
}
if len(form.AppUrl) == 0 {
2014-05-26 02:11:25 +02:00
form.AppUrl = setting.AppUrl
2014-04-10 20:37:43 +02:00
}
2014-04-27 06:34:48 +02:00
renderDbOption(ctx)
2014-05-05 19:08:01 +02:00
curDbOp := ""
2014-04-27 06:34:48 +02:00
if models.EnableSQLite3 {
2014-05-05 19:08:01 +02:00
curDbOp = "SQLite3" // Default when enabled.
2014-04-27 06:34:48 +02:00
}
2014-05-05 19:08:01 +02:00
ctx.Data["CurDbOption"] = curDbOp
2014-04-27 06:34:48 +02:00
2014-04-10 20:37:43 +02:00
auth.AssignForm(form, ctx.Data)
ctx.HTML(200, INSTALL)
2014-04-10 20:37:43 +02:00
}
2014-04-10 22:36:50 +02:00
func InstallPost(ctx *middleware.Context, form auth.InstallForm) {
2014-05-26 02:11:25 +02:00
if setting.InstallLock {
ctx.Handle(404, "install.InstallPost", errors.New("Installation is prohibited"))
2014-03-28 12:26:22 +01:00
return
}
2014-04-10 20:37:43 +02:00
ctx.Data["Title"] = "Install"
ctx.Data["PageIsInstall"] = true
2014-04-27 06:34:48 +02:00
renderDbOption(ctx)
2014-05-05 19:08:01 +02:00
ctx.Data["CurDbOption"] = form.Database
2014-04-27 06:34:48 +02:00
if ctx.HasError() {
ctx.HTML(200, INSTALL)
return
}
2014-04-08 21:27:35 +02:00
if _, err := exec.LookPath("git"); err != nil {
ctx.RenderWithErr("Fail to test 'git' command: "+err.Error(), INSTALL, &form)
2014-04-08 21:27:35 +02:00
return
}
// Pass basic check, now test configuration.
// Test database setting.
2014-04-27 06:34:48 +02:00
dbTypes := map[string]string{"MySQL": "mysql", "PostgreSQL": "postgres", "SQLite3": "sqlite3"}
models.DbCfg.Type = dbTypes[form.Database]
models.DbCfg.Host = form.Host
models.DbCfg.User = form.User
models.DbCfg.Pwd = form.Passwd
models.DbCfg.Name = form.DatabaseName
models.DbCfg.SslMode = form.SslMode
models.DbCfg.Path = form.DatabasePath
2014-03-30 17:09:59 +02:00
// Set test engine.
2014-03-30 16:47:08 +02:00
var x *xorm.Engine
if err := models.NewTestEngine(x); err != nil {
// NOTE: should use core.QueryDriver (github.com/go-xorm/core)
2014-03-30 17:09:59 +02:00
if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
2014-03-30 15:39:44 +02:00
ctx.RenderWithErr("Your release version does not support SQLite3, please download the official binary version "+
"from http://gogs.io/docs/installation/install_from_binary.md, NOT the gobuild version.", INSTALL, &form)
2014-03-30 15:39:44 +02:00
} else {
ctx.RenderWithErr("Database setting is not correct: "+err.Error(), INSTALL, &form)
2014-03-30 15:39:44 +02:00
}
return
}
// Test repository root path.
if err := os.MkdirAll(form.RepoRootPath, os.ModePerm); err != nil {
ctx.RenderWithErr("Repository root path is invalid: "+err.Error(), INSTALL, &form)
return
}
2014-03-30 17:58:21 +02:00
// Check run user.
2014-04-12 05:52:08 +02:00
curUser := os.Getenv("USER")
2014-03-30 17:58:21 +02:00
if len(curUser) == 0 {
2014-04-12 05:52:08 +02:00
curUser = os.Getenv("USERNAME")
2014-03-30 17:58:21 +02:00
}
// Does not check run user when the install lock is off.
if form.RunUser != curUser {
ctx.RenderWithErr("Run user isn't the current user: "+form.RunUser+" -> "+curUser, INSTALL, &form)
2014-03-30 17:58:21 +02:00
return
}
// Save settings.
2014-05-26 02:11:25 +02:00
setting.Cfg.SetValue("database", "DB_TYPE", models.DbCfg.Type)
setting.Cfg.SetValue("database", "HOST", models.DbCfg.Host)
setting.Cfg.SetValue("database", "NAME", models.DbCfg.Name)
setting.Cfg.SetValue("database", "USER", models.DbCfg.User)
setting.Cfg.SetValue("database", "PASSWD", models.DbCfg.Pwd)
setting.Cfg.SetValue("database", "SSL_MODE", models.DbCfg.SslMode)
setting.Cfg.SetValue("database", "PATH", models.DbCfg.Path)
setting.Cfg.SetValue("repository", "ROOT", form.RepoRootPath)
setting.Cfg.SetValue("", "RUN_USER", form.RunUser)
setting.Cfg.SetValue("server", "DOMAIN", form.Domain)
setting.Cfg.SetValue("server", "ROOT_URL", form.AppUrl)
2014-03-30 22:34:23 +02:00
if len(strings.TrimSpace(form.SmtpHost)) > 0 {
2014-05-26 02:11:25 +02:00
setting.Cfg.SetValue("mailer", "ENABLED", "true")
setting.Cfg.SetValue("mailer", "HOST", form.SmtpHost)
setting.Cfg.SetValue("mailer", "USER", form.SmtpEmail)
setting.Cfg.SetValue("mailer", "PASSWD", form.SmtpPasswd)
2014-07-26 06:24:27 +02:00
setting.Cfg.SetValue("service", "REGISTER_EMAIL_CONFIRM", com.ToStr(form.RegisterConfirm == "on"))
setting.Cfg.SetValue("service", "ENABLE_NOTIFY_MAIL", com.ToStr(form.MailNotify == "on"))
}
2014-05-26 02:11:25 +02:00
setting.Cfg.SetValue("", "RUN_MODE", "prod")
2014-03-30 17:58:21 +02:00
2014-08-27 10:39:36 +02:00
setting.Cfg.SetValue("log", "MODE", "file")
2014-05-26 02:11:25 +02:00
setting.Cfg.SetValue("security", "INSTALL_LOCK", "true")
2014-03-30 17:58:21 +02:00
os.MkdirAll("custom/conf", os.ModePerm)
2014-05-26 02:11:25 +02:00
if err := goconfig.SaveConfigFile(setting.Cfg, path.Join(setting.CustomPath, "conf/app.ini")); err != nil {
ctx.RenderWithErr("Fail to save configuration: "+err.Error(), INSTALL, &form)
return
}
GlobalInit()
2014-03-30 17:09:59 +02:00
// Create admin account.
2014-07-26 06:24:27 +02:00
if err := models.CreateUser(&models.User{Name: form.AdminName, Email: form.AdminEmail, Passwd: form.AdminPasswd,
2014-03-30 17:09:59 +02:00
IsAdmin: true, IsActive: true}); err != nil {
if err != models.ErrUserAlreadyExist {
2014-05-26 02:11:25 +02:00
setting.InstallLock = false
ctx.RenderWithErr("Admin account setting is invalid: "+err.Error(), INSTALL, &form)
2014-03-30 17:09:59 +02:00
return
}
2014-03-30 22:01:50 +02:00
log.Info("Admin account already exist")
2014-03-30 17:09:59 +02:00
}
log.Info("First-time run install finished!")
2014-04-10 20:37:43 +02:00
ctx.Flash.Success("Welcome! We're glad that you choose Gogs, have fun and take care.")
ctx.Redirect("/user/login")
2014-03-25 09:51:42 +01:00
}