Sesame-Server/Sources/App/routes.swift

92 lines
3.3 KiB
Swift
Raw Normal View History

2022-01-23 20:49:06 +01:00
import Vapor
2022-04-13 14:56:47 +02:00
extension RouteAPI {
2022-01-24 17:17:06 +01:00
var path: PathComponent {
.init(stringLiteral: rawValue)
}
var pathParameter: PathComponent {
.parameter(rawValue)
}
}
2022-04-07 23:53:25 +02:00
private func messageTransmission(_ req: Request) -> EventLoopFuture<DeviceResponse> {
2022-01-24 17:17:06 +01:00
guard let body = req.body.data else {
return req.eventLoop.makeSucceededFuture(.noBodyData)
2022-01-24 17:17:06 +01:00
}
2022-05-01 13:12:16 +02:00
guard let message = ServerMessage(decodeFrom: body) else {
2022-04-07 23:53:25 +02:00
return req.eventLoop.makeSucceededFuture(.invalidMessageData)
2022-01-24 17:17:06 +01:00
}
2022-05-01 13:12:16 +02:00
guard deviceManager.authenticateRemote(message.authToken) else {
return req.eventLoop.makeSucceededFuture(.invalidMessageData)
}
return deviceManager.sendMessageToDevice(message.message, on: req.eventLoop)
}
private func deviceStatus(_ req: Request) -> EventLoopFuture<DeviceResponse> {
guard let body = req.body.data else {
return req.eventLoop.makeSucceededFuture(.noBodyData)
}
guard let authToken = ServerMessage.token(from: body) else {
return req.eventLoop.makeSucceededFuture(.invalidMessageData)
}
guard deviceManager.authenticateRemote(authToken) else {
return req.eventLoop.makeSucceededFuture(.invalidMessageData)
}
guard deviceManager.deviceIsConnected else {
return req.eventLoop.makeSucceededFuture(.deviceNotConnected)
}
return req.eventLoop.makeSucceededFuture(.deviceConnected)
2022-01-24 17:17:06 +01:00
}
2022-01-23 20:49:06 +01:00
func routes(_ app: Application) throws {
2022-01-24 17:17:06 +01:00
/**
Get the connection status of the device.
2022-05-01 13:12:16 +02:00
The request expects the authentication token of the remote in the body data of the POST request.
2022-01-24 17:17:06 +01:00
2022-05-01 13:12:16 +02:00
The request returns one byte of data, which is the raw value of a `MessageResult`.
Possible results are `noBodyData`, `invalidMessageData`, `deviceNotConnected`, `deviceConnected`.
2022-01-24 17:17:06 +01:00
*/
2022-05-01 13:12:16 +02:00
app.post(RouteAPI.getDeviceStatus.path) { req in
deviceStatus(req).map {
Response(status: .ok, body: .init(data: $0.encoded))
}
2022-01-24 17:17:06 +01:00
}
/**
Post a message to the device for unlocking.
2022-05-01 13:12:16 +02:00
The expects a `ServerMessage` in the body data of the POST request, containing the valid remote authentication token and the message to send to the device.
2022-01-24 17:17:06 +01:00
2022-04-07 23:53:25 +02:00
The request returns one or `Message.length+1` bytes of data, where the first byte is the raw value of a `MessageResult`,
and the optional following bytes contain the response message of the device. This request does not complete until either the device responds or the request times out. The timeout is specified by `KeyManagement.deviceTimeout`.
2022-01-24 17:17:06 +01:00
*/
2022-04-13 14:56:47 +02:00
app.post(RouteAPI.postMessage.path) { req in
2022-04-07 23:53:25 +02:00
messageTransmission(req).map {
Response(status: .ok, body: .init(data: $0.encoded))
}
2022-01-23 20:49:06 +01:00
}
/**
Start a new websocket connection for the device to receive messages from the server
2022-01-23 20:49:06 +01:00
- Returns: Nothing
- Note: The first message from the device over the connection must be a valid auth token.
2022-01-23 20:49:06 +01:00
*/
2022-04-13 14:56:47 +02:00
app.webSocket(RouteAPI.socket.path) { req, socket in
2022-01-24 17:17:06 +01:00
socket.onBinary { _, data in
2022-04-07 23:53:25 +02:00
deviceManager.processDeviceResponse(data)
2022-01-23 20:49:06 +01:00
}
2022-01-24 17:17:06 +01:00
socket.onText { _, text in
2022-05-01 13:28:06 +02:00
deviceManager.authenticateDevice(hash: text)
2022-01-23 20:49:06 +01:00
}
2022-01-24 17:17:06 +01:00
_ = socket.onClose.always { _ in
2022-04-07 23:53:25 +02:00
deviceManager.didCloseDeviceSocket()
2022-01-23 20:49:06 +01:00
}
2022-04-07 23:53:25 +02:00
deviceManager.createNewDeviceConnection(socket)
2022-01-23 20:49:06 +01:00
}
}