9a5720e8ad
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
Universal: PR Check / Branch Policy (pull_request) Has been cancelled
PR RC Release / Build RC Release (pull_request) Has been cancelled
Universal: PR Check / Validate PR (pull_request) Has been cancelled
Branch Cleanup / Delete merged branch (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/container"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/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)
|
|
})
|
|
}
|
|
}
|