2025-09-18 23:08:52 +02:00
|
|
|
// ===----------------------------------------------------------------------===
|
|
|
|
|
//
|
|
|
|
|
// This source file is part of the Hummingbird DocC Middleware open source project
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2025 Röck+Cöde VoF. and the Hummingbird DocC Middleware project authors
|
|
|
|
|
// Licensed under the EUPL 1.2 or later.
|
|
|
|
|
//
|
|
|
|
|
// See LICENSE for license information
|
|
|
|
|
// See CONTRIBUTORS for the list of Hummingbird DocC Middleware project authors
|
|
|
|
|
//
|
|
|
|
|
// ===----------------------------------------------------------------------===
|
|
|
|
|
|
2025-09-25 02:41:52 +02:00
|
|
|
import protocol Hummingbird.FileProvider
|
2025-09-18 23:08:52 +02:00
|
|
|
|
2025-09-25 02:41:52 +02:00
|
|
|
import struct Hummingbird.LocalFileSystem
|
2025-09-18 23:08:52 +02:00
|
|
|
import struct Logging.Logger
|
|
|
|
|
|
|
|
|
|
/// A middleware that proxies requests to `DocC` documentation containers within a hosting app.
|
2025-09-25 02:41:52 +02:00
|
|
|
public struct DocCMiddleware<FileSystemProvider: FileProvider> {
|
2025-09-18 23:08:52 +02:00
|
|
|
|
|
|
|
|
// MARK: Properties
|
|
|
|
|
|
2025-09-23 16:21:25 +02:00
|
|
|
/// A type that contains the parameters to configure the middleware.
|
|
|
|
|
let configuration: Configuration
|
|
|
|
|
|
2025-09-25 02:41:52 +02:00
|
|
|
/// A type that conforms to a protocol that defines file system interactions.
|
|
|
|
|
let fileProvider: FileSystemProvider
|
2025-09-18 23:08:52 +02:00
|
|
|
|
|
|
|
|
/// A type that interacts with the logging system.
|
|
|
|
|
let logger: Logger
|
|
|
|
|
|
2025-09-23 16:21:25 +02:00
|
|
|
/// A use case that checks whether a received URI could be processed or not.
|
|
|
|
|
private let checkURI: CheckURIUseCase = .init()
|
|
|
|
|
|
2025-09-18 23:08:52 +02:00
|
|
|
// MARK: Initializers
|
|
|
|
|
|
2025-09-25 02:41:52 +02:00
|
|
|
/// Initializes this middleware.
|
2025-09-18 23:08:52 +02:00
|
|
|
/// - Parameters:
|
2025-09-23 16:21:25 +02:00
|
|
|
/// - configuration: A type that contains the parameters to configure the middleware.
|
2025-09-18 23:08:52 +02:00
|
|
|
/// - logger: A type that interacts with the logging system.
|
2025-09-25 02:41:52 +02:00
|
|
|
public init(
|
2025-09-23 16:21:25 +02:00
|
|
|
configuration: Configuration,
|
2025-09-25 02:41:52 +02:00
|
|
|
logger: Logger
|
|
|
|
|
) where FileSystemProvider == LocalFileSystem {
|
|
|
|
|
self.init(
|
|
|
|
|
configuration: configuration,
|
|
|
|
|
fileProvider: LocalFileSystem(
|
2025-09-23 16:21:25 +02:00
|
|
|
rootFolder: configuration.folderRoot,
|
|
|
|
|
threadPool: configuration.threadPool,
|
|
|
|
|
logger: logger
|
2025-09-25 02:41:52 +02:00
|
|
|
),
|
|
|
|
|
logger: logger,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Initializes this middleware with a concrete file provider type.
|
|
|
|
|
/// - Parameters:
|
|
|
|
|
/// - configuration: A type that contains the parameters to configure the middleware.
|
|
|
|
|
/// - fileProvider: A type that conforms to the protocol that defines file system interactions.
|
|
|
|
|
/// - logger: A type that interacts with the logging system.
|
|
|
|
|
init(
|
|
|
|
|
configuration: Configuration,
|
|
|
|
|
fileProvider: FileSystemProvider,
|
|
|
|
|
logger: Logger,
|
|
|
|
|
) {
|
2025-09-18 23:08:52 +02:00
|
|
|
self.logger = logger
|
2025-09-25 02:41:52 +02:00
|
|
|
self.configuration = configuration
|
|
|
|
|
self.fileProvider = fileProvider
|
|
|
|
|
self.prepareURIPath = .init(uriRoot: configuration.uriRoot)
|
|
|
|
|
self.redirectURI = .init(logger: logger)
|
|
|
|
|
self.serveURI = .init(
|
|
|
|
|
fileProvider: fileProvider,
|
|
|
|
|
logger: logger
|
|
|
|
|
)
|
2025-09-18 23:08:52 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-23 16:21:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// MARK: - RouterMiddleware
|
|
|
|
|
|
|
|
|
|
extension DocCMiddleware: RouterMiddleware {
|
|
|
|
|
|
|
|
|
|
// MARK: Type aliases
|
|
|
|
|
|
|
|
|
|
public typealias Context = RequestContext
|
|
|
|
|
public typealias Input = Request
|
|
|
|
|
public typealias Output = Response
|
|
|
|
|
|
|
|
|
|
// MARK: Functions
|
|
|
|
|
|
|
|
|
|
public func handle(
|
|
|
|
|
_ input: Input,
|
|
|
|
|
context: any Context,
|
|
|
|
|
next: (Input, any Context) async throws -> Output
|
|
|
|
|
) async throws -> Output {
|
|
|
|
|
guard let uri = checkURI(input.uri) else {
|
|
|
|
|
return try await next(input, context)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return try await next(input, context)
|
2025-09-18 23:08:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|