X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIWebSocketServer.ts;h=ea54bec0526da573c31d1c5915dfe27f270ba890;hb=5dea4c94d00775ef2ad383c4045a2181a5deb709;hp=2e03ebc290e726ba3830d37dc5476e3956ca7c7a;hpb=662710925f570077ed9af59519912546f9bb8eaa;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIWebSocketServer.ts b/src/charging-station/ui-server/UIWebSocketServer.ts index 2e03ebc2..ea54bec0 100644 --- a/src/charging-station/ui-server/UIWebSocketServer.ts +++ b/src/charging-station/ui-server/UIWebSocketServer.ts @@ -1,66 +1,178 @@ -import { Protocol, ProtocolVersion } from '../../types/UIProtocol'; -import WebSocket, { OPEN, Server } from 'ws'; +import { IncomingMessage, createServer } from 'http'; +import type internal from 'stream'; -import AbstractUIService from './ui-services/AbstractUIService'; -import Configuration from '../../utils/Configuration'; -import { IncomingMessage } from 'http'; -import { ServerOptions } from '../../types/ConfigurationData'; -import UIServiceFactory from './ui-services/UIServiceFactory'; -import Utils from '../../utils/Utils'; +import { StatusCodes } from 'http-status-codes'; +import * as uuid from 'uuid'; +import WebSocket, { RawData, WebSocketServer } from 'ws'; + +import type { UIServerConfiguration } from '../../types/ConfigurationData'; +import type { ProtocolRequest, ProtocolResponse } from '../../types/UIProtocol'; +import { WebSocketCloseEventStatusCode } from '../../types/WebSocket'; import logger from '../../utils/Logger'; +import Utils from '../../utils/Utils'; +import { AbstractUIServer } from './AbstractUIServer'; +import UIServiceFactory from './ui-services/UIServiceFactory'; +import { UIServiceUtils } from './ui-services/UIServiceUtils'; + +const moduleName = 'UIWebSocketServer'; -export default class UIWebSocketServer extends Server { - public readonly chargingStations: Set; - private readonly uiServices: Map; +export default class UIWebSocketServer extends AbstractUIServer { + private readonly webSocketServer: WebSocketServer; - public constructor(options?: ServerOptions, callback?: () => void) { - // Create the WebSocket server - super(options ?? Configuration.getUIServer().options, callback); - this.chargingStations = new Set(); - this.uiServices = new Map(); + public constructor(protected readonly uiServerConfiguration: UIServerConfiguration) { + super(uiServerConfiguration); + this.httpServer = createServer(); + this.webSocketServer = new WebSocketServer({ + handleProtocols: UIServiceUtils.handleProtocols, + noServer: true, + }); } public start(): void { - this.on('connection', (socket: WebSocket, request: IncomingMessage): void => { - const protocolIndex = socket.protocol.indexOf(Protocol.UI); - const version = socket.protocol.substring( - protocolIndex + Protocol.UI.length - ) as ProtocolVersion; - if (!this.uiServices.has(version)) { + this.webSocketServer.on('connection', (ws: WebSocket, req: IncomingMessage): void => { + const [protocol, version] = UIServiceUtils.getProtocolAndVersion(ws.protocol); + if (UIServiceUtils.isProtocolAndVersionSupported(protocol, version) === false) { + logger.error( + `${this.logPrefix( + moduleName, + 'start.server.onconnection' + )} Unsupported UI protocol version: '${protocol}${version}'` + ); + ws.close(WebSocketCloseEventStatusCode.CLOSE_PROTOCOL_ERROR); + } + if (this.uiServices.has(version) === false) { this.uiServices.set(version, UIServiceFactory.getUIServiceImplementation(version, this)); } - // FIXME: check connection validity - socket.on('message', (messageData) => { + ws.on('message', (rawData) => { + const request = this.validateRawDataRequest(rawData); + if (request === false) { + ws.close(WebSocketCloseEventStatusCode.CLOSE_INVALID_PAYLOAD); + return; + } + const [messageId, procedureName, payload] = request as ProtocolRequest; this.uiServices .get(version) - .messageHandler(messageData) + .requestHandler(this.buildProtocolRequest(messageId, procedureName, payload)) .catch(() => { - logger.error(`${this.logPrefix()} Error while handling message data: %j`, messageData); + /* Error caught by AbstractUIService */ }); }); - socket.on('error', (error) => { - logger.error(`${this.logPrefix()} Error on WebSocket: %j`, error); + ws.on('error', (error) => { + logger.error(`${this.logPrefix(moduleName, 'start.ws.onerror')} WebSocket error:`, error); + }); + ws.on('close', (code, reason) => { + logger.debug( + `${this.logPrefix( + moduleName, + 'start.ws.onclose' + )} WebSocket closed: '${Utils.getWebSocketCloseEventStatusString( + code + )}' - '${reason.toString()}'` + ); }); }); + this.httpServer.on( + 'upgrade', + (req: IncomingMessage, socket: internal.Duplex, head: Buffer): void => { + this.authenticate(req, (err) => { + if (err) { + socket.write(`HTTP/1.1 ${StatusCodes.UNAUTHORIZED} Unauthorized\r\n\r\n`); + socket.destroy(); + return; + } + this.webSocketServer.handleUpgrade(req, socket, head, (ws: WebSocket) => { + this.webSocketServer.emit('connection', ws, req); + }); + }); + } + ); + if (this.httpServer.listening === false) { + this.httpServer.listen(this.uiServerConfiguration.options); + } } public stop(): void { - this.close(); + this.chargingStations.clear(); + } + + public sendRequest(request: ProtocolRequest): void { + this.broadcastToClients(JSON.stringify(request)); } - public sendResponse(message: string): void { - this.broadcastToClients(message); + public sendResponse(response: ProtocolResponse): void { + // TODO: send response only to the client that sent the request + this.broadcastToClients(JSON.stringify(response)); } - public logPrefix(): string { - return Utils.logPrefix(' UI WebSocket Server:'); + public logPrefix(modName?: string, methodName?: string, prefixSuffix?: string): string { + const logMsgPrefix = prefixSuffix + ? `UI WebSocket Server ${prefixSuffix}` + : 'UI WebSocket Server'; + const logMsg = + modName && methodName ? ` ${logMsgPrefix} | ${modName}.${methodName}:` : ` ${logMsgPrefix} |`; + return Utils.logPrefix(logMsg); } private broadcastToClients(message: string): void { - for (const client of this.clients) { - if (client?.readyState === OPEN) { + for (const client of this.webSocketServer.clients) { + if (client?.readyState === WebSocket.OPEN) { client.send(message); } } } + + private authenticate(req: IncomingMessage, next: (err?: Error) => void): void { + if (this.isBasicAuthEnabled() === true) { + if (this.isValidBasicAuth(req) === false) { + next(new Error('Unauthorized')); + } else { + next(); + } + } else { + next(); + } + } + + private validateRawDataRequest(rawData: RawData): ProtocolRequest | false { + // logger.debug( + // `${this.logPrefix( + // moduleName, + // 'validateRawDataRequest' + // )} Raw data received in string format: ${rawData.toString()}` + // ); + + const request = JSON.parse(rawData.toString()) as ProtocolRequest; + + if (Array.isArray(request) === false) { + logger.error( + `${this.logPrefix( + moduleName, + 'validateRawDataRequest' + )} UI protocol request is not an array:`, + request + ); + return false; + } + + if (request.length !== 3) { + logger.error( + `${this.logPrefix(moduleName, 'validateRawDataRequest')} UI protocol request is malformed:`, + request + ); + return false; + } + + if (uuid.validate(request[0]) === false) { + logger.error( + `${this.logPrefix( + moduleName, + 'validateRawDataRequest' + )} UI protocol request UUID field is invalid:`, + request + ); + return false; + } + + return request; + } }