2021-06-09 01:33:54 +02:00
|
|
|
// Copyright 2021 The Gitea 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 install
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/svg"
|
|
|
|
"code.gitea.io/gitea/modules/translation"
|
|
|
|
"code.gitea.io/gitea/routers/common"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PreloadSettings preloads the configuration to check if we need to run install
|
|
|
|
func PreloadSettings(ctx context.Context) bool {
|
2021-12-01 08:50:01 +01:00
|
|
|
setting.LoadAllowEmpty()
|
2021-06-09 01:33:54 +02:00
|
|
|
if !setting.InstallLock {
|
2021-06-27 02:56:58 +02:00
|
|
|
log.Info("AppPath: %s", setting.AppPath)
|
|
|
|
log.Info("AppWorkPath: %s", setting.AppWorkPath)
|
|
|
|
log.Info("Custom path: %s", setting.CustomPath)
|
|
|
|
log.Info("Log path: %s", setting.LogRootPath)
|
2021-09-14 03:24:57 +02:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2021-12-01 08:50:01 +01:00
|
|
|
log.Info("Prepare to run install page")
|
2022-08-28 11:43:25 +02:00
|
|
|
translation.InitLocales(ctx)
|
2021-06-09 01:33:54 +02:00
|
|
|
if setting.EnableSQLite3 {
|
2021-12-01 08:50:01 +01:00
|
|
|
log.Info("SQLite3 is supported")
|
2021-06-09 01:33:54 +02:00
|
|
|
}
|
|
|
|
setting.InitDBConfig()
|
2021-06-17 01:32:57 +02:00
|
|
|
setting.NewServicesForInstall()
|
2021-06-09 01:33:54 +02:00
|
|
|
svg.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
return !setting.InstallLock
|
|
|
|
}
|
|
|
|
|
2021-12-01 08:50:01 +01:00
|
|
|
// reloadSettings reloads the existing settings and starts up the database
|
|
|
|
func reloadSettings(ctx context.Context) {
|
|
|
|
setting.LoadFromExisting()
|
2021-06-09 01:33:54 +02:00
|
|
|
setting.InitDBConfig()
|
|
|
|
if setting.InstallLock {
|
|
|
|
if err := common.InitDBEngine(ctx); err == nil {
|
|
|
|
log.Info("ORM engine initialization successful!")
|
|
|
|
} else {
|
|
|
|
log.Fatal("ORM engine initialization failed: %v", err)
|
|
|
|
}
|
|
|
|
svg.Init()
|
|
|
|
}
|
|
|
|
}
|