X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIHttpServer.ts;h=223c5bbbff1664dc111b0e62508436c726168673;hb=b03df580733c540eafc26269ee267b675e6b4ae8;hp=6ae03d5d90ce2ace0a903db63ce24f8b101d6842;hpb=623b39b56185797f9976508571ca38619518a975;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 6ae03d5d..223c5bbb 100644 --- a/src/charging-station/ui-server/UIHttpServer.ts +++ b/src/charging-station/ui-server/UIHttpServer.ts @@ -16,7 +16,7 @@ import { import logger from '../../utils/Logger'; import Utils from '../../utils/Utils'; import { AbstractUIServer } from './AbstractUIServer'; -import { UIServiceUtils } from './ui-services/UIServiceUtils'; +import { UIServerUtils } from './UIServerUtils'; const moduleName = 'UIHttpServer'; @@ -27,9 +27,7 @@ export default class UIHttpServer extends AbstractUIServer { public start(): void { this.httpServer.on('request', this.requestListener.bind(this) as RequestListener); - if (this.httpServer.listening === false) { - this.httpServer.listen(this.uiServerConfiguration.options); - } + this.startHttpServer(); } // eslint-disable-next-line @typescript-eslint/no-unused-vars @@ -39,17 +37,26 @@ export default class UIHttpServer extends AbstractUIServer { public sendResponse(response: ProtocolResponse): void { const [uuid, payload] = response; - if (this.responseHandlers.has(uuid) === true) { - const res = this.responseHandlers.get(uuid) as ServerResponse; - res.writeHead(this.responseStatusToStatusCode(payload.status), { - 'Content-Type': 'application/json', - }); - res.end(JSON.stringify(payload)); - 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); } } @@ -63,12 +70,14 @@ export default class UIHttpServer extends AbstractUIServer { private requestListener(req: IncomingMessage, res: ServerResponse): void { this.authenticate(req, (err) => { if (err) { - res.setHeader('Content-Type', 'text/plain'); - res.setHeader('WWW-Authenticate', 'Basic realm=users'); - res.writeHead(StatusCodes.UNAUTHORIZED); - res.end(`${StatusCodes.UNAUTHORIZED} Unauthorized`); + res + .writeHead(StatusCodes.UNAUTHORIZED, { + 'Content-Type': 'text/plain', + 'WWW-Authenticate': 'Basic realm=users', + }) + .end(`${StatusCodes.UNAUTHORIZED} Unauthorized`) + .destroy(); req.destroy(); - res.destroy(); } }); // Expected request URL pathname: /ui/:version/:procedureName @@ -80,8 +89,9 @@ export default class UIHttpServer extends AbstractUIServer { const uuid = Utils.generateUUID(); 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) => { @@ -102,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 {