Schafkopf-Server/Sources/App/configure.swift

96 lines
3.1 KiB
Swift
Raw Normal View History

2021-11-25 19:15:38 +01:00
import Vapor
import Fluent
2023-01-31 22:16:44 +01:00
import Clairvoyant
2021-11-25 19:15:38 +01:00
var server: SQLiteDatabase!
2021-11-27 11:59:13 +01:00
2021-11-25 19:15:38 +01:00
// configures your application
2023-02-16 18:31:30 +01:00
public func configure(_ app: Application) async throws {
let storageFolder = URL(fileURLWithPath: app.directory.resourcesDirectory)
2021-12-09 14:47:18 +01:00
2023-01-31 22:16:44 +01:00
let logFolder = storageFolder.appendingPathComponent("logs")
let accessManager = AccessTokenManager([])
2023-02-16 18:31:30 +01:00
let monitor = await MetricObserver(
2023-01-31 22:16:44 +01:00
logFolder: logFolder,
accessManager: accessManager,
logMetricId: "schafkopf.log")
MetricObserver.standard = monitor
2023-02-16 18:31:30 +01:00
let status = try! await Metric<ServerStatus>(
2023-02-06 11:25:30 +01:00
"schafkopf.status",
name: "Status",
description: "The main status of the server")
2023-02-16 18:31:30 +01:00
try? await status.update(.initializing)
await monitor.registerRoutes(app)
2023-01-31 22:16:44 +01:00
2022-10-11 12:00:46 +02:00
let configPath = URL(fileURLWithPath: app.directory.resourcesDirectory)
.appendingPathComponent("config.json")
2023-02-01 16:44:07 +01:00
let configuration: Configuration
do {
configuration = try Configuration(loadFromUrl: configPath)
} catch {
2023-02-16 18:31:30 +01:00
try? await status.update(.initializationFailure)
await monitor.log("Failed to read configuration: \(error)")
2023-02-01 16:44:07 +01:00
// Note: If configuration can't be loaded, then the server will run on the wrong port
// and access to metrics is impossible, since no tokens are loaded
return
}
2023-01-31 22:16:44 +01:00
configuration.monitoringTokens.map { $0.data(using: .utf8)! }.forEach(accessManager.add)
2022-10-11 12:00:46 +02:00
app.http.server.configuration.port = configuration.serverPort
2021-12-23 09:38:31 +01:00
2021-12-09 14:47:18 +01:00
// Set target environment
2021-12-18 15:08:43 +01:00
app.environment = .production
if !configuration.production {
app.logger.logLevel = .info
2023-02-06 22:03:02 +01:00
log("[DEVELOPMENT] Using in-memory database")
app.databases.use(.sqlite(.memory), as: .sqlite)
} else {
app.logger.logLevel = .notice
let dbFile = storageFolder.appendingPathComponent("db.sqlite").path
2023-02-06 22:03:02 +01:00
log("[PRODUCTION] Using database at \(dbFile)")
app.databases.use(.sqlite(.file(dbFile)), as: .sqlite)
}
app.migrations.add(UserTableMigration())
2022-10-11 12:04:15 +02:00
app.migrations.add(PasswordResetMigration())
2023-01-31 22:16:44 +01:00
do {
2023-02-16 18:51:27 +01:00
try await app.autoMigrate()
2023-01-31 22:16:44 +01:00
} catch {
2023-02-16 18:31:30 +01:00
await monitor.log("Failed to migrate database: \(error)")
try? await status.update(.initializationFailure)
2023-01-31 22:16:44 +01:00
return
}
2021-12-09 14:47:18 +01:00
2021-11-27 11:59:13 +01:00
// serve files from /Public folder
app.middleware.use(FileMiddleware(publicDirectory: app.directory.publicDirectory))
2021-11-25 19:15:38 +01:00
let db = app.databases.database(.sqlite, logger: .init(label: "Init"), on: app.databases.eventLoopGroup.next())!
2023-02-16 18:31:30 +01:00
server = try await SQLiteDatabase(database: db, mail: configuration.mail)
2022-01-24 17:15:11 +01:00
// Gracefully shut down by closing potentially open socket
DispatchQueue.global(qos: .utility).asyncAfter(deadline: .now() + .seconds(5)) {
_ = app.server.onShutdown.always { _ in
server.disconnectAllSockets()
}
}
2021-11-25 19:15:38 +01:00
// register routes
2023-01-31 22:17:15 +01:00
routes(app)
2023-01-31 22:16:44 +01:00
2023-02-16 18:31:30 +01:00
try? await status.update(.nominal)
2021-11-25 19:15:38 +01:00
}
2023-02-06 22:03:02 +01:00
func log(_ message: String) {
2023-02-16 18:31:30 +01:00
guard let observer = MetricObserver.standard else {
print(message)
return
}
Task {
await observer.log(message)
}
2023-02-06 22:03:02 +01:00
}