2016-11-24 07:40:16 +00:00
// Copyright 2016 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 routers
import (
2019-12-15 09:51:28 +00:00
"context"
2019-12-20 05:39:33 +00:00
"fmt"
2016-11-24 07:40:16 +00:00
"strings"
2019-01-19 21:17:08 +00:00
"time"
2016-11-24 07:40:16 +00:00
"code.gitea.io/gitea/models"
2017-07-02 13:50:57 +00:00
"code.gitea.io/gitea/models/migrations"
2019-11-22 23:33:31 +00:00
"code.gitea.io/gitea/modules/auth/sso"
2017-10-26 01:37:33 +00:00
"code.gitea.io/gitea/modules/cache"
2016-11-24 07:40:16 +00:00
"code.gitea.io/gitea/modules/cron"
2020-05-07 21:49:00 +00:00
"code.gitea.io/gitea/modules/eventsource"
2019-03-27 09:33:00 +00:00
"code.gitea.io/gitea/modules/git"
2016-12-06 17:58:31 +00:00
"code.gitea.io/gitea/modules/highlight"
2019-12-08 19:15:35 +00:00
code_indexer "code.gitea.io/gitea/modules/indexer/code"
2019-02-21 00:54:05 +00:00
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
2020-02-11 09:34:17 +00:00
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
2016-11-24 07:40:16 +00:00
"code.gitea.io/gitea/modules/log"
2017-09-16 17:17:57 +00:00
"code.gitea.io/gitea/modules/markup"
2019-05-25 17:15:39 +00:00
"code.gitea.io/gitea/modules/markup/external"
2020-11-29 00:37:58 +00:00
repo_migrations "code.gitea.io/gitea/modules/migrations"
2019-10-25 14:46:37 +00:00
"code.gitea.io/gitea/modules/notification"
2016-11-24 07:40:16 +00:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/ssh"
2020-08-18 04:23:45 +00:00
"code.gitea.io/gitea/modules/storage"
2020-07-12 09:10:56 +00:00
"code.gitea.io/gitea/modules/svg"
2019-10-13 13:23:14 +00:00
"code.gitea.io/gitea/modules/task"
2021-01-05 13:05:40 +00:00
"code.gitea.io/gitea/modules/translation"
2019-09-24 05:02:49 +00:00
"code.gitea.io/gitea/services/mailer"
2019-10-01 13:40:17 +00:00
mirror_service "code.gitea.io/gitea/services/mirror"
2019-12-07 02:44:10 +00:00
pull_service "code.gitea.io/gitea/services/pull"
2020-09-11 14:14:48 +00:00
"code.gitea.io/gitea/services/repository"
2020-12-08 10:41:14 +00:00
"code.gitea.io/gitea/services/webhook"
2016-11-24 07:40:16 +00:00
)
func checkRunMode ( ) {
2020-12-01 01:54:44 +00:00
switch setting . RunMode {
2021-01-26 15:36:53 +00:00
case "dev" , "test" :
2020-12-01 01:54:44 +00:00
git . Debug = true
default :
2021-01-14 21:17:03 +00:00
git . Debug = false
2016-11-24 07:40:16 +00:00
}
2021-01-26 15:36:53 +00:00
log . Info ( "Run Mode: %s" , strings . Title ( setting . RunMode ) )
2016-11-24 07:40:16 +00:00
}
// NewServices init new services
func NewServices ( ) {
setting . NewServices ( )
2020-08-18 04:23:45 +00:00
if err := storage . Init ( ) ; err != nil {
log . Fatal ( "storage init failed: %v" , err )
}
2020-09-11 14:14:48 +00:00
if err := repository . NewContext ( ) ; err != nil {
log . Fatal ( "repository init failed: %v" , err )
}
2016-11-24 07:40:16 +00:00
mailer . NewContext ( )
2019-06-12 19:41:28 +00:00
_ = cache . NewContext ( )
2019-10-25 14:46:37 +00:00
notification . NewContext ( )
2016-11-24 07:40:16 +00:00
}
2019-01-19 21:17:08 +00:00
// In case of problems connecting to DB, retry connection. Eg, PGSQL in Docker Container on Synology
2019-12-15 09:51:28 +00:00
func initDBEngine ( ctx context . Context ) ( err error ) {
2019-01-19 21:17:08 +00:00
log . Info ( "Beginning ORM engine initialization." )
2019-08-24 09:24:45 +00:00
for i := 0 ; i < setting . Database . DBConnectRetries ; i ++ {
2019-12-20 05:39:33 +00:00
select {
case <- ctx . Done ( ) :
return fmt . Errorf ( "Aborted due to shutdown:\nin retry ORM engine initialization" )
default :
}
2019-08-24 09:24:45 +00:00
log . Info ( "ORM engine initialization attempt #%d/%d..." , i + 1 , setting . Database . DBConnectRetries )
2019-12-15 09:51:28 +00:00
if err = models . NewEngine ( ctx , migrations . Migrate ) ; err == nil {
2019-01-19 21:17:08 +00:00
break
2019-08-24 09:24:45 +00:00
} else if i == setting . Database . DBConnectRetries - 1 {
2019-01-19 21:17:08 +00:00
return err
}
2019-08-24 09:24:45 +00:00
log . Error ( "ORM engine initialization attempt #%d/%d failed. Error: %v" , i + 1 , setting . Database . DBConnectRetries , err )
log . Info ( "Backing off for %d seconds" , int64 ( setting . Database . DBConnectBackoff / time . Second ) )
time . Sleep ( setting . Database . DBConnectBackoff )
2019-01-19 21:17:08 +00:00
}
models . HasEngine = true
return nil
}
2020-10-19 21:03:08 +00:00
// PreInstallInit preloads the configuration to check if we need to run install
func PreInstallInit ( ctx context . Context ) bool {
setting . NewContext ( )
if ! setting . InstallLock {
log . Trace ( "AppPath: %s" , setting . AppPath )
log . Trace ( "AppWorkPath: %s" , setting . AppWorkPath )
log . Trace ( "Custom path: %s" , setting . CustomPath )
log . Trace ( "Log path: %s" , setting . LogRootPath )
log . Trace ( "Preparing to run install page" )
2021-01-05 13:05:40 +00:00
translation . InitLocales ( )
2020-10-19 21:03:08 +00:00
if setting . EnableSQLite3 {
log . Info ( "SQLite3 Supported" )
}
setting . InitDBConfig ( )
svg . Init ( )
}
return ! setting . InstallLock
}
// PostInstallInit rereads the settings and starts up the database
func PostInstallInit ( ctx context . Context ) {
setting . NewContext ( )
setting . InitDBConfig ( )
if setting . InstallLock {
if err := initDBEngine ( ctx ) ; err == nil {
log . Info ( "ORM engine initialization successful!" )
} else {
log . Fatal ( "ORM engine initialization failed: %v" , err )
}
svg . Init ( )
}
}
2016-11-24 07:40:16 +00:00
// GlobalInit is for global configuration reload-able.
2019-12-15 09:51:28 +00:00
func GlobalInit ( ctx context . Context ) {
2016-11-24 07:40:16 +00:00
setting . NewContext ( )
2020-10-19 21:03:08 +00:00
if ! setting . InstallLock {
log . Fatal ( "Gitea is not installed" )
}
2021-01-27 03:57:18 +00:00
2019-12-15 09:51:28 +00:00
if err := git . Init ( ctx ) ; err != nil {
2019-06-19 16:53:37 +00:00
log . Fatal ( "Git module init failed: %v" , err )
}
2018-12-19 01:17:43 +00:00
setting . CheckLFSVersion ( )
2017-11-03 08:56:20 +00:00
log . Trace ( "AppPath: %s" , setting . AppPath )
log . Trace ( "AppWorkPath: %s" , setting . AppWorkPath )
2016-11-24 07:40:16 +00:00
log . Trace ( "Custom path: %s" , setting . CustomPath )
log . Trace ( "Log path: %s" , setting . LogRootPath )
2021-01-27 03:57:18 +00:00
checkRunMode ( )
2019-08-24 09:24:45 +00:00
2020-05-16 23:31:38 +00:00
// Setup i18n
2021-01-05 13:05:40 +00:00
translation . InitLocales ( )
2020-05-16 23:31:38 +00:00
2016-11-24 07:40:16 +00:00
NewServices ( )
2020-10-19 21:03:08 +00:00
highlight . NewContext ( )
external . RegisterParsers ( )
markup . Init ( )
2021-01-27 03:57:18 +00:00
if setting . EnableSQLite3 {
log . Info ( "SQLite3 Supported" )
} else if setting . Database . UseSQLite3 {
log . Fatal ( "SQLite3 is set in settings but NOT Supported" )
}
2020-10-19 21:03:08 +00:00
if err := initDBEngine ( ctx ) ; err == nil {
log . Info ( "ORM engine initialization successful!" )
} else {
log . Fatal ( "ORM engine initialization failed: %v" , err )
}
2019-01-19 21:17:08 +00:00
2020-10-19 21:03:08 +00:00
if err := models . InitOAuth2 ( ) ; err != nil {
log . Fatal ( "Failed to initialize OAuth2 support: %v" , err )
}
2016-11-24 07:40:16 +00:00
2020-10-19 21:03:08 +00:00
models . NewRepoContext ( )
2016-11-24 07:40:16 +00:00
2020-10-19 21:03:08 +00:00
// Booting long running goroutines.
cron . NewContext ( )
issue_indexer . InitIssueIndexer ( false )
code_indexer . Init ( )
if err := stats_indexer . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize repository stats indexer queue: %v" , err )
2016-11-24 07:40:16 +00:00
}
2020-10-19 21:03:08 +00:00
mirror_service . InitSyncMirrors ( )
webhook . InitDeliverHooks ( )
if err := pull_service . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize test pull requests queue: %v" , err )
}
if err := task . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize task scheduler: %v" , err )
}
2020-11-29 00:37:58 +00:00
if err := repo_migrations . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize repository migrations: %v" , err )
}
2020-10-19 21:03:08 +00:00
eventsource . GetManager ( ) . Init ( )
if setting . SSH . StartBuiltinServer {
ssh . Listen ( setting . SSH . ListenHost , setting . SSH . ListenPort , setting . SSH . ServerCiphers , setting . SSH . ServerKeyExchanges , setting . SSH . ServerMACs )
log . Info ( "SSH server started on %s:%d. Cipher list (%v), key exchange algorithms (%v), MACs (%v)" , setting . SSH . ListenHost , setting . SSH . ListenPort , setting . SSH . ServerCiphers , setting . SSH . ServerKeyExchanges , setting . SSH . ServerMACs )
} else {
ssh . Unused ( )
2019-11-22 23:33:31 +00:00
}
2020-10-19 21:03:08 +00:00
sso . Init ( )
2020-07-12 09:10:56 +00:00
svg . Init ( )
2016-11-24 07:40:16 +00:00
}