X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2FOCPPIncomingRequestService.ts;h=6015d4d9b8037956e1434ae23b934fd4f98bad6e;hb=b0342994636646699094b2d16a767d6d902d2bde;hp=bf5170956f499d4c9e41897f879bc0a1e095c320;hpb=08f130a055123f5e47c59e1a64875f8cff44d020;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/OCPPIncomingRequestService.ts b/src/charging-station/ocpp/OCPPIncomingRequestService.ts index bf517095..6015d4d9 100644 --- a/src/charging-station/ocpp/OCPPIncomingRequestService.ts +++ b/src/charging-station/ocpp/OCPPIncomingRequestService.ts @@ -1,18 +1,36 @@ -import type ChargingStation from '../ChargingStation'; -import { HandleErrorParams } from '../../types/Error'; -import { IncomingRequestCommand } from '../../types/ocpp/Requests'; -import { JsonType } from '../../types/JsonType'; +import { AsyncResource } from 'async_hooks'; + +import Ajv, { type JSONSchemaType } from 'ajv'; +import ajvFormats from 'ajv-formats'; + +import OCPPError from '../../exception/OCPPError'; +import type { HandleErrorParams } from '../../types/Error'; +import type { JsonType } from '../../types/JsonType'; +import type { OCPPVersion } from '../../types/ocpp/OCPPVersion'; +import type { IncomingRequestCommand } from '../../types/ocpp/Requests'; import logger from '../../utils/Logger'; +import type ChargingStation from '../ChargingStation'; +import { OCPPServiceUtils } from './OCPPServiceUtils'; + +const moduleName = 'OCPPIncomingRequestService'; export default abstract class OCPPIncomingRequestService { private static instance: OCPPIncomingRequestService | null = null; + protected asyncResource: AsyncResource; + private readonly version: OCPPVersion; + private readonly ajv: Ajv; - protected constructor() { - // This is intentional + protected constructor(version: OCPPVersion) { + this.version = version; + this.ajv = new Ajv(); + ajvFormats(this.ajv); + this.asyncResource = new AsyncResource(moduleName); + this.incomingRequestHandler.bind(this); + this.validateIncomingRequestPayload.bind(this); } public static getInstance(this: new () => T): T { - if (!OCPPIncomingRequestService.instance) { + if (OCPPIncomingRequestService.instance === null) { OCPPIncomingRequestService.instance = new this(); } return OCPPIncomingRequestService.instance as T; @@ -23,10 +41,9 @@ export default abstract class OCPPIncomingRequestService { commandName: IncomingRequestCommand, error: Error, params: HandleErrorParams = { throwError: true } - ): T { + ): T | undefined { logger.error( - chargingStation.logPrefix() + ' Incoming request command %s error: %j', - commandName, + `${chargingStation.logPrefix()} ${moduleName}.handleIncomingRequestError: Incoming request command '${commandName}' error:`, error ); if (!params?.throwError && params?.errorResponse) { @@ -40,6 +57,31 @@ export default abstract class OCPPIncomingRequestService { } } + protected validateIncomingRequestPayload( + chargingStation: ChargingStation, + commandName: IncomingRequestCommand, + schema: JSONSchemaType, + payload: T + ): boolean { + if (chargingStation.getPayloadSchemaValidation() === false) { + return true; + } + const validate = this.ajv.compile(schema); + if (validate(payload)) { + return true; + } + logger.error( + `${chargingStation.logPrefix()} ${moduleName}.validateIncomingRequestPayload: Incoming request PDU is invalid: %j`, + validate.errors + ); + throw new OCPPError( + OCPPServiceUtils.ajvErrorsToErrorType(validate.errors), + 'Incoming request PDU is invalid', + commandName, + JSON.stringify(validate.errors, null, 2) + ); + } + public abstract incomingRequestHandler( chargingStation: ChargingStation, messageId: string,