2016-11-24 08:40:16 +01: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 (
"strings"
2019-01-19 22:17:08 +01:00
"time"
2016-11-24 08:40:16 +01:00
"code.gitea.io/gitea/models"
2017-07-02 15:50:57 +02:00
"code.gitea.io/gitea/models/migrations"
2017-10-26 03:37:33 +02:00
"code.gitea.io/gitea/modules/cache"
2016-11-24 08:40:16 +01:00
"code.gitea.io/gitea/modules/cron"
2019-03-27 10:33:00 +01:00
"code.gitea.io/gitea/modules/git"
2016-12-06 18:58:31 +01:00
"code.gitea.io/gitea/modules/highlight"
2019-02-21 01:54:05 +01:00
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
2016-11-24 08:40:16 +01:00
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/mailer"
2017-09-16 19:17:57 +02:00
"code.gitea.io/gitea/modules/markup"
2019-05-25 19:15:39 +02:00
"code.gitea.io/gitea/modules/markup/external"
2016-11-24 08:40:16 +01:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/ssh"
2017-10-26 03:37:33 +02:00
2016-11-24 08:40:16 +01:00
macaron "gopkg.in/macaron.v1"
)
func checkRunMode ( ) {
switch setting . Cfg . Section ( "" ) . Key ( "RUN_MODE" ) . String ( ) {
case "prod" :
macaron . Env = macaron . PROD
macaron . ColorLog = false
setting . ProdMode = true
default :
git . Debug = true
}
log . Info ( "Run Mode: %s" , strings . Title ( macaron . Env ) )
}
// NewServices init new services
func NewServices ( ) {
setting . NewServices ( )
mailer . NewContext ( )
2017-10-26 03:37:33 +02:00
cache . NewContext ( )
2016-11-24 08:40:16 +01:00
}
2019-01-19 22:17:08 +01:00
// In case of problems connecting to DB, retry connection. Eg, PGSQL in Docker Container on Synology
func initDBEngine ( ) ( err error ) {
log . Info ( "Beginning ORM engine initialization." )
for i := 0 ; i < setting . DBConnectRetries ; i ++ {
log . Info ( "ORM engine initialization attempt #%d/%d..." , i + 1 , setting . DBConnectRetries )
2019-01-20 10:30:37 +01:00
if err = models . NewEngine ( migrations . Migrate ) ; err == nil {
2019-01-19 22:17:08 +01:00
break
} else if i == setting . DBConnectRetries - 1 {
return err
}
log . Debug ( "ORM engine initialization attempt #%d/%d failed. Error: %v" , i + 1 , setting . DBConnectRetries , err )
log . Info ( "Backing off for %d seconds" , int64 ( setting . DBConnectBackoff / time . Second ) )
time . Sleep ( setting . DBConnectBackoff )
}
models . HasEngine = true
return nil
}
2016-11-24 08:40:16 +01:00
// GlobalInit is for global configuration reload-able.
func GlobalInit ( ) {
setting . NewContext ( )
2018-12-19 02:17:43 +01:00
setting . CheckLFSVersion ( )
2017-11-03 09:56:20 +01:00
log . Trace ( "AppPath: %s" , setting . AppPath )
log . Trace ( "AppWorkPath: %s" , setting . AppWorkPath )
2016-11-24 08:40:16 +01:00
log . Trace ( "Custom path: %s" , setting . CustomPath )
log . Trace ( "Log path: %s" , setting . LogRootPath )
models . LoadConfigs ( )
NewServices ( )
if setting . InstallLock {
highlight . NewContext ( )
2019-05-25 19:15:39 +02:00
external . RegisterParsers ( )
2017-09-16 19:17:57 +02:00
markup . Init ( )
2019-01-19 22:17:08 +01:00
if err := initDBEngine ( ) ; err == nil {
log . Info ( "ORM engine initialization successful!" )
} else {
2019-04-02 09:48:31 +02:00
log . Fatal ( "ORM engine initialization failed: %v" , err )
2016-11-24 08:40:16 +01:00
}
2019-01-19 22:17:08 +01:00
2018-04-29 08:09:24 +02:00
if err := models . InitOAuth2 ( ) ; err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Failed to initialize OAuth2 support: %v" , err )
2018-04-29 08:09:24 +02:00
}
2016-11-24 08:40:16 +01:00
models . NewRepoContext ( )
// Booting long running goroutines.
cron . NewContext ( )
2019-02-21 01:54:05 +01:00
if err := issue_indexer . InitIssueIndexer ( false ) ; err != nil {
2019-04-02 09:48:31 +02:00
log . Fatal ( "Failed to initialize issue indexer: %v" , err )
2019-02-19 15:39:39 +01:00
}
2017-10-27 08:10:54 +02:00
models . InitRepoIndexer ( )
2016-11-24 08:40:16 +01:00
models . InitSyncMirrors ( )
models . InitDeliverHooks ( )
models . InitTestPullRequests ( )
}
if models . EnableSQLite3 {
log . Info ( "SQLite3 Supported" )
}
if models . EnableTiDB {
log . Info ( "TiDB Supported" )
}
checkRunMode ( )
if setting . InstallLock && setting . SSH . StartBuiltinServer {
2017-11-02 16:26:41 +01:00
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 )
2016-11-24 08:40:16 +01:00
}
}