mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-28 03:12:08 +00:00
1. remove `TEST_CONFLICTING_PATCHES_WITH_GIT_APPLY` * it defaults to false and is unlikely to be useful for most users (see #22130) * with new git versions (>= 2.40), "merge-tree" is used, "checkConflictsByTmpRepo" isn't called, the option does nothing. 2. fix fragile `db.Cell2Int64` (new: `CellToInt`) 3. allow more routes in maintenance mode (e.g.: captcha) 4. fix MockLocale html escaping to make it have the same behavior as production locale
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package common
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"code.gitea.io/gitea/modules/container"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
func MaintenanceModeHandler() func(h http.Handler) http.Handler {
|
|
allowedPrefixes := []string{
|
|
"/.well-known/",
|
|
"/assets/",
|
|
"/avatars/",
|
|
|
|
// admin: "/-/admin"
|
|
// general-purpose URLs: "/-/fetch-redirect", "/-/markup", etc.
|
|
"/-/",
|
|
|
|
// internal APIs
|
|
"/api/internal/",
|
|
|
|
// user login (for admin to login): "/user/login", "/user/logout", "/catpcha/..."
|
|
"/user/",
|
|
"/captcha/",
|
|
}
|
|
allowedPaths := container.SetOf(
|
|
"/api/healthz",
|
|
)
|
|
isMaintenanceModeAllowedRequest := func(req *http.Request) bool {
|
|
for _, prefix := range allowedPrefixes {
|
|
if strings.HasPrefix(req.URL.Path, prefix) {
|
|
return true
|
|
}
|
|
}
|
|
return allowedPaths.Contains(req.URL.Path)
|
|
}
|
|
|
|
return func(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(resp http.ResponseWriter, req *http.Request) {
|
|
maintenanceMode := setting.Config().Instance.MaintenanceMode.Value(req.Context())
|
|
if maintenanceMode.IsActive() && !isMaintenanceModeAllowedRequest(req) {
|
|
renderServiceUnavailable(resp, req)
|
|
return
|
|
}
|
|
next.ServeHTTP(resp, req)
|
|
})
|
|
}
|
|
}
|