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"
|
2021-11-06 07:23:32 +01:00
|
|
|
"net"
|
2021-10-21 11:22:43 +02:00
|
|
|
"reflect"
|
|
|
|
"runtime"
|
2021-11-06 07:23:32 +01:00
|
|
|
"strconv"
|
2016-11-24 08:40:16 +01:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-10-21 11:22:43 +02:00
|
|
|
"code.gitea.io/gitea/modules/appstate"
|
2017-10-26 03:37:33 +02:00
|
|
|
"code.gitea.io/gitea/modules/cache"
|
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"
|
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"
|
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-09 19:53:16 +02:00
|
|
|
"code.gitea.io/gitea/services/auth"
|
2021-07-24 12:16:34 +02:00
|
|
|
"code.gitea.io/gitea/services/auth/source/oauth2"
|
2021-11-16 14:30:11 +01:00
|
|
|
"code.gitea.io/gitea/services/cron"
|
2019-09-24 07:02:49 +02:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2021-11-16 16:25:33 +01:00
|
|
|
repo_migrations "code.gitea.io/gitea/services/migrations"
|
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"
|
2021-11-17 16:17:31 +01:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2021-12-06 08:19:28 +01:00
|
|
|
"code.gitea.io/gitea/services/repository/archiver"
|
2021-11-18 07:47:57 +01:00
|
|
|
"code.gitea.io/gitea/services/task"
|
2020-12-08 11:41:14 +01:00
|
|
|
"code.gitea.io/gitea/services/webhook"
|
2021-09-12 19:35:38 +02:00
|
|
|
|
|
|
|
"gitea.com/go-chi/session"
|
2016-11-24 08:40:16 +01:00
|
|
|
)
|
|
|
|
|
2021-10-21 11:22:43 +02:00
|
|
|
func mustInit(fn func() error) {
|
|
|
|
err := fn()
|
|
|
|
if err != nil {
|
|
|
|
ptr := reflect.ValueOf(fn).Pointer()
|
|
|
|
fi := runtime.FuncForPC(ptr)
|
|
|
|
log.Fatal("%s failed: %v", fi.Name(), err)
|
2020-08-18 06:23:45 +02:00
|
|
|
}
|
2021-10-21 11:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func mustInitCtx(ctx context.Context, fn func(ctx context.Context) error) {
|
|
|
|
err := fn(ctx)
|
|
|
|
if err != nil {
|
|
|
|
ptr := reflect.ValueOf(fn).Pointer()
|
|
|
|
fi := runtime.FuncForPC(ptr)
|
|
|
|
log.Fatal("%s(ctx) failed: %v", fi.Name(), err)
|
2020-09-11 16:14:48 +02:00
|
|
|
}
|
2021-10-21 11:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// InitGitServices init new services for git, this is also called in `contrib/pr/checkout.go`
|
|
|
|
func InitGitServices() {
|
|
|
|
setting.NewServices()
|
|
|
|
mustInit(storage.Init)
|
2021-11-17 16:17:31 +01:00
|
|
|
mustInit(repo_service.NewContext)
|
2021-10-21 11:22:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func syncAppPathForGit(ctx context.Context) error {
|
|
|
|
runtimeState := new(appstate.RuntimeState)
|
|
|
|
if err := appstate.AppState.Get(runtimeState); err != nil {
|
|
|
|
return err
|
2021-07-10 23:54:15 +02:00
|
|
|
}
|
2021-10-21 11:22:43 +02:00
|
|
|
if runtimeState.LastAppPath != setting.AppPath {
|
|
|
|
log.Info("AppPath changed from '%s' to '%s'", runtimeState.LastAppPath, setting.AppPath)
|
|
|
|
|
|
|
|
log.Info("re-sync repository hooks ...")
|
2021-11-17 16:17:31 +01:00
|
|
|
mustInitCtx(ctx, repo_service.SyncRepositoryHooks)
|
2021-10-21 11:22:43 +02:00
|
|
|
|
|
|
|
log.Info("re-write ssh public keys ...")
|
|
|
|
mustInit(models.RewriteAllPublicKeys)
|
|
|
|
|
|
|
|
runtimeState.LastAppPath = setting.AppPath
|
|
|
|
return appstate.AppState.Set(runtimeState)
|
2021-06-23 23:12:38 +02:00
|
|
|
}
|
2021-10-21 11:22:43 +02:00
|
|
|
return nil
|
2016-11-24 08:40:16 +01:00
|
|
|
}
|
|
|
|
|
2021-12-01 08:50:01 +01:00
|
|
|
// GlobalInitInstalled is for global installed configuration.
|
|
|
|
func GlobalInitInstalled(ctx context.Context) {
|
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
|
|
|
|
2021-10-21 11:22:43 +02:00
|
|
|
mustInitCtx(ctx, git.Init)
|
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-09-14 03:24:57 +02:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
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
|
|
|
|
2021-10-21 11:22:43 +02:00
|
|
|
InitGitServices()
|
|
|
|
mailer.NewContext()
|
|
|
|
mustInit(cache.NewContext)
|
|
|
|
notification.NewContext()
|
|
|
|
mustInit(archiver.Init)
|
2016-11-24 08:40:16 +01:00
|
|
|
|
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 {
|
2021-11-09 19:55:24 +01:00
|
|
|
log.Info("SQLite3 support is enabled")
|
2021-01-27 04:57:18 +01:00
|
|
|
} else if setting.Database.UseSQLite3 {
|
2021-11-09 19:55:24 +01:00
|
|
|
log.Fatal("SQLite3 support is disabled, but it is used for database setting. Please get or build a Gitea release with SQLite3 support.")
|
2021-01-27 04:57:18 +01:00
|
|
|
}
|
2019-01-19 22:17:08 +01:00
|
|
|
|
2021-10-21 11:22:43 +02:00
|
|
|
mustInitCtx(ctx, common.InitDBEngine)
|
|
|
|
log.Info("ORM engine initialization successful!")
|
|
|
|
mustInit(appstate.Init)
|
|
|
|
mustInit(oauth2.Init)
|
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()
|
2021-10-21 11:22:43 +02:00
|
|
|
mustInit(stats_indexer.Init)
|
|
|
|
|
2020-10-19 23:03:08 +02:00
|
|
|
mirror_service.InitSyncMirrors()
|
|
|
|
webhook.InitDeliverHooks()
|
2021-10-21 11:22:43 +02:00
|
|
|
mustInit(pull_service.Init)
|
|
|
|
mustInit(task.Init)
|
|
|
|
mustInit(repo_migrations.Init)
|
2020-10-19 23:03:08 +02:00
|
|
|
eventsource.GetManager().Init()
|
|
|
|
|
2021-10-21 11:22:43 +02:00
|
|
|
mustInitCtx(ctx, syncAppPathForGit)
|
|
|
|
|
2020-10-19 23:03:08 +02:00
|
|
|
if setting.SSH.StartBuiltinServer {
|
|
|
|
ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort, setting.SSH.ServerCiphers, setting.SSH.ServerKeyExchanges, setting.SSH.ServerMACs)
|
2021-11-06 07:23:32 +01:00
|
|
|
log.Info("SSH server started on %s. Cipher list (%v), key exchange algorithms (%v), MACs (%v)",
|
|
|
|
net.JoinHostPort(setting.SSH.ListenHost, strconv.Itoa(setting.SSH.ListenPort)),
|
|
|
|
setting.SSH.ServerCiphers, setting.SSH.ServerKeyExchanges, setting.SSH.ServerMACs)
|
2020-10-19 23:03:08 +02:00
|
|
|
} 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)
|
|
|
|
}
|
|
|
|
|
2021-09-12 19:35:38 +02:00
|
|
|
sessioner := session.Sessioner(session.Options{
|
|
|
|
Provider: setting.SessionConfig.Provider,
|
|
|
|
ProviderConfig: setting.SessionConfig.ProviderConfig,
|
|
|
|
CookieName: setting.SessionConfig.CookieName,
|
|
|
|
CookiePath: setting.SessionConfig.CookiePath,
|
|
|
|
Gclifetime: setting.SessionConfig.Gclifetime,
|
|
|
|
Maxlifetime: setting.SessionConfig.Maxlifetime,
|
|
|
|
Secure: setting.SessionConfig.Secure,
|
|
|
|
SameSite: setting.SessionConfig.SameSite,
|
|
|
|
Domain: setting.SessionConfig.Domain,
|
|
|
|
})
|
|
|
|
|
|
|
|
r.Mount("/", web_routers.Routes(sessioner))
|
|
|
|
r.Mount("/api/v1", apiv1.Routes(sessioner))
|
2021-06-09 01:33:54 +02:00
|
|
|
r.Mount("/api/internal", private.Routes())
|
|
|
|
return r
|
|
|
|
}
|