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