2016-11-24 00:40:16 -07:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-24 00:40:16 -07:00
|
|
|
|
|
|
|
package routers
|
|
|
|
|
|
|
|
import (
|
2019-12-15 02:51:28 -07:00
|
|
|
"context"
|
2021-10-21 03:22:43 -06:00
|
|
|
"reflect"
|
|
|
|
"runtime"
|
2016-11-24 00:40:16 -07:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-12-10 01:14:24 -07:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2017-10-25 19:37:33 -06:00
|
|
|
"code.gitea.io/gitea/modules/cache"
|
2020-05-07 15:49:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/eventsource"
|
2019-03-27 03:33:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-12-06 10:58:31 -07:00
|
|
|
"code.gitea.io/gitea/modules/highlight"
|
2019-12-08 12:15:35 -07:00
|
|
|
code_indexer "code.gitea.io/gitea/modules/indexer/code"
|
2019-02-20 17:54:05 -07:00
|
|
|
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
|
2020-02-11 02:34:17 -07:00
|
|
|
stats_indexer "code.gitea.io/gitea/modules/indexer/stats"
|
2016-11-24 00:40:16 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2017-09-16 11:17:57 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2019-05-25 11:15:39 -06:00
|
|
|
"code.gitea.io/gitea/modules/markup/external"
|
2019-10-25 08:46:37 -06:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2016-11-24 00:40:16 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/ssh"
|
2020-08-17 22:23:45 -06:00
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2020-07-12 03:10:56 -06:00
|
|
|
"code.gitea.io/gitea/modules/svg"
|
2022-10-16 17:29:26 -06:00
|
|
|
"code.gitea.io/gitea/modules/system"
|
2022-08-28 03:43:25 -06:00
|
|
|
"code.gitea.io/gitea/modules/templates"
|
2021-01-05 06:05:40 -07:00
|
|
|
"code.gitea.io/gitea/modules/translation"
|
2022-05-10 15:55:54 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-06-08 17:33:54 -06:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2022-03-30 02:42:47 -06:00
|
|
|
packages_router "code.gitea.io/gitea/routers/api/packages"
|
2021-06-08 17:33:54 -06:00
|
|
|
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 11:53:16 -06:00
|
|
|
"code.gitea.io/gitea/services/auth"
|
2021-07-24 04:16:34 -06:00
|
|
|
"code.gitea.io/gitea/services/auth/source/oauth2"
|
2022-05-07 11:05:52 -06:00
|
|
|
"code.gitea.io/gitea/services/automerge"
|
2021-11-16 06:30:11 -07:00
|
|
|
"code.gitea.io/gitea/services/cron"
|
2019-09-23 23:02:49 -06:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2023-01-14 08:57:10 -07:00
|
|
|
mailer_incoming "code.gitea.io/gitea/services/mailer/incoming"
|
2022-10-22 11:15:52 -06:00
|
|
|
markup_service "code.gitea.io/gitea/services/markup"
|
2021-11-16 08:25:33 -07:00
|
|
|
repo_migrations "code.gitea.io/gitea/services/migrations"
|
2019-10-01 07:40:17 -06:00
|
|
|
mirror_service "code.gitea.io/gitea/services/mirror"
|
2019-12-06 19:44:10 -07:00
|
|
|
pull_service "code.gitea.io/gitea/services/pull"
|
2021-11-17 08:17:31 -07:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2021-12-06 00:19:28 -07:00
|
|
|
"code.gitea.io/gitea/services/repository/archiver"
|
2021-11-17 23:47:57 -07:00
|
|
|
"code.gitea.io/gitea/services/task"
|
2020-12-08 03:41:14 -07:00
|
|
|
"code.gitea.io/gitea/services/webhook"
|
2016-11-24 00:40:16 -07:00
|
|
|
)
|
|
|
|
|
2021-10-21 03:22:43 -06: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-17 22:23:45 -06:00
|
|
|
}
|
2021-10-21 03:22:43 -06: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 08:14:48 -06:00
|
|
|
}
|
2021-10-21 03:22:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// InitGitServices init new services for git, this is also called in `contrib/pr/checkout.go`
|
|
|
|
func InitGitServices() {
|
|
|
|
setting.NewServices()
|
|
|
|
mustInit(storage.Init)
|
2022-05-08 10:46:32 -06:00
|
|
|
mustInit(repo_service.Init)
|
2021-10-21 03:22:43 -06:00
|
|
|
}
|
|
|
|
|
2022-10-28 10:53:08 -06:00
|
|
|
func syncAppConfForGit(ctx context.Context) error {
|
2022-10-16 17:29:26 -06:00
|
|
|
runtimeState := new(system.RuntimeState)
|
|
|
|
if err := system.AppState.Get(runtimeState); err != nil {
|
2021-10-21 03:22:43 -06:00
|
|
|
return err
|
2021-07-10 15:54:15 -06:00
|
|
|
}
|
2022-10-28 10:53:08 -06:00
|
|
|
|
|
|
|
updated := false
|
2021-10-21 03:22:43 -06:00
|
|
|
if runtimeState.LastAppPath != setting.AppPath {
|
|
|
|
log.Info("AppPath changed from '%s' to '%s'", runtimeState.LastAppPath, setting.AppPath)
|
2022-10-28 10:53:08 -06:00
|
|
|
runtimeState.LastAppPath = setting.AppPath
|
|
|
|
updated = true
|
|
|
|
}
|
|
|
|
if runtimeState.LastCustomConf != setting.CustomConf {
|
|
|
|
log.Info("CustomConf changed from '%s' to '%s'", runtimeState.LastCustomConf, setting.CustomConf)
|
|
|
|
runtimeState.LastCustomConf = setting.CustomConf
|
|
|
|
updated = true
|
|
|
|
}
|
2021-10-21 03:22:43 -06:00
|
|
|
|
2022-10-28 10:53:08 -06:00
|
|
|
if updated {
|
2021-10-21 03:22:43 -06:00
|
|
|
log.Info("re-sync repository hooks ...")
|
2021-11-17 08:17:31 -07:00
|
|
|
mustInitCtx(ctx, repo_service.SyncRepositoryHooks)
|
2021-10-21 03:22:43 -06:00
|
|
|
|
|
|
|
log.Info("re-write ssh public keys ...")
|
2021-12-10 01:14:24 -07:00
|
|
|
mustInit(asymkey_model.RewriteAllPublicKeys)
|
2021-10-21 03:22:43 -06:00
|
|
|
|
2022-10-16 17:29:26 -06:00
|
|
|
return system.AppState.Set(runtimeState)
|
2021-06-23 15:12:38 -06:00
|
|
|
}
|
2021-10-21 03:22:43 -06:00
|
|
|
return nil
|
2016-11-24 00:40:16 -07:00
|
|
|
}
|
|
|
|
|
2021-12-01 00:50:01 -07:00
|
|
|
// GlobalInitInstalled is for global installed configuration.
|
|
|
|
func GlobalInitInstalled(ctx context.Context) {
|
2020-10-19 15:03:08 -06:00
|
|
|
if !setting.InstallLock {
|
|
|
|
log.Fatal("Gitea is not installed")
|
|
|
|
}
|
2021-01-26 20:57:18 -07:00
|
|
|
|
2022-08-08 21:22:24 -06:00
|
|
|
mustInitCtx(ctx, git.InitFull)
|
2022-06-09 19:57:49 -06:00
|
|
|
log.Info("Git Version: %s (home: %s)", git.VersionInfo(), git.HomeDir())
|
2021-06-26 18:56:58 -06: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-13 19:24:57 -06:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2022-05-10 15:55:54 -06:00
|
|
|
log.Info("Run Mode: %s", util.ToTitleCase(setting.RunMode))
|
2023-01-01 07:00:33 -07:00
|
|
|
log.Info("Gitea v%s%s", setting.AppVer, setting.AppBuiltWith)
|
2019-08-24 03:24:45 -06:00
|
|
|
|
2020-05-16 17:31:38 -06:00
|
|
|
// Setup i18n
|
2022-08-28 03:43:25 -06:00
|
|
|
translation.InitLocales(ctx)
|
2020-05-16 17:31:38 -06:00
|
|
|
|
2022-05-08 10:46:32 -06:00
|
|
|
setting.NewServices()
|
|
|
|
mustInit(storage.Init)
|
|
|
|
|
2022-08-28 03:43:25 -06:00
|
|
|
mailer.NewContext(ctx)
|
2021-10-21 03:22:43 -06:00
|
|
|
mustInit(cache.NewContext)
|
|
|
|
notification.NewContext()
|
|
|
|
mustInit(archiver.Init)
|
2016-11-24 00:40:16 -07:00
|
|
|
|
2020-10-19 15:03:08 -06:00
|
|
|
highlight.NewContext()
|
2021-04-19 16:25:08 -06:00
|
|
|
external.RegisterRenderers()
|
2022-10-22 11:15:52 -06:00
|
|
|
markup.Init(markup_service.ProcessorHelper())
|
2021-01-26 20:57:18 -07:00
|
|
|
|
|
|
|
if setting.EnableSQLite3 {
|
2021-11-09 11:55:24 -07:00
|
|
|
log.Info("SQLite3 support is enabled")
|
2021-01-26 20:57:18 -07:00
|
|
|
} else if setting.Database.UseSQLite3 {
|
2021-11-09 11:55:24 -07: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-26 20:57:18 -07:00
|
|
|
}
|
2019-01-19 14:17:08 -07:00
|
|
|
|
2021-10-21 03:22:43 -06:00
|
|
|
mustInitCtx(ctx, common.InitDBEngine)
|
|
|
|
log.Info("ORM engine initialization successful!")
|
2022-10-16 17:29:26 -06:00
|
|
|
mustInit(system.Init)
|
2021-10-21 03:22:43 -06:00
|
|
|
mustInit(oauth2.Init)
|
2016-11-24 00:40:16 -07:00
|
|
|
|
2022-10-16 17:29:26 -06:00
|
|
|
mustInit(models.Init)
|
2022-05-08 10:46:32 -06:00
|
|
|
mustInit(repo_service.Init)
|
2016-11-24 00:40:16 -07:00
|
|
|
|
2020-10-19 15:03:08 -06:00
|
|
|
// Booting long running goroutines.
|
|
|
|
issue_indexer.InitIssueIndexer(false)
|
|
|
|
code_indexer.Init()
|
2021-10-21 03:22:43 -06:00
|
|
|
mustInit(stats_indexer.Init)
|
|
|
|
|
2020-10-19 15:03:08 -06:00
|
|
|
mirror_service.InitSyncMirrors()
|
2022-04-25 12:03:01 -06:00
|
|
|
mustInit(webhook.Init)
|
2021-10-21 03:22:43 -06:00
|
|
|
mustInit(pull_service.Init)
|
2022-05-07 11:05:52 -06:00
|
|
|
mustInit(automerge.Init)
|
2021-10-21 03:22:43 -06:00
|
|
|
mustInit(task.Init)
|
|
|
|
mustInit(repo_migrations.Init)
|
2020-10-19 15:03:08 -06:00
|
|
|
eventsource.GetManager().Init()
|
2023-01-14 08:57:10 -07:00
|
|
|
mustInitCtx(ctx, mailer_incoming.Init)
|
2020-10-19 15:03:08 -06:00
|
|
|
|
2022-10-28 10:53:08 -06:00
|
|
|
mustInitCtx(ctx, syncAppConfForGit)
|
2021-10-21 03:22:43 -06:00
|
|
|
|
2022-07-10 00:50:26 -06:00
|
|
|
mustInit(ssh.Init)
|
|
|
|
|
2021-06-09 11:53:16 -06:00
|
|
|
auth.Init()
|
2020-07-12 03:10:56 -06:00
|
|
|
svg.Init()
|
2022-07-15 09:20:05 -06:00
|
|
|
|
|
|
|
// Finally start up the cron
|
|
|
|
cron.NewContext(ctx)
|
2016-11-24 00:40:16 -07:00
|
|
|
}
|
2021-06-08 17:33:54 -06:00
|
|
|
|
|
|
|
// NormalRoutes represents non install routes
|
2022-08-28 03:43:25 -06:00
|
|
|
func NormalRoutes(ctx context.Context) *web.Route {
|
|
|
|
ctx, _ = templates.HTMLRenderer(ctx)
|
2021-06-08 17:33:54 -06:00
|
|
|
r := web.NewRoute()
|
|
|
|
for _, middle := range common.Middlewares() {
|
|
|
|
r.Use(middle)
|
|
|
|
}
|
|
|
|
|
2022-08-28 03:43:25 -06:00
|
|
|
r.Mount("/", web_routers.Routes(ctx))
|
|
|
|
r.Mount("/api/v1", apiv1.Routes(ctx))
|
2021-06-08 17:33:54 -06:00
|
|
|
r.Mount("/api/internal", private.Routes())
|
2022-11-12 11:59:15 -07:00
|
|
|
|
2022-03-30 02:42:47 -06:00
|
|
|
if setting.Packages.Enabled {
|
2022-11-12 11:59:15 -07:00
|
|
|
// Add endpoints to match common package manager APIs
|
|
|
|
|
|
|
|
// This implements package support for most package managers
|
|
|
|
r.Mount("/api/packages", packages_router.CommonRoutes(ctx))
|
|
|
|
|
|
|
|
// This implements the OCI API (Note this is not preceded by /api but is instead /v2)
|
2022-08-28 03:43:25 -06:00
|
|
|
r.Mount("/v2", packages_router.ContainerRoutes(ctx))
|
2022-03-30 02:42:47 -06:00
|
|
|
}
|
2021-06-08 17:33:54 -06:00
|
|
|
return r
|
|
|
|
}
|