2016-11-24 15:40:16 +08:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-24 15:40:16 +08:00
|
|
|
|
|
|
|
|
package routers
|
|
|
|
|
|
|
|
|
|
import (
|
2019-12-15 09:51:28 +00:00
|
|
|
"context"
|
2024-04-26 17:09:49 +08:00
|
|
|
"net/http"
|
2021-10-21 17:22:43 +08:00
|
|
|
"reflect"
|
|
|
|
|
"runtime"
|
2016-11-24 15:40:16 +08:00
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2023-08-09 14:24:07 +02:00
|
|
|
authmodel "code.gitea.io/gitea/models/auth"
|
2017-10-26 04:37:33 +03:00
|
|
|
"code.gitea.io/gitea/modules/cache"
|
2020-05-07 22:49:00 +01:00
|
|
|
"code.gitea.io/gitea/modules/eventsource"
|
2019-03-27 17:33:00 +08:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-12-06 18:58:31 +01:00
|
|
|
"code.gitea.io/gitea/modules/highlight"
|
2016-11-24 15:40:16 +08:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2017-09-17 01:17:57 +08:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2019-05-26 01:15:39 +08:00
|
|
|
"code.gitea.io/gitea/modules/markup/external"
|
2016-11-24 15:40:16 +08:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
"code.gitea.io/gitea/modules/ssh"
|
2020-08-18 12:23:45 +08:00
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2020-07-12 11:10:56 +02:00
|
|
|
"code.gitea.io/gitea/modules/svg"
|
2022-10-17 07:29:26 +08:00
|
|
|
"code.gitea.io/gitea/modules/system"
|
2022-08-28 10:43:25 +01:00
|
|
|
"code.gitea.io/gitea/modules/templates"
|
2021-01-05 21:05:40 +08:00
|
|
|
"code.gitea.io/gitea/modules/translation"
|
2024-05-07 00:34:16 +08:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-06-09 07:33:54 +08:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2024-04-26 17:09:49 +08:00
|
|
|
"code.gitea.io/gitea/modules/web/routing"
|
2023-01-31 09:45:19 +08:00
|
|
|
actions_router "code.gitea.io/gitea/routers/api/actions"
|
2022-03-30 10:42:47 +02:00
|
|
|
packages_router "code.gitea.io/gitea/routers/api/packages"
|
2021-06-09 07:33:54 +08: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"
|
2023-01-31 09:45:19 +08:00
|
|
|
actions_service "code.gitea.io/gitea/services/actions"
|
2024-03-04 16:57:39 +08:00
|
|
|
asymkey_service "code.gitea.io/gitea/services/asymkey"
|
2021-06-10 01:53:16 +08:00
|
|
|
"code.gitea.io/gitea/services/auth"
|
2021-07-24 11:16:34 +01:00
|
|
|
"code.gitea.io/gitea/services/auth/source/oauth2"
|
2022-05-07 19:05:52 +02:00
|
|
|
"code.gitea.io/gitea/services/automerge"
|
2021-11-16 21:30:11 +08:00
|
|
|
"code.gitea.io/gitea/services/cron"
|
2023-09-05 21:00:52 +08:00
|
|
|
feed_service "code.gitea.io/gitea/services/feed"
|
2023-09-05 18:07:57 +08:00
|
|
|
indexer_service "code.gitea.io/gitea/services/indexer"
|
2019-09-24 13:02:49 +08:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2023-01-14 16:57:10 +01:00
|
|
|
mailer_incoming "code.gitea.io/gitea/services/mailer/incoming"
|
2022-10-22 20:15:52 +03:00
|
|
|
markup_service "code.gitea.io/gitea/services/markup"
|
2021-11-16 23:25:33 +08:00
|
|
|
repo_migrations "code.gitea.io/gitea/services/migrations"
|
2019-10-01 21:40:17 +08:00
|
|
|
mirror_service "code.gitea.io/gitea/services/mirror"
|
2024-10-02 08:03:19 +08:00
|
|
|
"code.gitea.io/gitea/services/oauth2_provider"
|
2019-12-07 10:44:10 +08:00
|
|
|
pull_service "code.gitea.io/gitea/services/pull"
|
2024-01-24 04:02:04 +01:00
|
|
|
release_service "code.gitea.io/gitea/services/release"
|
2021-11-17 23:17:31 +08:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2021-12-06 15:19:28 +08:00
|
|
|
"code.gitea.io/gitea/services/repository/archiver"
|
2021-11-18 14:47:57 +08:00
|
|
|
"code.gitea.io/gitea/services/task"
|
2023-09-05 19:15:42 +08:00
|
|
|
"code.gitea.io/gitea/services/uinotification"
|
2020-12-08 18:41:14 +08:00
|
|
|
"code.gitea.io/gitea/services/webhook"
|
2016-11-24 15:40:16 +08:00
|
|
|
)
|
|
|
|
|
|
2021-10-21 17:22:43 +08: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 12:23:45 +08:00
|
|
|
}
|
2021-10-21 17:22:43 +08: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 22:14:48 +08:00
|
|
|
}
|
2021-10-21 17:22:43 +08:00
|
|
|
}
|
|
|
|
|
|
2022-10-29 00:53:08 +08:00
|
|
|
func syncAppConfForGit(ctx context.Context) error {
|
2022-10-17 07:29:26 +08:00
|
|
|
runtimeState := new(system.RuntimeState)
|
2023-10-15 23:46:06 +08:00
|
|
|
if err := system.AppState.Get(ctx, runtimeState); err != nil {
|
2021-10-21 17:22:43 +08:00
|
|
|
return err
|
2021-07-10 22:54:15 +01:00
|
|
|
}
|
2022-10-29 00:53:08 +08:00
|
|
|
|
|
|
|
|
updated := false
|
2021-10-21 17:22:43 +08:00
|
|
|
if runtimeState.LastAppPath != setting.AppPath {
|
|
|
|
|
log.Info("AppPath changed from '%s' to '%s'", runtimeState.LastAppPath, setting.AppPath)
|
2022-10-29 00:53:08 +08: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 17:22:43 +08:00
|
|
|
|
2022-10-29 00:53:08 +08:00
|
|
|
if updated {
|
2021-10-21 17:22:43 +08:00
|
|
|
log.Info("re-sync repository hooks ...")
|
2021-11-17 23:17:31 +08:00
|
|
|
mustInitCtx(ctx, repo_service.SyncRepositoryHooks)
|
2021-10-21 17:22:43 +08:00
|
|
|
|
|
|
|
|
log.Info("re-write ssh public keys ...")
|
2024-03-04 16:57:39 +08:00
|
|
|
mustInitCtx(ctx, asymkey_service.RewriteAllPublicKeys)
|
2021-10-21 17:22:43 +08:00
|
|
|
|
2023-10-15 23:46:06 +08:00
|
|
|
return system.AppState.Set(ctx, runtimeState)
|
2021-06-24 05:12:38 +08:00
|
|
|
}
|
2021-10-21 17:22:43 +08:00
|
|
|
return nil
|
2016-11-24 15:40:16 +08:00
|
|
|
}
|
|
|
|
|
|
2023-06-21 13:50:26 +08:00
|
|
|
func InitWebInstallPage(ctx context.Context) {
|
|
|
|
|
translation.InitLocales(ctx)
|
|
|
|
|
setting.LoadSettingsForInstall()
|
|
|
|
|
mustInit(svg.Init)
|
|
|
|
|
}
|
2021-01-27 04:57:18 +01:00
|
|
|
|
2023-06-21 13:50:26 +08:00
|
|
|
// InitWebInstalled is for global installed configuration.
|
|
|
|
|
func InitWebInstalled(ctx context.Context) {
|
2022-08-09 11:22:24 +08:00
|
|
|
mustInitCtx(ctx, git.InitFull)
|
2024-05-07 00:34:16 +08:00
|
|
|
log.Info("Git version: %s (home: %s)", git.DefaultFeatures().VersionInfo(), git.HomeDir())
|
|
|
|
|
if !git.DefaultFeatures().SupportHashSha256 {
|
|
|
|
|
log.Warn("sha256 hash support is disabled - requires Git >= 2.42." + util.Iif(git.DefaultFeatures().UsingGogit, " Gogit is currently unsupported.", ""))
|
|
|
|
|
}
|
2019-08-24 17:24:45 +08:00
|
|
|
|
2020-05-17 00:31:38 +01:00
|
|
|
// Setup i18n
|
2022-08-28 10:43:25 +01:00
|
|
|
translation.InitLocales(ctx)
|
2020-05-17 00:31:38 +01:00
|
|
|
|
2023-02-20 00:12:01 +08:00
|
|
|
setting.LoadSettings()
|
2022-05-09 00:46:32 +08:00
|
|
|
mustInit(storage.Init)
|
|
|
|
|
|
2022-08-28 10:43:25 +01:00
|
|
|
mailer.NewContext(ctx)
|
2023-12-19 17:29:05 +08:00
|
|
|
mustInit(cache.Init)
|
2023-09-05 21:00:52 +08:00
|
|
|
mustInit(feed_service.Init)
|
2023-09-05 19:15:42 +08:00
|
|
|
mustInit(uinotification.Init)
|
2023-10-11 06:24:07 +02:00
|
|
|
mustInitCtx(ctx, archiver.Init)
|
2016-11-24 15:40:16 +08:00
|
|
|
|
2020-10-19 22:03:08 +01:00
|
|
|
highlight.NewContext()
|
2021-04-20 06:25:08 +08:00
|
|
|
external.RegisterRenderers()
|
2022-10-22 20:15:52 +03:00
|
|
|
markup.Init(markup_service.ProcessorHelper())
|
2021-01-27 04:57:18 +01:00
|
|
|
|
|
|
|
|
if setting.EnableSQLite3 {
|
2021-11-10 02:55:24 +08:00
|
|
|
log.Info("SQLite3 support is enabled")
|
2023-03-07 18:51:06 +08:00
|
|
|
} else if setting.Database.Type.IsSQLite3() {
|
2021-11-10 02:55:24 +08: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 13:17:08 -08:00
|
|
|
|
2021-10-21 17:22:43 +08:00
|
|
|
mustInitCtx(ctx, common.InitDBEngine)
|
|
|
|
|
log.Info("ORM engine initialization successful!")
|
2022-10-17 07:29:26 +08:00
|
|
|
mustInit(system.Init)
|
2023-10-14 10:37:24 +02:00
|
|
|
mustInitCtx(ctx, oauth2.Init)
|
2024-10-02 08:03:19 +08:00
|
|
|
mustInitCtx(ctx, oauth2_provider.Init)
|
2024-01-24 04:02:04 +01:00
|
|
|
mustInit(release_service.Init)
|
|
|
|
|
|
2023-02-24 18:23:13 +08:00
|
|
|
mustInitCtx(ctx, models.Init)
|
2023-08-09 14:24:07 +02:00
|
|
|
mustInitCtx(ctx, authmodel.Init)
|
2023-09-16 16:39:12 +02:00
|
|
|
mustInitCtx(ctx, repo_service.Init)
|
2016-11-24 15:40:16 +08:00
|
|
|
|
2020-10-19 22:03:08 +01:00
|
|
|
// Booting long running goroutines.
|
2023-09-05 18:07:57 +08:00
|
|
|
mustInit(indexer_service.Init)
|
2021-10-21 17:22:43 +08:00
|
|
|
|
2020-10-19 22:03:08 +01:00
|
|
|
mirror_service.InitSyncMirrors()
|
2022-04-26 02:03:01 +08:00
|
|
|
mustInit(webhook.Init)
|
2021-10-21 17:22:43 +08:00
|
|
|
mustInit(pull_service.Init)
|
2022-05-07 19:05:52 +02:00
|
|
|
mustInit(automerge.Init)
|
2021-10-21 17:22:43 +08:00
|
|
|
mustInit(task.Init)
|
|
|
|
|
mustInit(repo_migrations.Init)
|
2020-10-19 22:03:08 +01:00
|
|
|
eventsource.GetManager().Init()
|
2023-01-14 16:57:10 +01:00
|
|
|
mustInitCtx(ctx, mailer_incoming.Init)
|
2020-10-19 22:03:08 +01:00
|
|
|
|
2022-10-29 00:53:08 +08:00
|
|
|
mustInitCtx(ctx, syncAppConfForGit)
|
2021-10-21 17:22:43 +08:00
|
|
|
|
2022-07-10 14:50:26 +08:00
|
|
|
mustInit(ssh.Init)
|
|
|
|
|
|
2021-06-10 01:53:16 +08:00
|
|
|
auth.Init()
|
2023-04-12 18:16:45 +08:00
|
|
|
mustInit(svg.Init)
|
2022-07-15 16:20:05 +01:00
|
|
|
|
2023-01-31 09:45:19 +08:00
|
|
|
actions_service.Init()
|
|
|
|
|
|
2024-10-02 04:25:08 +09:00
|
|
|
mustInit(repo_service.InitLicenseClassifier)
|
|
|
|
|
|
2022-07-15 16:20:05 +01:00
|
|
|
// Finally start up the cron
|
|
|
|
|
cron.NewContext(ctx)
|
2016-11-24 15:40:16 +08:00
|
|
|
}
|
2021-06-09 07:33:54 +08:00
|
|
|
|
|
|
|
|
// NormalRoutes represents non install routes
|
2024-06-19 06:32:45 +08:00
|
|
|
func NormalRoutes() *web.Router {
|
2023-04-30 20:22:23 +08:00
|
|
|
_ = templates.HTMLRenderer()
|
2024-06-19 06:32:45 +08:00
|
|
|
r := web.NewRouter()
|
2023-04-27 14:06:45 +08:00
|
|
|
r.Use(common.ProtocolMiddlewares()...)
|
2021-06-09 07:33:54 +08:00
|
|
|
|
2023-06-18 15:59:09 +08:00
|
|
|
r.Mount("/", web_routers.Routes())
|
|
|
|
|
r.Mount("/api/v1", apiv1.Routes())
|
2021-06-09 07:33:54 +08:00
|
|
|
r.Mount("/api/internal", private.Routes())
|
2022-11-12 18:59:15 +00:00
|
|
|
|
2023-06-16 14:32:43 +08:00
|
|
|
r.Post("/-/fetch-redirect", common.FetchRedirectDelegate)
|
|
|
|
|
|
2022-03-30 10:42:47 +02:00
|
|
|
if setting.Packages.Enabled {
|
2022-11-12 18:59:15 +00:00
|
|
|
// This implements package support for most package managers
|
2023-06-18 15:59:09 +08:00
|
|
|
r.Mount("/api/packages", packages_router.CommonRoutes())
|
2024-06-18 07:28:47 +08:00
|
|
|
// This implements the OCI API, this container registry "/v2" endpoint must be in the root of the site.
|
|
|
|
|
// If site admin deploys Gitea in a sub-path, they must configure their reverse proxy to map the "https://host/v2" endpoint to Gitea.
|
2023-06-18 15:59:09 +08:00
|
|
|
r.Mount("/v2", packages_router.ContainerRoutes())
|
2022-03-30 10:42:47 +02:00
|
|
|
}
|
2023-01-31 09:45:19 +08:00
|
|
|
|
|
|
|
|
if setting.Actions.Enabled {
|
|
|
|
|
prefix := "/api/actions"
|
2023-06-18 15:59:09 +08:00
|
|
|
r.Mount(prefix, actions_router.Routes(prefix))
|
2023-05-19 21:37:57 +08:00
|
|
|
|
|
|
|
|
// TODO: Pipeline api used for runner internal communication with gitea server. but only artifact is used for now.
|
|
|
|
|
// In Github, it uses ACTIONS_RUNTIME_URL=https://pipelines.actions.githubusercontent.com/fLgcSHkPGySXeIFrg8W8OBSfeg3b5Fls1A1CwX566g8PayEGlg/
|
|
|
|
|
// TODO: this prefix should be generated with a token string with runner ?
|
|
|
|
|
prefix = "/api/actions_pipeline"
|
2023-05-21 09:50:53 +08:00
|
|
|
r.Mount(prefix, actions_router.ArtifactsRoutes(prefix))
|
2024-03-02 10:12:17 +01:00
|
|
|
prefix = actions_router.ArtifactV4RouteBase
|
|
|
|
|
r.Mount(prefix, actions_router.ArtifactsV4Routes(prefix))
|
2023-01-31 09:45:19 +08:00
|
|
|
}
|
|
|
|
|
|
2024-04-26 17:09:49 +08:00
|
|
|
r.NotFound(func(w http.ResponseWriter, req *http.Request) {
|
|
|
|
|
routing.UpdateFuncInfo(req.Context(), routing.GetFuncInfo(http.NotFound, "GlobalNotFound"))
|
|
|
|
|
http.NotFound(w, req)
|
|
|
|
|
})
|
2021-06-09 07:33:54 +08:00
|
|
|
return r
|
|
|
|
|
}
|