Files
ccn/Packages/Infrastructure/Sources/Public/Middlewares/NotFoundMiddleware.swift
T

84 lines
2.9 KiB
Swift
Raw Normal View History

2026-08-19 22:55:00 +02:00
import Elementary
import Foundation
import Hummingbird
2026-09-20 12:45:58 +02:00
import Localization
2026-08-19 22:55:00 +02:00
/// Serves a custom error page for requests that match neither a route nor a static file.
///
/// Placed ahead of `FileMiddleware` in the middleware chain, it catches the `.notFound` error that bubbles up when no file exists for the requested
2026-09-20 12:45:58 +02:00
/// path and responds with the rendered error page and a `404 Not Found` status.
2026-09-04 13:40:35 +00:00
///
2026-09-20 12:45:58 +02:00
/// It negotiates the language itself, on the way out, so the cost falls on the 404s rather than on every request through the chain — where page
/// routes pin their language by URL, this is the one responder that has to ask. Its responses declare `Vary: Accept-Language` accordingly: an
/// unrouted path names no edition, so no canonical URL contradicts the header.
public struct NotFoundMiddleware<Context: RequestContext> {
2026-08-19 22:55:00 +02:00
// MARK: Properties
2026-09-20 12:45:58 +02:00
/// Negotiates the language a not-found response is served in.
private let negotiate: Negotiate
2026-08-19 22:55:00 +02:00
/// The error page, rendered once per supported language and reused for every not-found response.
private let responses: LocalizedHTMLCollectionResponse
// MARK: Initializers
/// Creates a not-found middleware.
/// - Parameters:
/// - bundle: the bundle whose String Catalog names the languages the page is rendered for.
/// - document: builds the error page to render for a given locale.
public init<Document: HTMLDocument>(
bundle: Bundle,
document: (Locale) -> Document
) {
2026-09-20 12:45:58 +02:00
self.negotiate = .init(bundle: bundle)
2026-08-19 22:55:00 +02:00
self.responses = .init(
bundle: bundle,
status: .notFound,
2026-09-04 13:40:35 +00:00
variesOnAcceptLanguage: true,
2026-08-19 22:55:00 +02:00
document: document
)
}
}
// MARK: - RouterMiddleware
extension NotFoundMiddleware: RouterMiddleware {
// MARK: Functions
/// Passes the request down the chain, rendering the error page if it results in a not-found response.
///
/// Any error other than `.notFound` is rethrown unchanged.
/// - Parameters:
/// - request: the incoming request.
/// - context: the context the request is resolved against.
/// - next: the next responder in the middleware chain.
/// - Returns: the downstream response, or the rendered error page with a `404 Not Found` status.
/// - Throws: any non-not-found error thrown downstream.
public func handle(
_ request: Request,
context: Context,
next: (Request, Context) async throws -> Response
) async throws -> Response {
do {
return try await next(request, context)
}
catch let error {
guard
let responseError = error as? any HTTPResponseError,
responseError.status == .notFound
else {
throw error
}
return responses.response(
2026-09-20 12:45:58 +02:00
for: negotiate(for: request),
2026-08-19 22:55:00 +02:00
request: request
)
}
}
}