gitea/routers/install.go

247 lines
7.3 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/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-12-31 11:37:29 +01:00
switch setting.Cfg.Section("").Key("RUN_MODE").String() {
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()
}
func InstallInit(ctx *middleware.Context) {
2014-05-26 02:11:25 +02:00
if setting.InstallLock {
ctx.Handle(404, "Install", errors.New("Installation is prohibited"))
2014-03-28 12:26:22 +01:00
return
}
2014-03-25 09:51:42 +01:00
ctx.Data["Title"] = ctx.Tr("install.install")
2014-03-28 12:26:22 +01:00
ctx.Data["PageIsInstall"] = true
ctx.Data["DbOptions"] = []string{"MySQL", "PostgreSQL", "SQLite3"}
}
func Install(ctx *middleware.Context) {
form := auth.InstallForm{}
form.DbHost = models.DbCfg.Host
form.DbUser = models.DbCfg.User
form.DbPasswd = models.DbCfg.Passwd
form.DbName = models.DbCfg.Name
form.DbPath = models.DbCfg.Path
form.RepoRootPath = setting.RepoRootPath
// Note(unknwon): it's hard for Windows users change a running user,
// so just use current one if config says default.
if setting.IsWindows && setting.RunUser == "git" {
form.RunUser = os.Getenv("USER")
if len(form.RunUser) == 0 {
form.RunUser = os.Getenv("USERNAME")
2014-11-24 15:54:08 +01:00
}
} else {
form.RunUser = setting.RunUser
2014-04-10 20:37:43 +02:00
}
form.Domain = setting.Domain
form.HTTPPort = setting.HttpPort
form.AppUrl = setting.AppUrl
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) {
ctx.Data["CurDbOption"] = form.DbType
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(ctx.Tr("install.test_git_failed", err), 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.DbType]
models.DbCfg.Host = form.DbHost
models.DbCfg.User = form.DbUser
models.DbCfg.Passwd = form.DbPasswd
models.DbCfg.Name = form.DbName
models.DbCfg.SSLMode = form.SSLMode
models.DbCfg.Path = form.DbPath
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 {
2014-03-30 17:09:59 +02:00
if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
2014-11-10 11:30:07 +01:00
ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "http://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &form)
2014-03-30 15:39:44 +02:00
} else {
ctx.RenderWithErr(ctx.Tr("install.invalid_db_setting", err), 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 {
2014-09-15 01:22:52 +02:00
ctx.Data["Err_RepoRootPath"] = true
ctx.RenderWithErr(ctx.Tr("install.invalid_repo_path", err), 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
}
if form.RunUser != curUser {
2014-09-15 01:22:52 +02:00
ctx.Data["Err_RunUser"] = true
ctx.RenderWithErr(ctx.Tr("install.run_user_not_match", form.RunUser, curUser), INSTALL, &form)
return
}
// Check admin password.
if form.AdminPasswd != form.AdminConfirmPasswd {
2014-09-15 01:22:52 +02:00
ctx.Data["Err_AdminPasswd"] = true
ctx.RenderWithErr(ctx.Tr("form.password_not_match"), INSTALL, form)
2014-03-30 17:58:21 +02:00
return
}
if form.AppUrl[len(form.AppUrl)-1] != '/' {
form.AppUrl += "/"
}
// Save settings.
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("database").Key("DB_TYPE").SetValue(models.DbCfg.Type)
setting.Cfg.Section("database").Key("HOST").SetValue(models.DbCfg.Host)
setting.Cfg.Section("database").Key("NAME").SetValue(models.DbCfg.Name)
setting.Cfg.Section("database").Key("USER").SetValue(models.DbCfg.User)
setting.Cfg.Section("database").Key("PASSWD").SetValue(models.DbCfg.Passwd)
setting.Cfg.Section("database").Key("SSL_MODE").SetValue(models.DbCfg.SSLMode)
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("database").Key("PATH").SetValue(models.DbCfg.Path)
setting.Cfg.Section("repository").Key("ROOT").SetValue(form.RepoRootPath)
setting.Cfg.Section("").Key("RUN_USER").SetValue(form.RunUser)
setting.Cfg.Section("server").Key("DOMAIN").SetValue(form.Domain)
setting.Cfg.Section("server").Key("HTTP_PORT").SetValue(form.HTTPPort)
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("server").Key("ROOT_URL").SetValue(form.AppUrl)
if len(strings.TrimSpace(form.SMTPHost)) > 0 {
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("mailer").Key("ENABLED").SetValue("true")
setting.Cfg.Section("mailer").Key("HOST").SetValue(form.SMTPHost)
setting.Cfg.Section("mailer").Key("USER").SetValue(form.SMTPEmail)
setting.Cfg.Section("mailer").Key("PASSWD").SetValue(form.SMTPPasswd)
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").SetValue(com.ToStr(form.RegisterConfirm == "on"))
setting.Cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").SetValue(com.ToStr(form.MailNotify == "on"))
}
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("").Key("RUN_MODE").SetValue("prod")
2014-03-30 17:58:21 +02:00
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("session").Key("PROVIDER").SetValue("file")
2014-12-21 04:51:16 +01:00
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("log").Key("MODE").SetValue("file")
2014-08-27 10:39:36 +02:00
2014-12-31 11:37:29 +01:00
setting.Cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")
setting.Cfg.Section("security").Key("SECRET_KEY").SetValue(base.GetRandomString(15))
2014-03-30 17:58:21 +02:00
os.MkdirAll("custom/conf", os.ModePerm)
2014-12-31 11:37:29 +01:00
if err := setting.Cfg.SaveTo(path.Join(setting.CustomPath, "conf/app.ini")); err != nil {
ctx.RenderWithErr(ctx.Tr("install.save_config_failed", err), 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
2014-09-15 01:22:52 +02:00
ctx.Data["Err_AdminName"] = true
ctx.Data["Err_AdminEmail"] = true
ctx.RenderWithErr(ctx.Tr("install.invalid_admin_setting", err), 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!")
ctx.Flash.Success(ctx.Tr("install.install_success"))
ctx.Redirect(form.AppUrl + "user/login")
2014-03-25 09:51:42 +01:00
}