X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIHttpServer.ts;h=ce52ed4b5dd432a9c9035bbdc0eac01c7a422e4f;hb=10db00b2276f4cc7a88dd18e8f6f80593d6458b3;hp=a9b620635d03df20db1898e6894fb94be00c8993;hpb=a745e4127ed71e21b50d0397cd8ef79bf59a7573;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 a9b62063..ce52ed4b 100644 --- a/src/charging-station/ui-server/UIHttpServer.ts +++ b/src/charging-station/ui-server/UIHttpServer.ts @@ -3,7 +3,7 @@ import { IncomingMessage, RequestListener, Server, ServerResponse } from 'http'; import { StatusCodes } from 'http-status-codes'; import BaseError from '../../exception/BaseError'; -import { ServerOptions } from '../../types/ConfigurationData'; +import type { UIServerConfiguration } from '../../types/ConfigurationData'; import { ProcedureName, Protocol, @@ -11,10 +11,8 @@ import { ProtocolResponse, ProtocolVersion, RequestPayload, - ResponsePayload, ResponseStatus, } from '../../types/UIProtocol'; -import Configuration from '../../utils/Configuration'; import logger from '../../utils/Logger'; import Utils from '../../utils/Utils'; import { AbstractUIServer } from './AbstractUIServer'; @@ -28,14 +26,16 @@ type responseHandler = { procedureName: ProcedureName; res: ServerResponse }; export default class UIHttpServer extends AbstractUIServer { private readonly responseHandlers: Map; - public constructor(private options?: ServerOptions) { - super(); - this.server = new Server(this.requestListener.bind(this) as RequestListener); + 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 { - (this.server as Server).listen(this.options ?? Configuration.getUIServer().options); + if (this.httpServer.listening === false) { + this.httpServer.listen(this.uiServerConfiguration.options); + } } public stop(): void { @@ -43,33 +43,42 @@ export default class UIHttpServer extends AbstractUIServer { } // eslint-disable-next-line @typescript-eslint/no-unused-vars - public sendRequest(request: string): void { + public sendRequest(request: ProtocolRequest): void { // This is intentionally left blank } - public sendResponse(response: string): void { - const [uuid, payload] = JSON.parse(response) as ProtocolResponse; - const statusCode = this.responseStatusToStatusCode(payload.status); - if (this.responseHandlers.has(uuid)) { + public sendResponse(response: ProtocolResponse): void { + const [uuid, payload] = response; + if (this.responseHandlers.has(uuid) === true) { const { res } = this.responseHandlers.get(uuid); - res.writeHead(statusCode, { 'Content-Type': 'application/json' }); + res.writeHead(this.responseStatusToStatusCode(payload.status), { + 'Content-Type': 'application/json', + }); res.write(JSON.stringify(payload)); res.end(); this.responseHandlers.delete(uuid); } else { logger.error( - `${this.logPrefix()} ${moduleName}.sendResponse: Response for unknown request: ${response}` + `${this.logPrefix(moduleName, 'sendResponse')} Response for unknown request id: ${uuid}` ); } } - public logPrefix(modName?: string, methodName?: string): string { + public logPrefix(modName?: string, methodName?: string, prefixSuffix?: string): string { + const logMsgPrefix = prefixSuffix ? `UI HTTP Server ${prefixSuffix}` : 'UI HTTP Server'; const logMsg = - modName && methodName ? ` UI HTTP Server | ${modName}.${methodName}:` : ' UI HTTP Server |'; + modName && methodName ? ` ${logMsgPrefix} | ${modName}.${methodName}:` : ` ${logMsgPrefix} |`; return Utils.logPrefix(logMsg); } private requestListener(req: IncomingMessage, res: ServerResponse): void { + if (this.authenticate(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; + } // Expected request URL pathname: /ui/:version/:procedureName const [protocol, version, procedureName] = req.url?.split('/').slice(1) as [ Protocol, @@ -79,7 +88,7 @@ export default class UIHttpServer extends AbstractUIServer { const uuid = Utils.generateUUID(); this.responseHandlers.set(uuid, { procedureName, res }); try { - if (UIServiceUtils.isProtocolSupported(protocol, version) === false) { + if (UIServiceUtils.isProtocolAndVersionSupported(protocol, version) === false) { throw new BaseError(`Unsupported UI protocol version: '/${protocol}/${version}'`); } req.on('error', (error) => { @@ -88,7 +97,7 @@ export default class UIHttpServer extends AbstractUIServer { error ); }); - if (!this.uiServices.has(version)) { + if (this.uiServices.has(version) === false) { this.uiServices.set(version, UIServiceFactory.getUIServiceImplementation(version, this)); } if (req.method === 'POST') { @@ -101,9 +110,11 @@ export default class UIHttpServer extends AbstractUIServer { const body = JSON.parse(Buffer.concat(bodyBuffer).toString()) as RequestPayload; this.uiServices .get(version) - .requestHandler(this.buildRequest(uuid, procedureName, body ?? {})) + .requestHandler(this.buildProtocolRequest(uuid, procedureName, body ?? {})) .catch(() => { - this.sendResponse(this.buildResponse(uuid, { status: ResponseStatus.FAILURE })); + this.sendResponse( + this.buildProtocolResponse(uuid, { status: ResponseStatus.FAILURE }) + ); }); }); } else { @@ -114,20 +125,18 @@ export default class UIHttpServer extends AbstractUIServer { `${this.logPrefix(moduleName, 'requestListener')} Handle HTTP request error:`, error ); - this.sendResponse(this.buildResponse(uuid, { status: ResponseStatus.FAILURE })); + this.sendResponse(this.buildProtocolResponse(uuid, { status: ResponseStatus.FAILURE })); } } - private buildRequest( - id: string, - procedureName: ProcedureName, - requestPayload: RequestPayload - ): string { - return JSON.stringify([id, procedureName, requestPayload] as ProtocolRequest); - } - - private buildResponse(id: string, responsePayload: ResponsePayload): string { - return JSON.stringify([id, responsePayload] as ProtocolResponse); + private authenticate(req: IncomingMessage): boolean { + if (this.isBasicAuthEnabled() === true) { + if (this.isValidBasicAuth(req) === true) { + return true; + } + return false; + } + return true; } private responseStatusToStatusCode(status: ResponseStatus): StatusCodes {