X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2FOCPPIncomingRequestService.ts;h=ddffa657f2a131df81b11058b786807eea15e0fd;hb=4d20f040ab91f06c9399dbaf084358183cf75314;hp=0d56ebe84e502cc717d44e2229ac3702f039e18d;hpb=e7aeea18e189dd087c8f951cf77a253e2818ae90;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/OCPPIncomingRequestService.ts b/src/charging-station/ocpp/OCPPIncomingRequestService.ts index 0d56ebe8..ddffa657 100644 --- a/src/charging-station/ocpp/OCPPIncomingRequestService.ts +++ b/src/charging-station/ocpp/OCPPIncomingRequestService.ts @@ -1,38 +1,56 @@ -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 OCPPConstants from './OCPPConstants'; +import { OCPPServiceUtils } from './OCPPServiceUtils'; +import OCPPError from '../../exception/OCPPError'; +import type { HandleErrorParams } from '../../types/Error'; +import type { JsonObject, JsonType } from '../../types/JsonType'; +import type { OCPPVersion } from '../../types/ocpp/OCPPVersion'; +import type { IncomingRequestCommand } from '../../types/ocpp/Requests'; +import type { ClearCacheResponse } from '../../types/ocpp/Responses'; import logger from '../../utils/Logger'; +import type ChargingStation from '../ChargingStation'; +import { ChargingStationUtils } from '../ChargingStationUtils'; + +const moduleName = 'OCPPIncomingRequestService'; export default abstract class OCPPIncomingRequestService { - private static readonly instances: Map = new Map< - string, - OCPPIncomingRequestService - >(); - protected chargingStation: ChargingStation; - - protected constructor(chargingStation: ChargingStation) { - this.chargingStation = chargingStation; + private static instance: OCPPIncomingRequestService | null = null; + protected asyncResource: AsyncResource; + private readonly version: OCPPVersion; + private readonly ajv: Ajv; + protected abstract jsonSchemas: Map>; + + protected constructor(version: OCPPVersion) { + this.version = version; + this.ajv = new Ajv({ + keywords: ['javaType'], + multipleOfPrecision: 2, + }); + ajvFormats(this.ajv); + this.asyncResource = new AsyncResource(moduleName); + this.incomingRequestHandler.bind(this); + this.validateIncomingRequestPayload.bind(this); } - public static getInstance( - this: new (chargingStation: ChargingStation) => T, - chargingStation: ChargingStation - ): T { - if (!OCPPIncomingRequestService.instances.has(chargingStation.id)) { - OCPPIncomingRequestService.instances.set(chargingStation.id, new this(chargingStation)); + public static getInstance(this: new () => T): T { + if (OCPPIncomingRequestService.instance === null) { + OCPPIncomingRequestService.instance = new this(); } - return OCPPIncomingRequestService.instances.get(chargingStation.id) as T; + return OCPPIncomingRequestService.instance as T; } protected handleIncomingRequestError( + chargingStation: ChargingStation, commandName: IncomingRequestCommand, error: Error, params: HandleErrorParams = { throwError: true } - ): T { + ): T | undefined { logger.error( - this.chargingStation.logPrefix() + ' Incoming request command %s error: %j', - commandName, + `${chargingStation.logPrefix()} ${moduleName}.handleIncomingRequestError: Incoming request command '${commandName}' error:`, error ); if (!params?.throwError && params?.errorResponse) { @@ -46,7 +64,40 @@ export default abstract class OCPPIncomingRequestService { } } - public abstract handleRequest( + 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: Command '${commandName}' 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) + ); + } + + protected handleRequestClearCache(chargingStation: ChargingStation): ClearCacheResponse { + chargingStation.authorizedTagsCache.deleteAuthorizedTags( + ChargingStationUtils.getAuthorizationFile(chargingStation.stationInfo) + ); + return OCPPConstants.OCPP_RESPONSE_ACCEPTED; + } + + public abstract incomingRequestHandler( + chargingStation: ChargingStation, messageId: string, commandName: IncomingRequestCommand, commandPayload: JsonType