2026-06-27 12:16:50 +00:00
|
|
|
import Hummingbird
|
|
|
|
|
|
|
|
|
|
/// 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
|
2026-06-28 05:07:19 +00:00
|
|
|
/// that bubbles up when no file exists for the requested path and responds with the rendered
|
|
|
|
|
/// ``ErrorPage`` and a `404 Not Found` status.
|
2026-06-27 12:16:50 +00:00
|
|
|
public struct NotFoundMiddleware<Context: RequestContext> {
|
2026-06-28 05:07:19 +00:00
|
|
|
|
2026-06-28 14:18:04 +00:00
|
|
|
// MARK: Properties
|
|
|
|
|
|
|
|
|
|
/// The error page, rendered once at initialization and reused for every not-found response.
|
|
|
|
|
private let cache: CachedHTMLResponse
|
|
|
|
|
|
2026-06-27 12:16:50 +00:00
|
|
|
// MARK: Initializers
|
2026-06-28 05:07:19 +00:00
|
|
|
|
|
|
|
|
/// Creates a not-found middleware.
|
2026-06-28 14:18:04 +00:00
|
|
|
public init() {
|
|
|
|
|
self.cache = .init(
|
|
|
|
|
status: .notFound,
|
|
|
|
|
ErrorPage()
|
|
|
|
|
)
|
|
|
|
|
}
|
2026-06-28 05:07:19 +00:00
|
|
|
|
2026-06-27 12:16:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: - RouterMiddleware
|
|
|
|
|
|
|
|
|
|
extension NotFoundMiddleware: RouterMiddleware {
|
|
|
|
|
|
|
|
|
|
// MARK: Functions
|
|
|
|
|
|
2026-06-28 05:07:19 +00:00
|
|
|
/// 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 ``ErrorPage`` with a `404 Not Found` status.
|
|
|
|
|
/// - Throws: any non-not-found error thrown downstream.
|
2026-06-27 12:16:50 +00:00
|
|
|
public func handle(
|
|
|
|
|
_ request: Request,
|
|
|
|
|
context: Context,
|
|
|
|
|
next: (Request, Context) async throws -> Response
|
|
|
|
|
) async throws -> Response {
|
|
|
|
|
do {
|
|
|
|
|
return try await next(request, context)
|
2026-06-28 14:18:04 +00:00
|
|
|
}
|
|
|
|
|
catch let error {
|
2026-06-27 12:16:50 +00:00
|
|
|
guard
|
|
|
|
|
let responseError = error as? any HTTPResponseError,
|
|
|
|
|
responseError.status == .notFound
|
|
|
|
|
else {
|
|
|
|
|
throw error
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-28 14:18:04 +00:00
|
|
|
return cache.response()
|
2026-06-27 12:16:50 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|