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 (
"path"
"strings"
"code.gitea.io/git"
"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"
2016-12-06 18:58:31 +01:00
"code.gitea.io/gitea/modules/highlight"
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"
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
}
// GlobalInit is for global configuration reload-able.
func GlobalInit ( ) {
setting . NewContext ( )
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 ( )
2017-09-16 19:17:57 +02:00
markup . Init ( )
2017-07-02 15:50:57 +02:00
if err := models . NewEngine ( migrations . Migrate ) ; err != nil {
2017-01-29 21:13:57 +01:00
log . Fatal ( 4 , "Failed to initialize ORM engine: %v" , err )
2016-11-24 08:40:16 +01:00
}
models . HasEngine = true
2018-04-29 08:09:24 +02:00
if err := models . InitOAuth2 ( ) ; err != nil {
log . Fatal ( 4 , "Failed to initialize OAuth2 support: %v" , err )
}
2016-11-24 08:40:16 +01:00
models . LoadRepoConfig ( )
models . NewRepoContext ( )
// Booting long running goroutines.
cron . NewContext ( )
2017-09-16 22:16:21 +02:00
models . InitIssueIndexer ( )
2017-10-27 08:10:54 +02:00
models . InitRepoIndexer ( )
2016-11-24 08:40:16 +01:00
models . InitSyncMirrors ( )
models . InitDeliverHooks ( )
models . InitTestPullRequests ( )
log . NewGitLogger ( path . Join ( setting . LogRootPath , "http.log" ) )
}
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
}
}