X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20RequestService.ts;h=18816f0ede247d613e4ce18079f5c1ffe0ee6394;hb=b2a0452d368cfc43bbacc4991de59afa64f662a4;hp=8dfdce680247c2e3c173a28ed6df19a56add7953;hpb=953d6b028e82d6997897802afefbb4ce0d225dee;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/2.0/OCPP20RequestService.ts b/src/charging-station/ocpp/2.0/OCPP20RequestService.ts index 8dfdce68..18816f0e 100644 --- a/src/charging-station/ocpp/2.0/OCPP20RequestService.ts +++ b/src/charging-station/ocpp/2.0/OCPP20RequestService.ts @@ -1,32 +1,59 @@ -// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. +// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. + +import fs from 'fs'; +import path from 'path'; +import { fileURLToPath } from 'url'; import type { JSONSchemaType } from 'ajv'; +import { OCPP20ServiceUtils } from './OCPP20ServiceUtils'; import OCPPError from '../../../exception/OCPPError'; import type { JsonObject, JsonType } from '../../../types/JsonType'; -import type { OCPP20RequestCommand } from '../../../types/ocpp/2.0/Requests'; +import { + type OCPP20BootNotificationRequest, + type OCPP20HeartbeatRequest, + OCPP20RequestCommand, + type OCPP20StatusNotificationRequest, +} from '../../../types/ocpp/2.0/Requests'; import { ErrorType } from '../../../types/ocpp/ErrorType'; +import { OCPPVersion } from '../../../types/ocpp/OCPPVersion'; import type { RequestParams } from '../../../types/ocpp/Requests'; -import logger from '../../../utils/Logger'; import Utils from '../../../utils/Utils'; import type ChargingStation from '../../ChargingStation'; import OCPPRequestService from '../OCPPRequestService'; import type OCPPResponseService from '../OCPPResponseService'; -import { OCPP20ServiceUtils } from './OCPP20ServiceUtils'; const moduleName = 'OCPP20RequestService'; export default class OCPP20RequestService extends OCPPRequestService { - private jsonSchemas: Map>; + protected jsonSchemas: Map>; public constructor(ocppResponseService: OCPPResponseService) { if (new.target?.name === moduleName) { throw new TypeError(`Cannot construct ${new.target?.name} instances directly`); } - super(ocppResponseService); - this.jsonSchemas = new Map>(); + super(OCPPVersion.VERSION_20, ocppResponseService); + this.jsonSchemas = new Map>([ + [ + OCPP20RequestCommand.BOOT_NOTIFICATION, + this.parseJsonSchemaFile( + '../../../assets/json-schemas/ocpp/2.0/BootNotificationRequest.json' + ), + ], + [ + OCPP20RequestCommand.HEARTBEAT, + this.parseJsonSchemaFile( + '../../../assets/json-schemas/ocpp/2.0/HeartbeatRequest.json' + ), + ], + [ + OCPP20RequestCommand.STATUS_NOTIFICATION, + this.parseJsonSchemaFile( + '../../../assets/json-schemas/ocpp/2.0/StatusNotificationRequest.json' + ), + ], + ]); this.buildRequestPayload.bind(this); - this.validatePayload.bind(this); } public async requestHandler( @@ -41,7 +68,6 @@ export default class OCPP20RequestService extends OCPPRequestService { commandName, commandParams ); - this.validatePayload(chargingStation, commandName, requestPayload); return (await this.sendMessage( chargingStation, Utils.generateUUID(), @@ -66,6 +92,41 @@ export default class OCPP20RequestService extends OCPPRequestService { ): Request { commandParams = commandParams as JsonObject; switch (commandName) { + case OCPP20RequestCommand.BOOT_NOTIFICATION: + commandParams.chargingStation = commandParams.chargingStation as JsonObject; + commandParams.chargingStation.modem = commandParams.chargingStation.modem as JsonObject; + return { + reason: commandParams?.reason, + chargingStation: { + model: commandParams?.chargingStation?.model, + vendorName: commandParams?.chargingStation?.vendorName, + ...(!Utils.isUndefined(commandParams?.chargingStation?.firmwareVersion) && { + firmwareVersion: commandParams.chargingStation?.firmwareVersion, + }), + ...(!Utils.isUndefined(commandParams?.chargingStation?.serialNumber) && { + serialNumber: commandParams.chargingStation?.serialNumber, + }), + ...(!Utils.isUndefined(commandParams?.chargingStation?.modem) && { + modem: { + ...(!Utils.isUndefined(commandParams?.chargingStation?.modem?.iccid) && { + iccid: commandParams.chargingStation.modem.iccid, + }), + ...(!Utils.isUndefined(commandParams?.chargingStation?.modem?.imsi) && { + imsi: commandParams.chargingStation.modem.imsi, + }), + }, + }), + }, + } as unknown as Request; + case OCPP20RequestCommand.HEARTBEAT: + return {} as unknown as Request; + case OCPP20RequestCommand.STATUS_NOTIFICATION: + return { + timestamp: commandParams?.timestamp ?? new Date(), + connectorStatus: commandParams?.connectorStatus, + evseId: commandParams?.evseId, + connectorId: commandParams?.connectorId, + } as unknown as Request; default: // OCPPError usage here is debatable: it's an error in the OCPP stack but not targeted to sendError(). throw new OCPPError( @@ -78,22 +139,12 @@ export default class OCPP20RequestService extends OCPPRequestService { } } - private validatePayload( - chargingStation: ChargingStation, - commandName: OCPP20RequestCommand, - requestPayload: Request - ): boolean { - if (this.jsonSchemas.has(commandName)) { - return this.validateRequestPayload( - chargingStation, - commandName, - this.jsonSchemas.get(commandName), - requestPayload - ); - } - logger.warn( - `${chargingStation.logPrefix()} ${moduleName}.validatePayload: No JSON schema found for command ${commandName} PDU validation` - ); - return false; + private parseJsonSchemaFile(relativePath: string): JSONSchemaType { + return JSON.parse( + fs.readFileSync( + path.resolve(path.dirname(fileURLToPath(import.meta.url)), relativePath), + 'utf8' + ) + ) as JSONSchemaType; } }