2016-11-24 13:10:16 +05:30
// 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 15:21:28 +05:30
"context"
2019-12-20 11:09:33 +05:30
"fmt"
2016-11-24 13:10:16 +05:30
"strings"
2019-01-20 02:47:08 +05:30
"time"
2016-11-24 13:10:16 +05:30
"code.gitea.io/gitea/models"
2017-07-02 19:20:57 +05:30
"code.gitea.io/gitea/models/migrations"
2019-11-23 05:03:31 +05:30
"code.gitea.io/gitea/modules/auth/sso"
2017-10-26 07:07:33 +05:30
"code.gitea.io/gitea/modules/cache"
2016-11-24 13:10:16 +05:30
"code.gitea.io/gitea/modules/cron"
2020-05-08 03:19:00 +05:30
"code.gitea.io/gitea/modules/eventsource"
2019-03-27 15:03:00 +05:30
"code.gitea.io/gitea/modules/git"
2016-12-06 23:28:31 +05:30
"code.gitea.io/gitea/modules/highlight"
2019-12-09 00:45:35 +05:30
code_indexer "code.gitea.io/gitea/modules/indexer/code"
2019-02-21 06:24:05 +05:30
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
2020-02-11 15:04:17 +05:30
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
2016-11-24 13:10:16 +05:30
"code.gitea.io/gitea/modules/log"
2017-09-16 22:47:57 +05:30
"code.gitea.io/gitea/modules/markup"
2019-05-25 22:45:39 +05:30
"code.gitea.io/gitea/modules/markup/external"
2019-10-25 20:16:37 +05:30
"code.gitea.io/gitea/modules/notification"
2020-05-17 05:01:38 +05:30
"code.gitea.io/gitea/modules/options"
2016-11-24 13:10:16 +05:30
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/ssh"
2020-08-18 09:53:45 +05:30
"code.gitea.io/gitea/modules/storage"
2020-07-12 14:40:56 +05:30
"code.gitea.io/gitea/modules/svg"
2019-10-13 18:53:14 +05:30
"code.gitea.io/gitea/modules/task"
2019-11-02 04:21:22 +05:30
"code.gitea.io/gitea/modules/webhook"
2019-09-24 10:32:49 +05:30
"code.gitea.io/gitea/services/mailer"
2019-10-01 19:10:17 +05:30
mirror_service "code.gitea.io/gitea/services/mirror"
2019-12-07 08:14:10 +05:30
pull_service "code.gitea.io/gitea/services/pull"
2017-10-26 07:07:33 +05:30
2020-05-17 05:01:38 +05:30
"gitea.com/macaron/i18n"
2019-08-23 22:10:30 +05:30
"gitea.com/macaron/macaron"
2016-11-24 13:10:16 +05:30
)
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 ( )
2020-08-18 09:53:45 +05:30
if err := storage . Init ( ) ; err != nil {
log . Fatal ( "storage init failed: %v" , err )
}
2016-11-24 13:10:16 +05:30
mailer . NewContext ( )
2019-06-13 01:11:28 +05:30
_ = cache . NewContext ( )
2019-10-25 20:16:37 +05:30
notification . NewContext ( )
2016-11-24 13:10:16 +05:30
}
2019-01-20 02:47:08 +05:30
// In case of problems connecting to DB, retry connection. Eg, PGSQL in Docker Container on Synology
2019-12-15 15:21:28 +05:30
func initDBEngine ( ctx context . Context ) ( err error ) {
2019-01-20 02:47:08 +05:30
log . Info ( "Beginning ORM engine initialization." )
2019-08-24 14:54:45 +05:30
for i := 0 ; i < setting . Database . DBConnectRetries ; i ++ {
2019-12-20 11:09:33 +05:30
select {
case <- ctx . Done ( ) :
return fmt . Errorf ( "Aborted due to shutdown:\nin retry ORM engine initialization" )
default :
}
2019-08-24 14:54:45 +05:30
log . Info ( "ORM engine initialization attempt #%d/%d..." , i + 1 , setting . Database . DBConnectRetries )
2019-12-15 15:21:28 +05:30
if err = models . NewEngine ( ctx , migrations . Migrate ) ; err == nil {
2019-01-20 02:47:08 +05:30
break
2019-08-24 14:54:45 +05:30
} else if i == setting . Database . DBConnectRetries - 1 {
2019-01-20 02:47:08 +05:30
return err
}
2019-08-24 14:54:45 +05:30
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-20 02:47:08 +05:30
}
models . HasEngine = true
return nil
}
2020-05-17 05:01:38 +05:30
// InitLocales loads the locales
func InitLocales ( ) {
localeNames , err := options . Dir ( "locale" )
if err != nil {
log . Fatal ( "Failed to list locale files: %v" , err )
}
localFiles := make ( map [ string ] [ ] byte )
for _ , name := range localeNames {
localFiles [ name ] , err = options . Locale ( name )
if err != nil {
log . Fatal ( "Failed to load %s locale file. %v" , name , err )
}
}
i18n . I18n ( i18n . Options {
SubURL : setting . AppSubURL ,
Files : localFiles ,
Langs : setting . Langs ,
Names : setting . Names ,
DefaultLang : "en-US" ,
Redirect : false ,
CookieDomain : setting . SessionConfig . Domain ,
} )
}
2016-11-24 13:10:16 +05:30
// GlobalInit is for global configuration reload-able.
2019-12-15 15:21:28 +05:30
func GlobalInit ( ctx context . Context ) {
2016-11-24 13:10:16 +05:30
setting . NewContext ( )
2019-12-15 15:21:28 +05:30
if err := git . Init ( ctx ) ; err != nil {
2019-06-19 22:23:37 +05:30
log . Fatal ( "Git module init failed: %v" , err )
}
2018-12-19 06:47:43 +05:30
setting . CheckLFSVersion ( )
2017-11-03 14:26:20 +05:30
log . Trace ( "AppPath: %s" , setting . AppPath )
log . Trace ( "AppWorkPath: %s" , setting . AppWorkPath )
2016-11-24 13:10:16 +05:30
log . Trace ( "Custom path: %s" , setting . CustomPath )
log . Trace ( "Log path: %s" , setting . LogRootPath )
2019-08-24 14:54:45 +05:30
2020-05-17 05:01:38 +05:30
// Setup i18n
InitLocales ( )
2016-11-24 13:10:16 +05:30
NewServices ( )
if setting . InstallLock {
highlight . NewContext ( )
2019-05-25 22:45:39 +05:30
external . RegisterParsers ( )
2017-09-16 22:47:57 +05:30
markup . Init ( )
2019-12-15 15:21:28 +05:30
if err := initDBEngine ( ctx ) ; err == nil {
2019-01-20 02:47:08 +05:30
log . Info ( "ORM engine initialization successful!" )
} else {
2019-04-02 13:18:31 +05:30
log . Fatal ( "ORM engine initialization failed: %v" , err )
2016-11-24 13:10:16 +05:30
}
2019-01-20 02:47:08 +05:30
2018-04-29 11:39:24 +05:30
if err := models . InitOAuth2 ( ) ; err != nil {
2019-04-02 13:18:31 +05:30
log . Fatal ( "Failed to initialize OAuth2 support: %v" , err )
2018-04-29 11:39:24 +05:30
}
2016-11-24 13:10:16 +05:30
models . NewRepoContext ( )
// Booting long running goroutines.
cron . NewContext ( )
2019-10-15 19:09:51 +05:30
issue_indexer . InitIssueIndexer ( false )
2019-12-23 18:01:16 +05:30
code_indexer . Init ( )
2020-02-11 15:04:17 +05:30
if err := stats_indexer . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize repository stats indexer queue: %v" , err )
}
2019-10-01 19:10:17 +05:30
mirror_service . InitSyncMirrors ( )
2019-11-02 04:21:22 +05:30
webhook . InitDeliverHooks ( )
2020-02-03 04:49:58 +05:30
if err := pull_service . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize test pull requests queue: %v" , err )
}
2019-10-13 18:53:14 +05:30
if err := task . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize task scheduler: %v" , err )
}
2020-05-08 03:19:00 +05:30
eventsource . GetManager ( ) . Init ( )
2016-11-24 13:10:16 +05:30
}
2019-08-24 14:54:45 +05:30
if setting . EnableSQLite3 {
2016-11-24 13:10:16 +05:30
log . Info ( "SQLite3 Supported" )
}
checkRunMode ( )
2019-10-15 19:09:51 +05:30
// Now because Install will re-run GlobalInit once it has set InstallLock
// we can't tell if the ssh port will remain unused until that's done.
// However, see FIXME comment in install.go
if setting . InstallLock {
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 ( )
}
2016-11-24 13:10:16 +05:30
}
2019-11-23 05:03:31 +05:30
if setting . InstallLock {
sso . Init ( )
}
2020-07-12 14:40:56 +05:30
svg . Init ( )
2016-11-24 13:10:16 +05:30
}