2022-01-23 20:49:06 +01:00
|
|
|
import Vapor
|
|
|
|
|
2022-04-07 23:53:25 +02:00
|
|
|
var deviceManager: DeviceManager!
|
2022-01-24 17:17:06 +01:00
|
|
|
|
2022-01-23 20:49:06 +01:00
|
|
|
// configures your application
|
|
|
|
public func configure(_ app: Application) throws {
|
2022-04-13 14:57:02 +02:00
|
|
|
app.http.server.configuration.port = Config.port
|
2022-01-24 17:17:06 +01:00
|
|
|
|
|
|
|
let storageFolder = URL(fileURLWithPath: app.directory.resourcesDirectory)
|
2022-04-13 14:57:02 +02:00
|
|
|
let keyFile = storageFolder.appendingPathComponent(Config.keyFileName)
|
2022-01-24 17:17:06 +01:00
|
|
|
let deviceKey = try String(contentsOf: keyFile)
|
|
|
|
.trimmingCharacters(in: .whitespacesAndNewlines)
|
2022-04-07 23:53:25 +02:00
|
|
|
deviceManager = DeviceManager(deviceKey: deviceKey)
|
2022-01-23 20:49:06 +01:00
|
|
|
try routes(app)
|
2022-01-24 17:17:06 +01:00
|
|
|
|
|
|
|
// Gracefully shut down by closing potentially open socket
|
|
|
|
DispatchQueue.global(qos: .utility).asyncAfter(deadline: .now() + .seconds(5)) {
|
|
|
|
_ = app.server.onShutdown.always { _ in
|
2022-04-07 23:53:25 +02:00
|
|
|
deviceManager.removeDeviceConnection()
|
2022-01-24 17:17:06 +01:00
|
|
|
}
|
|
|
|
}
|
2022-01-23 20:49:06 +01:00
|
|
|
}
|