X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Focpp%2F2.0%2FOCPP20IncomingRequestService.ts;h=96a66f1ad01d39b9fa8c72d161f0c3ed2c23c6b6;hb=262c47b2dbe7ad59fa523e77668dd0b994214cb2;hp=04715d5a3e4af77bc637971bc41b8d61bd0ad66f;hpb=edd134392e237a3242dc2093341df70244c51472;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ocpp/2.0/OCPP20IncomingRequestService.ts b/src/charging-station/ocpp/2.0/OCPP20IncomingRequestService.ts index 04715d5a..96a66f1a 100644 --- a/src/charging-station/ocpp/2.0/OCPP20IncomingRequestService.ts +++ b/src/charging-station/ocpp/2.0/OCPP20IncomingRequestService.ts @@ -1,14 +1,25 @@ // 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 OCPPError from '../../../exception/OCPPError'; import type { JsonObject, JsonType } from '../../../types/JsonType'; -import type { OCPP20IncomingRequestCommand } from '../../../types/ocpp/2.0/Requests'; +import { + OCPP20ClearCacheRequest, + OCPP20IncomingRequestCommand, +} from '../../../types/ocpp/2.0/Requests'; +import type { OCPP20ClearCacheResponse } from '../../../types/ocpp/2.0/Responses'; import { ErrorType } from '../../../types/ocpp/ErrorType'; +import { OCPPVersion } from '../../../types/ocpp/OCPPVersion'; import type { IncomingRequestHandler } from '../../../types/ocpp/Requests'; import logger from '../../../utils/Logger'; import type ChargingStation from '../../ChargingStation'; +import { ChargingStationUtils } from '../../ChargingStationUtils'; +import OCPPConstants from '../OCPPConstants'; import OCPPIncomingRequestService from '../OCPPIncomingRequestService'; import { OCPP20ServiceUtils } from './OCPP20ServiceUtils'; @@ -22,9 +33,24 @@ export default class OCPP20IncomingRequestService extends OCPPIncomingRequestSer if (new.target?.name === moduleName) { throw new TypeError(`Cannot construct ${new.target?.name} instances directly`); } - super(); - this.incomingRequestHandlers = new Map(); - this.jsonSchemas = new Map>(); + super(OCPPVersion.VERSION_20); + this.incomingRequestHandlers = new Map([ + [OCPP20IncomingRequestCommand.CLEAR_CACHE, this.handleRequestClearCache.bind(this)], + ]); + this.jsonSchemas = new Map>([ + [ + OCPP20IncomingRequestCommand.CLEAR_CACHE, + JSON.parse( + fs.readFileSync( + path.resolve( + path.dirname(fileURLToPath(import.meta.url)), + '../../../assets/json-schemas/ocpp/2.0/ClearCacheRequest.json' + ), + 'utf8' + ) + ) as JSONSchemaType, + ], + ]); this.validatePayload.bind(this); } @@ -115,7 +141,7 @@ export default class OCPP20IncomingRequestService extends OCPPIncomingRequestSer commandName: OCPP20IncomingRequestCommand, commandPayload: JsonType ): boolean { - if (this.jsonSchemas.has(commandName)) { + if (this.jsonSchemas.has(commandName) === true) { return this.validateIncomingRequestPayload( chargingStation, commandName, @@ -128,4 +154,11 @@ export default class OCPP20IncomingRequestService extends OCPPIncomingRequestSer ); return false; } + + private handleRequestClearCache(chargingStation: ChargingStation): OCPP20ClearCacheResponse { + chargingStation.authorizedTagsCache.deleteAuthorizedTags( + ChargingStationUtils.getAuthorizationFile(chargingStation.stationInfo) + ); + return OCPPConstants.OCPP_RESPONSE_ACCEPTED; + } }