import type { PluginRegistry } from "../../../plugins/registry.js" ;
import {
isProtectedPluginRoutePathFromContext,
resolvePluginRoutePathContext,
type PluginRoutePathContext,
} from "./path-context.js" ;
import { findMatchingPluginHttpRoutes } from "./route-match.js" ;
export function matchedPluginRoutesRequireGatewayAuth(
routes: readonly Pick<NonNullable<PluginRegistry["httpRoutes" ]>[number], "auth" >[],
): boolean {
return routes.some((route) => route.auth === "gateway" );
}
export function shouldEnforceGatewayAuthForPluginPath(
registry: PluginRegistry,
pathnameOrContext: string | PluginRoutePathContext,
): boolean {
const pathContext =
typeof pathnameOrContext === "string"
? resolvePluginRoutePathContext(pathnameOrContext)
: pathnameOrContext;
if (pathContext.malformedEncoding || pathContext.decodePassLimitReached) {
return true ;
}
if (isProtectedPluginRoutePathFromContext(pathContext)) {
return true ;
}
return matchedPluginRoutesRequireGatewayAuth(findMatchingPluginHttpRoutes(registry, pathContext));
}
Messung V0.5 in Prozent C=100 H=100 G=100
[Dauer der Verarbeitung: 0.23 Sekunden, vorverarbeitet 2026-06-08]