X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIHttpServer.ts;h=60bd7fdcce2216e465a2bb01c607dd98dbfea4f3;hb=edd134392e237a3242dc2093341df70244c51472;hp=280f1d38040d71ab7151d1c33fa69b93f0977189;hpb=eb3abc4fe41400debcf894e53f91937498e77571;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIHttpServer.ts b/src/charging-station/ui-server/UIHttpServer.ts index 280f1d38..60bd7fdc 100644 --- a/src/charging-station/ui-server/UIHttpServer.ts +++ b/src/charging-station/ui-server/UIHttpServer.ts @@ -1,45 +1,33 @@ -import { IncomingMessage, RequestListener, Server, ServerResponse } from 'http'; +import type { IncomingMessage, RequestListener, ServerResponse } from 'http'; import { StatusCodes } from 'http-status-codes'; import BaseError from '../../exception/BaseError'; import type { UIServerConfiguration } from '../../types/ConfigurationData'; import { - ProcedureName, - Protocol, - ProtocolRequest, - ProtocolResponse, - ProtocolVersion, - RequestPayload, + type ProcedureName, + type Protocol, + type ProtocolRequest, + type ProtocolResponse, + type ProtocolVersion, + type RequestPayload, ResponseStatus, } from '../../types/UIProtocol'; 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'; +import { UIServerUtils } from './UIServerUtils'; const moduleName = 'UIHttpServer'; -type responseHandler = { procedureName: ProcedureName; res: ServerResponse }; - export default class UIHttpServer extends AbstractUIServer { - private readonly responseHandlers: Map; - public constructor(protected readonly uiServerConfiguration: UIServerConfiguration) { super(uiServerConfiguration); - this.httpServer = new Server(this.requestListener.bind(this) as RequestListener); - this.responseHandlers = new Map(); } public start(): void { - if (this.httpServer.listening === false) { - this.httpServer.listen(this.uiServerConfiguration.options); - } - } - - public stop(): void { - this.chargingStations.clear(); + this.httpServer.on('request', this.requestListener.bind(this) as RequestListener); + this.startHttpServer(); } // eslint-disable-next-line @typescript-eslint/no-unused-vars @@ -49,17 +37,26 @@ export default class UIHttpServer extends AbstractUIServer { public sendResponse(response: ProtocolResponse): void { const [uuid, payload] = response; - const statusCode = this.responseStatusToStatusCode(payload.status); - if (this.responseHandlers.has(uuid) === true) { - const { res } = this.responseHandlers.get(uuid); - res.writeHead(statusCode, { 'Content-Type': 'application/json' }); - res.write(JSON.stringify(payload)); - res.end(); - this.responseHandlers.delete(uuid); - } else { + try { + if (this.responseHandlers.has(uuid) === true) { + const res = this.responseHandlers.get(uuid) as ServerResponse; + res + .writeHead(this.responseStatusToStatusCode(payload.status), { + 'Content-Type': 'application/json', + }) + .end(JSON.stringify(payload)); + } else { + logger.error( + `${this.logPrefix(moduleName, 'sendResponse')} Response for unknown request id: ${uuid}` + ); + } + } catch (error) { logger.error( - `${this.logPrefix(moduleName, 'sendResponse')} Response for unknown request id: ${uuid}` + `${this.logPrefix(moduleName, 'sendResponse')} Error at sending response id '${uuid}':`, + error ); + } finally { + this.responseHandlers.delete(uuid); } } @@ -71,13 +68,18 @@ export default class UIHttpServer extends AbstractUIServer { } private requestListener(req: IncomingMessage, res: ServerResponse): void { - if (this.isBasicAuthEnabled() === true && this.isValidBasicAuth(req) === false) { - res.setHeader('Content-Type', 'text/plain'); - res.setHeader('WWW-Authenticate', 'Basic realm=users'); - res.writeHead(StatusCodes.UNAUTHORIZED); - res.end(`${StatusCodes.UNAUTHORIZED} Unauthorized`); - return; - } + this.authenticate(req, (err) => { + if (err) { + res + .writeHead(StatusCodes.UNAUTHORIZED, { + 'Content-Type': 'text/plain', + 'WWW-Authenticate': 'Basic realm=users', + }) + .end(`${StatusCodes.UNAUTHORIZED} Unauthorized`) + .destroy(); + req.destroy(); + } + }); // Expected request URL pathname: /ui/:version/:procedureName const [protocol, version, procedureName] = req.url?.split('/').slice(1) as [ Protocol, @@ -85,20 +87,19 @@ export default class UIHttpServer extends AbstractUIServer { ProcedureName ]; const uuid = Utils.generateUUID(); - this.responseHandlers.set(uuid, { procedureName, res }); + this.responseHandlers.set(uuid, res); try { - if (UIServiceUtils.isProtocolAndVersionSupported(protocol, version) === false) { - throw new BaseError(`Unsupported UI protocol version: '/${protocol}/${version}'`); + const fullProtocol = `${protocol}${version}`; + if (UIServerUtils.isProtocolAndVersionSupported(fullProtocol) === false) { + throw new BaseError(`Unsupported UI protocol version: '${fullProtocol}'`); } + this.registerProtocolVersionUIService(version); req.on('error', (error) => { logger.error( `${this.logPrefix(moduleName, 'requestListener.req.onerror')} Error on HTTP request:`, error ); }); - if (this.uiServices.has(version) === false) { - this.uiServices.set(version, UIServiceFactory.getUIServiceImplementation(version, this)); - } if (req.method === 'POST') { const bodyBuffer = []; req @@ -111,9 +112,7 @@ export default class UIHttpServer extends AbstractUIServer { .get(version) .requestHandler(this.buildProtocolRequest(uuid, procedureName, body ?? {})) .catch(() => { - this.sendResponse( - this.buildProtocolResponse(uuid, { status: ResponseStatus.FAILURE }) - ); + /* Error caught by AbstractUIService */ }); }); } else {