2021-06-09 05:03:54 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-09 05:03:54 +05:30
|
|
|
|
|
|
|
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 {
|
2023-05-04 09:25:35 +05:30
|
|
|
setting.Init(&setting.Options{
|
|
|
|
AllowEmpty: true,
|
|
|
|
})
|
2021-06-09 05:03:54 +05:30
|
|
|
if !setting.InstallLock {
|
2021-06-27 06:26:58 +05:30
|
|
|
log.Info("AppPath: %s", setting.AppPath)
|
|
|
|
log.Info("AppWorkPath: %s", setting.AppWorkPath)
|
|
|
|
log.Info("Custom path: %s", setting.CustomPath)
|
2023-02-19 21:42:01 +05:30
|
|
|
log.Info("Log path: %s", setting.Log.RootPath)
|
2021-09-14 06:54:57 +05:30
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2021-12-01 13:20:01 +05:30
|
|
|
log.Info("Prepare to run install page")
|
2022-08-28 15:13:25 +05:30
|
|
|
translation.InitLocales(ctx)
|
2021-06-09 05:03:54 +05:30
|
|
|
if setting.EnableSQLite3 {
|
2021-12-01 13:20:01 +05:30
|
|
|
log.Info("SQLite3 is supported")
|
2021-06-09 05:03:54 +05:30
|
|
|
}
|
2023-02-19 21:42:01 +05:30
|
|
|
|
|
|
|
setting.LoadSettingsForInstall()
|
2023-04-12 15:46:45 +05:30
|
|
|
_ = svg.Init()
|
2021-06-09 05:03:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return !setting.InstallLock
|
|
|
|
}
|
|
|
|
|
2021-12-01 13:20:01 +05:30
|
|
|
// reloadSettings reloads the existing settings and starts up the database
|
|
|
|
func reloadSettings(ctx context.Context) {
|
2023-05-04 09:25:35 +05:30
|
|
|
setting.Init(&setting.Options{})
|
2023-02-19 21:42:01 +05:30
|
|
|
setting.LoadDBSetting()
|
2021-06-09 05:03:54 +05:30
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|