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 (
2019-12-15 10:51:28 +01:00
"context"
2016-11-24 08:40:16 +01:00
"strings"
"code.gitea.io/gitea/models"
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"
2020-05-07 23:49:00 +02:00
"code.gitea.io/gitea/modules/eventsource"
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-12-08 20:15:35 +01:00
code_indexer "code.gitea.io/gitea/modules/indexer/code"
2019-02-21 01:54:05 +01:00
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
2020-02-11 10:34:17 +01:00
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
2016-11-24 08:40:16 +01:00
"code.gitea.io/gitea/modules/log"
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"
2020-11-29 01:37:58 +01:00
repo_migrations "code.gitea.io/gitea/modules/migrations"
2019-10-25 16:46:37 +02:00
"code.gitea.io/gitea/modules/notification"
2016-11-24 08:40:16 +01:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/ssh"
2020-08-18 06:23:45 +02:00
"code.gitea.io/gitea/modules/storage"
2020-07-12 11:10:56 +02:00
"code.gitea.io/gitea/modules/svg"
2019-10-13 15:23:14 +02:00
"code.gitea.io/gitea/modules/task"
2021-01-05 14:05:40 +01:00
"code.gitea.io/gitea/modules/translation"
2021-06-09 01:33:54 +02:00
"code.gitea.io/gitea/modules/web"
apiv1 "code.gitea.io/gitea/routers/api/v1"
"code.gitea.io/gitea/routers/common"
"code.gitea.io/gitea/routers/private"
web_routers "code.gitea.io/gitea/routers/web"
2021-06-23 23:12:38 +02:00
"code.gitea.io/gitea/services/archiver"
2021-06-09 19:53:16 +02:00
"code.gitea.io/gitea/services/auth"
2019-09-24 07:02:49 +02:00
"code.gitea.io/gitea/services/mailer"
2019-10-01 15:40:17 +02:00
mirror_service "code.gitea.io/gitea/services/mirror"
2019-12-07 03:44:10 +01:00
pull_service "code.gitea.io/gitea/services/pull"
2020-09-11 16:14:48 +02:00
"code.gitea.io/gitea/services/repository"
2020-12-08 11:41:14 +01:00
"code.gitea.io/gitea/services/webhook"
2016-11-24 08:40:16 +01:00
)
// NewServices init new services
func NewServices ( ) {
setting . NewServices ( )
2020-08-18 06:23:45 +02:00
if err := storage . Init ( ) ; err != nil {
log . Fatal ( "storage init failed: %v" , err )
}
2020-09-11 16:14:48 +02:00
if err := repository . NewContext ( ) ; err != nil {
log . Fatal ( "repository init failed: %v" , err )
}
2016-11-24 08:40:16 +01:00
mailer . NewContext ( )
2019-06-12 21:41:28 +02:00
_ = cache . NewContext ( )
2019-10-25 16:46:37 +02:00
notification . NewContext ( )
2021-06-23 23:12:38 +02:00
if err := archiver . Init ( ) ; err != nil {
log . Fatal ( "archiver init failed: %v" , err )
}
2016-11-24 08:40:16 +01:00
}
// GlobalInit is for global configuration reload-able.
2019-12-15 10:51:28 +01:00
func GlobalInit ( ctx context . Context ) {
2016-11-24 08:40:16 +01:00
setting . NewContext ( )
2020-10-19 23:03:08 +02:00
if ! setting . InstallLock {
log . Fatal ( "Gitea is not installed" )
}
2021-01-27 04:57:18 +01:00
2019-12-15 10:51:28 +01:00
if err := git . Init ( ctx ) ; err != nil {
2019-06-19 18:53:37 +02:00
log . Fatal ( "Git module init failed: %v" , err )
}
2021-06-26 13:28:55 +02:00
log . Info ( git . VersionInfo ( ) )
git . CheckLFSVersion ( )
2021-06-27 02:56:58 +02:00
log . Info ( "AppPath: %s" , setting . AppPath )
log . Info ( "AppWorkPath: %s" , setting . AppWorkPath )
log . Info ( "Custom path: %s" , setting . CustomPath )
log . Info ( "Log path: %s" , setting . LogRootPath )
2021-06-25 18:54:08 +02:00
log . Info ( "Run Mode: %s" , strings . Title ( setting . RunMode ) )
2019-08-24 11:24:45 +02:00
2020-05-17 01:31:38 +02:00
// Setup i18n
2021-01-05 14:05:40 +01:00
translation . InitLocales ( )
2020-05-17 01:31:38 +02:00
2016-11-24 08:40:16 +01:00
NewServices ( )
2020-10-19 23:03:08 +02:00
highlight . NewContext ( )
2021-04-20 00:25:08 +02:00
external . RegisterRenderers ( )
2020-10-19 23:03:08 +02:00
markup . Init ( )
2021-01-27 04:57:18 +01:00
if setting . EnableSQLite3 {
log . Info ( "SQLite3 Supported" )
} else if setting . Database . UseSQLite3 {
log . Fatal ( "SQLite3 is set in settings but NOT Supported" )
}
2021-06-09 01:33:54 +02:00
if err := common . InitDBEngine ( ctx ) ; err == nil {
2020-10-19 23:03:08 +02:00
log . Info ( "ORM engine initialization successful!" )
} else {
log . Fatal ( "ORM engine initialization failed: %v" , err )
}
2019-01-19 22:17:08 +01:00
2020-10-19 23:03:08 +02:00
if err := models . InitOAuth2 ( ) ; err != nil {
log . Fatal ( "Failed to initialize OAuth2 support: %v" , err )
}
2016-11-24 08:40:16 +01:00
2020-10-19 23:03:08 +02:00
models . NewRepoContext ( )
2016-11-24 08:40:16 +01:00
2020-10-19 23:03:08 +02: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 08:40:16 +01:00
}
2020-10-19 23:03:08 +02: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 01:37:58 +01:00
if err := repo_migrations . Init ( ) ; err != nil {
log . Fatal ( "Failed to initialize repository migrations: %v" , err )
}
2020-10-19 23:03:08 +02: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-23 00:33:31 +01:00
}
2021-06-09 19:53:16 +02:00
auth . Init ( )
2020-07-12 11:10:56 +02:00
svg . Init ( )
2016-11-24 08:40:16 +01:00
}
2021-06-09 01:33:54 +02:00
// NormalRoutes represents non install routes
func NormalRoutes ( ) * web . Route {
r := web . NewRoute ( )
for _ , middle := range common . Middlewares ( ) {
r . Use ( middle )
}
r . Mount ( "/" , web_routers . Routes ( ) )
r . Mount ( "/api/v1" , apiv1 . Routes ( ) )
r . Mount ( "/api/internal" , private . Routes ( ) )
return r
}