X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2FOCPPIncomingRequestService.ts;h=876e71d8483dd83f313a48f26af9e0ec00cbd102;hb=22e0d48e12052aaa7ed3f76fc59cac779ae67a5c;hp=e815fe298d4590f610f279443ca46998817552e2;hpb=d18886407cdb8b8148c87492f2c953075e708401;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/OCPPIncomingRequestService.ts b/src/charging-station/ocpp/OCPPIncomingRequestService.ts index e815fe29..876e71d8 100644 --- a/src/charging-station/ocpp/OCPPIncomingRequestService.ts +++ b/src/charging-station/ocpp/OCPPIncomingRequestService.ts @@ -1,22 +1,105 @@ -import ChargingStation from '../ChargingStation'; -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 { 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'; +import OCPPConstants from './OCPPConstants'; +import { OCPPServiceUtils } from './OCPPServiceUtils'; + +const moduleName = 'OCPPIncomingRequestService'; export default abstract class OCPPIncomingRequestService { - protected 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 () => T): T { + if (OCPPIncomingRequestService.instance === null) { + OCPPIncomingRequestService.instance = new this(); + } + return OCPPIncomingRequestService.instance as T; + } - constructor(chargingStation: ChargingStation) { - this.chargingStation = chargingStation; + protected handleIncomingRequestError( + chargingStation: ChargingStation, + commandName: IncomingRequestCommand, + error: Error, + params: HandleErrorParams = { throwError: true } + ): T | undefined { + logger.error( + `${chargingStation.logPrefix()} ${moduleName}.handleIncomingRequestError: Incoming request command '${commandName}' error:`, + error + ); + if (!params?.throwError && params?.errorResponse) { + return params?.errorResponse; + } + if (params?.throwError && !params?.errorResponse) { + throw error; + } + if (params?.throwError && params?.errorResponse) { + return params?.errorResponse; + } } - protected handleIncomingRequestError(commandName: IncomingRequestCommand, error: Error, errorOcppResponse?: T): T { - logger.error(this.chargingStation.logPrefix() + ' Incoming request command ' + commandName + ' error: %j', error); - if (errorOcppResponse) { - return errorOcppResponse; + protected validateIncomingRequestPayload( + chargingStation: ChargingStation, + commandName: IncomingRequestCommand, + schema: JSONSchemaType, + payload: T + ): boolean { + if (chargingStation.getPayloadSchemaValidation() === false) { + return true; } - throw error; + 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 handleRequest(messageId: string, commandName: IncomingRequestCommand, commandPayload: JsonType): Promise; + public abstract incomingRequestHandler( + chargingStation: ChargingStation, + messageId: string, + commandName: IncomingRequestCommand, + commandPayload: JsonType + ): Promise; }