1 // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
4 import path from
'path';
5 import { URL
, fileURLToPath
} from
'url';
7 import type { JSONSchemaType
} from
'ajv';
8 import { Client
, type FTPResponse
} from
'basic-ftp';
11 import { OCPP16ServiceUtils
} from
'./OCPP16ServiceUtils';
12 import OCPPError from
'../../../exception/OCPPError';
13 import type { JsonObject
, JsonType
} from
'../../../types/JsonType';
14 import { OCPP16ChargePointErrorCode
} from
'../../../types/ocpp/1.6/ChargePointErrorCode';
15 import { OCPP16ChargePointStatus
} from
'../../../types/ocpp/1.6/ChargePointStatus';
17 ChargingProfilePurposeType
,
18 type OCPP16ChargingProfile
,
19 } from
'../../../types/ocpp/1.6/ChargingProfile';
21 OCPP16StandardParametersKey
,
22 OCPP16SupportedFeatureProfiles
,
23 } from
'../../../types/ocpp/1.6/Configuration';
24 import { OCPP16DiagnosticsStatus
} from
'../../../types/ocpp/1.6/DiagnosticsStatus';
26 type ChangeAvailabilityRequest
,
27 type ChangeConfigurationRequest
,
28 type ClearChargingProfileRequest
,
29 type GetConfigurationRequest
,
30 type GetDiagnosticsRequest
,
31 OCPP16AvailabilityType
,
32 type OCPP16BootNotificationRequest
,
33 type OCPP16ClearCacheRequest
,
34 type OCPP16DataTransferRequest
,
35 OCPP16DataTransferVendorId
,
36 type OCPP16DiagnosticsStatusNotificationRequest
,
38 type OCPP16FirmwareStatusNotificationRequest
,
39 type OCPP16HeartbeatRequest
,
40 OCPP16IncomingRequestCommand
,
43 type OCPP16StatusNotificationRequest
,
44 type OCPP16TriggerMessageRequest
,
45 type OCPP16UpdateFirmwareRequest
,
46 type RemoteStartTransactionRequest
,
47 type RemoteStopTransactionRequest
,
49 type SetChargingProfileRequest
,
50 type UnlockConnectorRequest
,
51 } from
'../../../types/ocpp/1.6/Requests';
53 type ChangeAvailabilityResponse
,
54 type ChangeConfigurationResponse
,
55 type ClearChargingProfileResponse
,
56 type GetConfigurationResponse
,
57 type GetDiagnosticsResponse
,
58 type OCPP16BootNotificationResponse
,
59 type OCPP16DataTransferResponse
,
60 OCPP16DataTransferStatus
,
61 type OCPP16DiagnosticsStatusNotificationResponse
,
62 type OCPP16FirmwareStatusNotificationResponse
,
63 type OCPP16HeartbeatResponse
,
64 type OCPP16StatusNotificationResponse
,
65 type OCPP16TriggerMessageResponse
,
66 type OCPP16UpdateFirmwareResponse
,
67 type SetChargingProfileResponse
,
68 type UnlockConnectorResponse
,
69 } from
'../../../types/ocpp/1.6/Responses';
71 OCPP16AuthorizationStatus
,
72 type OCPP16AuthorizeRequest
,
73 type OCPP16AuthorizeResponse
,
74 type OCPP16StartTransactionRequest
,
75 type OCPP16StartTransactionResponse
,
76 OCPP16StopTransactionReason
,
77 } from
'../../../types/ocpp/1.6/Transaction';
78 import type { OCPPConfigurationKey
} from
'../../../types/ocpp/Configuration';
79 import { ErrorType
} from
'../../../types/ocpp/ErrorType';
80 import { OCPPVersion
} from
'../../../types/ocpp/OCPPVersion';
81 import type { IncomingRequestHandler
} from
'../../../types/ocpp/Requests';
82 import type { GenericResponse
} from
'../../../types/ocpp/Responses';
83 import Constants from
'../../../utils/Constants';
84 import logger from
'../../../utils/Logger';
85 import Utils from
'../../../utils/Utils';
86 import type ChargingStation from
'../../ChargingStation';
87 import { ChargingStationConfigurationUtils
} from
'../../ChargingStationConfigurationUtils';
88 import { ChargingStationUtils
} from
'../../ChargingStationUtils';
89 import OCPPConstants from
'../OCPPConstants';
90 import OCPPIncomingRequestService from
'../OCPPIncomingRequestService';
92 const moduleName
= 'OCPP16IncomingRequestService';
94 export default class OCPP16IncomingRequestService
extends OCPPIncomingRequestService
{
95 protected jsonSchemas
: Map
<OCPP16IncomingRequestCommand
, JSONSchemaType
<JsonObject
>>;
96 private incomingRequestHandlers
: Map
<OCPP16IncomingRequestCommand
, IncomingRequestHandler
>;
98 public constructor() {
99 if (new.target
?.name
=== moduleName
) {
100 throw new TypeError(`Cannot construct ${new.target?.name} instances directly`);
102 super(OCPPVersion
.VERSION_16
);
103 this.incomingRequestHandlers
= new Map
<OCPP16IncomingRequestCommand
, IncomingRequestHandler
>([
104 [OCPP16IncomingRequestCommand
.RESET
, this.handleRequestReset
.bind(this)],
105 [OCPP16IncomingRequestCommand
.CLEAR_CACHE
, this.handleRequestClearCache
.bind(this)],
106 [OCPP16IncomingRequestCommand
.UNLOCK_CONNECTOR
, this.handleRequestUnlockConnector
.bind(this)],
108 OCPP16IncomingRequestCommand
.GET_CONFIGURATION
,
109 this.handleRequestGetConfiguration
.bind(this),
112 OCPP16IncomingRequestCommand
.CHANGE_CONFIGURATION
,
113 this.handleRequestChangeConfiguration
.bind(this),
116 OCPP16IncomingRequestCommand
.SET_CHARGING_PROFILE
,
117 this.handleRequestSetChargingProfile
.bind(this),
120 OCPP16IncomingRequestCommand
.CLEAR_CHARGING_PROFILE
,
121 this.handleRequestClearChargingProfile
.bind(this),
124 OCPP16IncomingRequestCommand
.CHANGE_AVAILABILITY
,
125 this.handleRequestChangeAvailability
.bind(this),
128 OCPP16IncomingRequestCommand
.REMOTE_START_TRANSACTION
,
129 this.handleRequestRemoteStartTransaction
.bind(this),
132 OCPP16IncomingRequestCommand
.REMOTE_STOP_TRANSACTION
,
133 this.handleRequestRemoteStopTransaction
.bind(this),
135 [OCPP16IncomingRequestCommand
.GET_DIAGNOSTICS
, this.handleRequestGetDiagnostics
.bind(this)],
136 [OCPP16IncomingRequestCommand
.TRIGGER_MESSAGE
, this.handleRequestTriggerMessage
.bind(this)],
137 [OCPP16IncomingRequestCommand
.DATA_TRANSFER
, this.handleRequestDataTransfer
.bind(this)],
138 [OCPP16IncomingRequestCommand
.UPDATE_FIRMWARE
, this.handleRequestUpdateFirmware
.bind(this)],
140 this.jsonSchemas
= new Map
<OCPP16IncomingRequestCommand
, JSONSchemaType
<JsonObject
>>([
142 OCPP16IncomingRequestCommand
.RESET
,
143 this.parseJsonSchemaFile
<ResetRequest
>('../../../assets/json-schemas/ocpp/1.6/Reset.json'),
146 OCPP16IncomingRequestCommand
.CLEAR_CACHE
,
147 this.parseJsonSchemaFile
<OCPP16ClearCacheRequest
>(
148 '../../../assets/json-schemas/ocpp/1.6/ClearCache.json'
152 OCPP16IncomingRequestCommand
.UNLOCK_CONNECTOR
,
153 this.parseJsonSchemaFile
<UnlockConnectorRequest
>(
154 '../../../assets/json-schemas/ocpp/1.6/UnlockConnector.json'
158 OCPP16IncomingRequestCommand
.GET_CONFIGURATION
,
159 this.parseJsonSchemaFile
<GetConfigurationRequest
>(
160 '../../../assets/json-schemas/ocpp/1.6/GetConfiguration.json'
164 OCPP16IncomingRequestCommand
.CHANGE_CONFIGURATION
,
165 this.parseJsonSchemaFile
<ChangeConfigurationRequest
>(
166 '../../../assets/json-schemas/ocpp/1.6/ChangeConfiguration.json'
170 OCPP16IncomingRequestCommand
.GET_DIAGNOSTICS
,
171 this.parseJsonSchemaFile
<GetDiagnosticsRequest
>(
172 '../../../assets/json-schemas/ocpp/1.6/GetDiagnostics.json'
176 OCPP16IncomingRequestCommand
.SET_CHARGING_PROFILE
,
177 this.parseJsonSchemaFile
<SetChargingProfileRequest
>(
178 '../../../assets/json-schemas/ocpp/1.6/SetChargingProfile.json'
182 OCPP16IncomingRequestCommand
.CLEAR_CHARGING_PROFILE
,
183 this.parseJsonSchemaFile
<ClearChargingProfileRequest
>(
184 '../../../assets/json-schemas/ocpp/1.6/ClearChargingProfile.json'
188 OCPP16IncomingRequestCommand
.CHANGE_AVAILABILITY
,
189 this.parseJsonSchemaFile
<ChangeAvailabilityRequest
>(
190 '../../../assets/json-schemas/ocpp/1.6/ChangeAvailability.json'
194 OCPP16IncomingRequestCommand
.REMOTE_START_TRANSACTION
,
195 this.parseJsonSchemaFile
<RemoteStartTransactionRequest
>(
196 '../../../assets/json-schemas/ocpp/1.6/RemoteStartTransaction.json'
200 OCPP16IncomingRequestCommand
.REMOTE_STOP_TRANSACTION
,
201 this.parseJsonSchemaFile
<RemoteStopTransactionRequest
>(
202 '../../../assets/json-schemas/ocpp/1.6/RemoteStopTransaction.json'
206 OCPP16IncomingRequestCommand
.TRIGGER_MESSAGE
,
207 this.parseJsonSchemaFile
<OCPP16TriggerMessageRequest
>(
208 '../../../assets/json-schemas/ocpp/1.6/TriggerMessage.json'
212 OCPP16IncomingRequestCommand
.DATA_TRANSFER
,
213 this.parseJsonSchemaFile
<OCPP16DataTransferRequest
>(
214 '../../../assets/json-schemas/ocpp/1.6/DataTransfer.json'
218 OCPP16IncomingRequestCommand
.UPDATE_FIRMWARE
,
219 this.parseJsonSchemaFile
<OCPP16UpdateFirmwareRequest
>(
220 '../../../assets/json-schemas/ocpp/1.6/UpdateFirmware.json'
224 this.validatePayload
.bind(this);
227 public async incomingRequestHandler(
228 chargingStation
: ChargingStation
,
230 commandName
: OCPP16IncomingRequestCommand
,
231 commandPayload
: JsonType
233 let response
: JsonType
;
235 chargingStation
.getOcppStrictCompliance() === true &&
236 chargingStation
.isInPendingState() === true &&
237 (commandName
=== OCPP16IncomingRequestCommand
.REMOTE_START_TRANSACTION
||
238 commandName
=== OCPP16IncomingRequestCommand
.REMOTE_STOP_TRANSACTION
)
241 ErrorType
.SECURITY_ERROR
,
242 `${commandName} cannot be issued to handle request PDU ${JSON.stringify(
246 )} while the charging station is in pending state on the central server`,
252 chargingStation
.isRegistered() === true ||
253 (chargingStation
.getOcppStrictCompliance() === false &&
254 chargingStation
.isInUnknownState() === true)
257 this.incomingRequestHandlers
.has(commandName
) === true &&
258 OCPP16ServiceUtils
.isIncomingRequestCommandSupported(chargingStation
, commandName
) === true
261 this.validatePayload(chargingStation
, commandName
, commandPayload
);
262 // Call the method to build the response
263 response
= await this.incomingRequestHandlers
.get(commandName
)(
270 `${chargingStation.logPrefix()} ${moduleName}.incomingRequestHandler: Handle incoming request error:`,
278 ErrorType
.NOT_IMPLEMENTED
,
279 `${commandName} is not implemented to handle request PDU ${JSON.stringify(
290 ErrorType
.SECURITY_ERROR
,
291 `${commandName} cannot be issued to handle request PDU ${JSON.stringify(
295 )} while the charging station is not registered on the central server.`,
300 // Send the built response
301 await chargingStation
.ocppRequestService
.sendResponse(
309 private validatePayload(
310 chargingStation
: ChargingStation
,
311 commandName
: OCPP16IncomingRequestCommand
,
312 commandPayload
: JsonType
314 if (this.jsonSchemas
.has(commandName
) === true) {
315 return this.validateIncomingRequestPayload(
318 this.jsonSchemas
.get(commandName
),
323 `${chargingStation.logPrefix()} ${moduleName}.validatePayload: No JSON schema found for command '${commandName}' PDU validation`
328 // Simulate charging station restart
329 private handleRequestReset(
330 chargingStation
: ChargingStation
,
331 commandPayload
: ResetRequest
335 chargingStation
.reset
.bind(chargingStation
) as (
336 this: ChargingStation
,
340 `${commandPayload.type}Reset` as OCPP16StopTransactionReason
343 /* This is intentional */
346 `${chargingStation.logPrefix()} ${
348 } reset command received, simulating it. The station will be back online in ${Utils.formatDurationMilliSeconds(
349 chargingStation.stationInfo.resetTime
352 return OCPPConstants
.OCPP_RESPONSE_ACCEPTED
;
355 private async handleRequestUnlockConnector(
356 chargingStation
: ChargingStation
,
357 commandPayload
: UnlockConnectorRequest
358 ): Promise
<UnlockConnectorResponse
> {
359 const connectorId
= commandPayload
.connectorId
;
360 if (chargingStation
.connectors
.has(connectorId
) === false) {
362 `${chargingStation.logPrefix()} Trying to unlock a non existing connector Id ${connectorId.toString()}`
364 return OCPPConstants
.OCPP_RESPONSE_UNLOCK_NOT_SUPPORTED
;
366 if (connectorId
=== 0) {
368 `${chargingStation.logPrefix()} Trying to unlock connector Id ${connectorId.toString()}`
370 return OCPPConstants
.OCPP_RESPONSE_UNLOCK_NOT_SUPPORTED
;
372 if (chargingStation
.getConnectorStatus(connectorId
)?.transactionStarted
=== true) {
373 const stopResponse
= await chargingStation
.stopTransactionOnConnector(
375 OCPP16StopTransactionReason
.UNLOCK_COMMAND
377 if (stopResponse
.idTagInfo
?.status === OCPP16AuthorizationStatus
.ACCEPTED
) {
378 return OCPPConstants
.OCPP_RESPONSE_UNLOCKED
;
380 return OCPPConstants
.OCPP_RESPONSE_UNLOCK_FAILED
;
382 await chargingStation
.ocppRequestService
.requestHandler
<
383 OCPP16StatusNotificationRequest
,
384 OCPP16StatusNotificationResponse
385 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
387 status: OCPP16ChargePointStatus
.AVAILABLE
,
388 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
390 chargingStation
.getConnectorStatus(connectorId
).status = OCPP16ChargePointStatus
.AVAILABLE
;
391 return OCPPConstants
.OCPP_RESPONSE_UNLOCKED
;
394 private handleRequestGetConfiguration(
395 chargingStation
: ChargingStation
,
396 commandPayload
: GetConfigurationRequest
397 ): GetConfigurationResponse
{
398 const configurationKey
: OCPPConfigurationKey
[] = [];
399 const unknownKey
: string[] = [];
400 if (Utils
.isEmptyArray(commandPayload
.key
) === true) {
401 for (const configuration
of chargingStation
.ocppConfiguration
.configurationKey
) {
402 if (Utils
.isUndefined(configuration
.visible
) === true) {
403 configuration
.visible
= true;
405 if (configuration
.visible
=== false) {
408 configurationKey
.push({
409 key
: configuration
.key
,
410 readonly: configuration
.readonly,
411 value
: configuration
.value
,
415 for (const key
of commandPayload
.key
) {
416 const keyFound
= ChargingStationConfigurationUtils
.getConfigurationKey(
421 if (Utils
.isUndefined(keyFound
.visible
) === true) {
422 keyFound
.visible
= true;
424 if (keyFound
.visible
=== false) {
427 configurationKey
.push({
429 readonly: keyFound
.readonly,
430 value
: keyFound
.value
,
433 unknownKey
.push(key
);
443 private handleRequestChangeConfiguration(
444 chargingStation
: ChargingStation
,
445 commandPayload
: ChangeConfigurationRequest
446 ): ChangeConfigurationResponse
{
447 const keyToChange
= ChargingStationConfigurationUtils
.getConfigurationKey(
453 return OCPPConstants
.OCPP_CONFIGURATION_RESPONSE_NOT_SUPPORTED
;
454 } else if (keyToChange
&& keyToChange
.readonly) {
455 return OCPPConstants
.OCPP_CONFIGURATION_RESPONSE_REJECTED
;
456 } else if (keyToChange
&& !keyToChange
.readonly) {
457 let valueChanged
= false;
458 if (keyToChange
.value
!== commandPayload
.value
) {
459 ChargingStationConfigurationUtils
.setConfigurationKeyValue(
462 commandPayload
.value
,
467 let triggerHeartbeatRestart
= false;
468 if (keyToChange
.key
=== OCPP16StandardParametersKey
.HeartBeatInterval
&& valueChanged
) {
469 ChargingStationConfigurationUtils
.setConfigurationKeyValue(
471 OCPP16StandardParametersKey
.HeartbeatInterval
,
474 triggerHeartbeatRestart
= true;
476 if (keyToChange
.key
=== OCPP16StandardParametersKey
.HeartbeatInterval
&& valueChanged
) {
477 ChargingStationConfigurationUtils
.setConfigurationKeyValue(
479 OCPP16StandardParametersKey
.HeartBeatInterval
,
482 triggerHeartbeatRestart
= true;
484 if (triggerHeartbeatRestart
) {
485 chargingStation
.restartHeartbeat();
487 if (keyToChange
.key
=== OCPP16StandardParametersKey
.WebSocketPingInterval
&& valueChanged
) {
488 chargingStation
.restartWebSocketPing();
490 if (keyToChange
.reboot
) {
491 return OCPPConstants
.OCPP_CONFIGURATION_RESPONSE_REBOOT_REQUIRED
;
493 return OCPPConstants
.OCPP_CONFIGURATION_RESPONSE_ACCEPTED
;
497 private handleRequestSetChargingProfile(
498 chargingStation
: ChargingStation
,
499 commandPayload
: SetChargingProfileRequest
500 ): SetChargingProfileResponse
{
502 OCPP16ServiceUtils
.checkFeatureProfile(
504 OCPP16SupportedFeatureProfiles
.SmartCharging
,
505 OCPP16IncomingRequestCommand
.SET_CHARGING_PROFILE
508 return OCPPConstants
.OCPP_SET_CHARGING_PROFILE_RESPONSE_NOT_SUPPORTED
;
510 if (chargingStation
.connectors
.has(commandPayload
.connectorId
) === false) {
512 `${chargingStation.logPrefix()} Trying to set charging profile(s) to a non existing connector Id ${
513 commandPayload.connectorId
516 return OCPPConstants
.OCPP_SET_CHARGING_PROFILE_RESPONSE_REJECTED
;
519 commandPayload
.csChargingProfiles
.chargingProfilePurpose
===
520 ChargingProfilePurposeType
.CHARGE_POINT_MAX_PROFILE
&&
521 commandPayload
.connectorId
!== 0
523 return OCPPConstants
.OCPP_SET_CHARGING_PROFILE_RESPONSE_REJECTED
;
526 commandPayload
.csChargingProfiles
.chargingProfilePurpose
===
527 ChargingProfilePurposeType
.TX_PROFILE
&&
528 (commandPayload
.connectorId
=== 0 ||
529 chargingStation
.getConnectorStatus(commandPayload
.connectorId
)?.transactionStarted
===
533 `${chargingStation.logPrefix()} Trying to set transaction charging profile(s) on connector ${
534 commandPayload.connectorId
535 } without a started transaction`
537 return OCPPConstants
.OCPP_SET_CHARGING_PROFILE_RESPONSE_REJECTED
;
539 OCPP16ServiceUtils
.setChargingProfile(
541 commandPayload
.connectorId
,
542 commandPayload
.csChargingProfiles
545 `${chargingStation.logPrefix()} Charging profile(s) set on connector id ${
546 commandPayload.connectorId
548 commandPayload
.csChargingProfiles
550 return OCPPConstants
.OCPP_SET_CHARGING_PROFILE_RESPONSE_ACCEPTED
;
553 private handleRequestClearChargingProfile(
554 chargingStation
: ChargingStation
,
555 commandPayload
: ClearChargingProfileRequest
556 ): ClearChargingProfileResponse
{
558 OCPP16ServiceUtils
.checkFeatureProfile(
560 OCPP16SupportedFeatureProfiles
.SmartCharging
,
561 OCPP16IncomingRequestCommand
.CLEAR_CHARGING_PROFILE
564 return OCPPConstants
.OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_UNKNOWN
;
566 if (chargingStation
.connectors
.has(commandPayload
.connectorId
) === false) {
568 `${chargingStation.logPrefix()} Trying to clear a charging profile(s) to a non existing connector Id ${
569 commandPayload.connectorId
572 return OCPPConstants
.OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_UNKNOWN
;
574 const connectorStatus
= chargingStation
.getConnectorStatus(commandPayload
.connectorId
);
575 if (commandPayload
.connectorId
&& !Utils
.isEmptyArray(connectorStatus
?.chargingProfiles
)) {
576 connectorStatus
.chargingProfiles
= [];
578 `${chargingStation.logPrefix()} Charging profile(s) cleared on connector id ${
579 commandPayload.connectorId
582 return OCPPConstants
.OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_ACCEPTED
;
584 if (!commandPayload
.connectorId
) {
585 let clearedCP
= false;
586 for (const connectorId
of chargingStation
.connectors
.keys()) {
588 !Utils
.isEmptyArray(chargingStation
.getConnectorStatus(connectorId
)?.chargingProfiles
)
591 .getConnectorStatus(connectorId
)
592 ?.chargingProfiles
?.forEach((chargingProfile
: OCPP16ChargingProfile
, index
: number) => {
593 let clearCurrentCP
= false;
594 if (chargingProfile
.chargingProfileId
=== commandPayload
.id
) {
595 clearCurrentCP
= true;
598 !commandPayload
.chargingProfilePurpose
&&
599 chargingProfile
.stackLevel
=== commandPayload
.stackLevel
601 clearCurrentCP
= true;
604 !chargingProfile
.stackLevel
&&
605 chargingProfile
.chargingProfilePurpose
=== commandPayload
.chargingProfilePurpose
607 clearCurrentCP
= true;
610 chargingProfile
.stackLevel
=== commandPayload
.stackLevel
&&
611 chargingProfile
.chargingProfilePurpose
=== commandPayload
.chargingProfilePurpose
613 clearCurrentCP
= true;
615 if (clearCurrentCP
) {
616 connectorStatus
?.chargingProfiles
?.splice(index
, 1);
618 `${chargingStation.logPrefix()} Matching charging profile(s) cleared: %j`,
627 return OCPPConstants
.OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_ACCEPTED
;
630 return OCPPConstants
.OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_UNKNOWN
;
633 private async handleRequestChangeAvailability(
634 chargingStation
: ChargingStation
,
635 commandPayload
: ChangeAvailabilityRequest
636 ): Promise
<ChangeAvailabilityResponse
> {
637 const connectorId
: number = commandPayload
.connectorId
;
638 if (chargingStation
.connectors
.has(connectorId
) === false) {
640 `${chargingStation.logPrefix()} Trying to change the availability of a non existing connector Id ${connectorId.toString()}`
642 return OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_REJECTED
;
644 const chargePointStatus
: OCPP16ChargePointStatus
=
645 commandPayload
.type === OCPP16AvailabilityType
.OPERATIVE
646 ? OCPP16ChargePointStatus
.AVAILABLE
647 : OCPP16ChargePointStatus
.UNAVAILABLE
;
648 if (connectorId
=== 0) {
649 let response
: ChangeAvailabilityResponse
= OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_ACCEPTED
;
650 for (const id
of chargingStation
.connectors
.keys()) {
651 if (chargingStation
.getConnectorStatus(id
)?.transactionStarted
=== true) {
652 response
= OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_SCHEDULED
;
654 chargingStation
.getConnectorStatus(id
).availability
= commandPayload
.type;
655 if (response
=== OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_ACCEPTED
) {
656 await chargingStation
.ocppRequestService
.requestHandler
<
657 OCPP16StatusNotificationRequest
,
658 OCPP16StatusNotificationResponse
659 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
661 status: chargePointStatus
,
662 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
664 chargingStation
.getConnectorStatus(id
).status = chargePointStatus
;
670 (chargingStation
.isChargingStationAvailable() === true ||
671 (chargingStation
.isChargingStationAvailable() === false &&
672 commandPayload
.type === OCPP16AvailabilityType
.INOPERATIVE
))
674 if (chargingStation
.getConnectorStatus(connectorId
)?.transactionStarted
=== true) {
675 chargingStation
.getConnectorStatus(connectorId
).availability
= commandPayload
.type;
676 return OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_SCHEDULED
;
678 chargingStation
.getConnectorStatus(connectorId
).availability
= commandPayload
.type;
679 await chargingStation
.ocppRequestService
.requestHandler
<
680 OCPP16StatusNotificationRequest
,
681 OCPP16StatusNotificationResponse
682 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
684 status: chargePointStatus
,
685 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
687 chargingStation
.getConnectorStatus(connectorId
).status = chargePointStatus
;
688 return OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_ACCEPTED
;
690 return OCPPConstants
.OCPP_AVAILABILITY_RESPONSE_REJECTED
;
693 private async handleRequestRemoteStartTransaction(
694 chargingStation
: ChargingStation
,
695 commandPayload
: RemoteStartTransactionRequest
696 ): Promise
<GenericResponse
> {
697 const transactionConnectorId
= commandPayload
.connectorId
;
698 if (chargingStation
.connectors
.has(transactionConnectorId
) === true) {
699 const remoteStartTransactionLogMsg
= `${chargingStation.logPrefix()} Transaction remotely STARTED on ${
700 chargingStation.stationInfo.chargingStationId
701 }#${transactionConnectorId.toString()} for idTag '${commandPayload.idTag}'`;
702 await chargingStation
.ocppRequestService
.requestHandler
<
703 OCPP16StatusNotificationRequest
,
704 OCPP16StatusNotificationResponse
705 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
706 connectorId
: transactionConnectorId
,
707 status: OCPP16ChargePointStatus
.PREPARING
,
708 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
710 const connectorStatus
= chargingStation
.getConnectorStatus(transactionConnectorId
);
711 connectorStatus
.status = OCPP16ChargePointStatus
.PREPARING
;
712 if (chargingStation
.isChargingStationAvailable() === true) {
713 // Check if authorized
714 if (chargingStation
.getAuthorizeRemoteTxRequests() === true) {
715 let authorized
= false;
717 chargingStation
.getLocalAuthListEnabled() === true &&
718 chargingStation
.hasAuthorizedTags() === true &&
719 chargingStation
.authorizedTagsCache
721 ChargingStationUtils
.getAuthorizationFile(chargingStation
.stationInfo
)
723 ?.find((idTag
) => idTag
=== commandPayload
.idTag
)
725 connectorStatus
.localAuthorizeIdTag
= commandPayload
.idTag
;
726 connectorStatus
.idTagLocalAuthorized
= true;
728 } else if (chargingStation
.getMustAuthorizeAtRemoteStart() === true) {
729 connectorStatus
.authorizeIdTag
= commandPayload
.idTag
;
730 const authorizeResponse
: OCPP16AuthorizeResponse
=
731 await chargingStation
.ocppRequestService
.requestHandler
<
732 OCPP16AuthorizeRequest
,
733 OCPP16AuthorizeResponse
734 >(chargingStation
, OCPP16RequestCommand
.AUTHORIZE
, {
735 idTag
: commandPayload
.idTag
,
737 if (authorizeResponse
?.idTagInfo
?.status === OCPP16AuthorizationStatus
.ACCEPTED
) {
742 `${chargingStation.logPrefix()} The charging station configuration expects authorize at remote start transaction but local authorization or authorize isn't enabled`
745 if (authorized
=== true) {
746 // Authorization successful, start transaction
748 this.setRemoteStartTransactionChargingProfile(
750 transactionConnectorId
,
751 commandPayload
.chargingProfile
754 connectorStatus
.transactionRemoteStarted
= true;
757 await chargingStation
.ocppRequestService
.requestHandler
<
758 OCPP16StartTransactionRequest
,
759 OCPP16StartTransactionResponse
760 >(chargingStation
, OCPP16RequestCommand
.START_TRANSACTION
, {
761 connectorId
: transactionConnectorId
,
762 idTag
: commandPayload
.idTag
,
764 ).idTagInfo
.status === OCPP16AuthorizationStatus
.ACCEPTED
766 logger
.debug(remoteStartTransactionLogMsg
);
767 return OCPPConstants
.OCPP_RESPONSE_ACCEPTED
;
769 return this.notifyRemoteStartTransactionRejected(
771 transactionConnectorId
,
775 return this.notifyRemoteStartTransactionRejected(
777 transactionConnectorId
,
781 return this.notifyRemoteStartTransactionRejected(
783 transactionConnectorId
,
787 // No authorization check required, start transaction
789 this.setRemoteStartTransactionChargingProfile(
791 transactionConnectorId
,
792 commandPayload
.chargingProfile
795 connectorStatus
.transactionRemoteStarted
= true;
798 await chargingStation
.ocppRequestService
.requestHandler
<
799 OCPP16StartTransactionRequest
,
800 OCPP16StartTransactionResponse
801 >(chargingStation
, OCPP16RequestCommand
.START_TRANSACTION
, {
802 connectorId
: transactionConnectorId
,
803 idTag
: commandPayload
.idTag
,
805 ).idTagInfo
.status === OCPP16AuthorizationStatus
.ACCEPTED
807 logger
.debug(remoteStartTransactionLogMsg
);
808 return OCPPConstants
.OCPP_RESPONSE_ACCEPTED
;
810 return this.notifyRemoteStartTransactionRejected(
812 transactionConnectorId
,
816 return this.notifyRemoteStartTransactionRejected(
818 transactionConnectorId
,
822 return this.notifyRemoteStartTransactionRejected(
824 transactionConnectorId
,
828 return this.notifyRemoteStartTransactionRejected(
830 transactionConnectorId
,
835 private async notifyRemoteStartTransactionRejected(
836 chargingStation
: ChargingStation
,
839 ): Promise
<GenericResponse
> {
841 chargingStation
.getConnectorStatus(connectorId
)?.status !== OCPP16ChargePointStatus
.AVAILABLE
843 await chargingStation
.ocppRequestService
.requestHandler
<
844 OCPP16StatusNotificationRequest
,
845 OCPP16StatusNotificationResponse
846 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
848 status: OCPP16ChargePointStatus
.AVAILABLE
,
849 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
851 chargingStation
.getConnectorStatus(connectorId
).status = OCPP16ChargePointStatus
.AVAILABLE
;
854 `${chargingStation.logPrefix()} Remote starting transaction REJECTED on connector Id ${connectorId.toString()}, idTag '${idTag}', availability '${
855 chargingStation.getConnectorStatus(connectorId)?.availability
856 }', status '${chargingStation.getConnectorStatus(connectorId)?.status}'`
858 return OCPPConstants
.OCPP_RESPONSE_REJECTED
;
861 private setRemoteStartTransactionChargingProfile(
862 chargingStation
: ChargingStation
,
864 cp
: OCPP16ChargingProfile
866 if (cp
&& cp
.chargingProfilePurpose
=== ChargingProfilePurposeType
.TX_PROFILE
) {
867 OCPP16ServiceUtils
.setChargingProfile(chargingStation
, connectorId
, cp
);
869 `${chargingStation.logPrefix()} Charging profile(s) set at remote start transaction on connector id ${connectorId}: %j`,
873 } else if (cp
&& cp
.chargingProfilePurpose
!== ChargingProfilePurposeType
.TX_PROFILE
) {
875 `${chargingStation.logPrefix()} Not allowed to set ${
876 cp.chargingProfilePurpose
877 } charging profile(s) at remote start transaction`
885 private async handleRequestRemoteStopTransaction(
886 chargingStation
: ChargingStation
,
887 commandPayload
: RemoteStopTransactionRequest
888 ): Promise
<GenericResponse
> {
889 const transactionId
= commandPayload
.transactionId
;
890 for (const connectorId
of chargingStation
.connectors
.keys()) {
893 chargingStation
.getConnectorStatus(connectorId
)?.transactionId
=== transactionId
895 await chargingStation
.ocppRequestService
.requestHandler
<
896 OCPP16StatusNotificationRequest
,
897 OCPP16StatusNotificationResponse
898 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
900 status: OCPP16ChargePointStatus
.FINISHING
,
901 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
903 chargingStation
.getConnectorStatus(connectorId
).status = OCPP16ChargePointStatus
.FINISHING
;
904 const stopResponse
= await chargingStation
.stopTransactionOnConnector(
906 OCPP16StopTransactionReason
.REMOTE
908 if (stopResponse
.idTagInfo
?.status === OCPP16AuthorizationStatus
.ACCEPTED
) {
909 return OCPPConstants
.OCPP_RESPONSE_ACCEPTED
;
911 return OCPPConstants
.OCPP_RESPONSE_REJECTED
;
915 `${chargingStation.logPrefix()} Trying to remote stop a non existing transaction ${transactionId.toString()}`
917 return OCPPConstants
.OCPP_RESPONSE_REJECTED
;
920 private handleRequestUpdateFirmware(
921 chargingStation
: ChargingStation
,
922 commandPayload
: OCPP16UpdateFirmwareRequest
923 ): OCPP16UpdateFirmwareResponse
{
925 OCPP16ServiceUtils
.checkFeatureProfile(
927 OCPP16SupportedFeatureProfiles
.FirmwareManagement
,
928 OCPP16IncomingRequestCommand
.UPDATE_FIRMWARE
932 `${chargingStation.logPrefix()} ${moduleName}.handleRequestUpdateFirmware: Cannot simulate firmware update: feature profile not supported`
934 return OCPPConstants
.OCPP_RESPONSE_EMPTY
;
937 !Utils
.isNullOrUndefined(chargingStation
.stationInfo
.firmwareStatus
) &&
938 chargingStation
.stationInfo
.firmwareStatus
!== OCPP16FirmwareStatus
.Installed
941 `${chargingStation.logPrefix()} ${moduleName}.handleRequestUpdateFirmware: Cannot simulate firmware update: firmware update is already in progress`
943 return OCPPConstants
.OCPP_RESPONSE_EMPTY
;
945 const retrieveDate
= Utils
.convertToDate(commandPayload
.retrieveDate
);
946 const now
= Date.now();
947 if (retrieveDate
?.getTime() <= now
) {
950 this.updateFirmware
.bind(this) as (
951 this: OCPP16IncomingRequestService
,
958 /* This is intentional */
962 this.updateFirmware(chargingStation
).catch(() => {
965 }, retrieveDate
?.getTime() - now
);
967 return OCPPConstants
.OCPP_RESPONSE_EMPTY
;
970 private async updateFirmware(
971 chargingStation
: ChargingStation
,
975 chargingStation
.stopAutomaticTransactionGenerator();
976 for (const connectorId
of chargingStation
.connectors
.keys()) {
979 chargingStation
.getConnectorStatus(connectorId
)?.transactionStarted
=== false
981 await chargingStation
.ocppRequestService
.requestHandler
<
982 OCPP16StatusNotificationRequest
,
983 OCPP16StatusNotificationResponse
984 >(chargingStation
, OCPP16RequestCommand
.STATUS_NOTIFICATION
, {
986 status: OCPP16ChargePointStatus
.UNAVAILABLE
,
987 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
989 chargingStation
.getConnectorStatus(connectorId
).status =
990 OCPP16ChargePointStatus
.UNAVAILABLE
;
994 chargingStation
.stationInfo
?.firmwareUpgrade
?.failureStatus
&&
995 !Utils
.isEmptyString(chargingStation
.stationInfo
?.firmwareUpgrade
?.failureStatus
)
997 await chargingStation
.ocppRequestService
.requestHandler
<
998 OCPP16FirmwareStatusNotificationRequest
,
999 OCPP16FirmwareStatusNotificationResponse
1000 >(chargingStation
, OCPP16RequestCommand
.FIRMWARE_STATUS_NOTIFICATION
, {
1001 status: chargingStation
.stationInfo
?.firmwareUpgrade
?.failureStatus
,
1005 await chargingStation
.ocppRequestService
.requestHandler
<
1006 OCPP16FirmwareStatusNotificationRequest
,
1007 OCPP16FirmwareStatusNotificationResponse
1008 >(chargingStation
, OCPP16RequestCommand
.FIRMWARE_STATUS_NOTIFICATION
, {
1009 status: OCPP16FirmwareStatus
.Downloading
,
1011 chargingStation
.stationInfo
.firmwareStatus
= OCPP16FirmwareStatus
.Downloading
;
1012 await Utils
.sleep(Utils
.getRandomInteger(maxDelay
, minDelay
) * 1000);
1013 await chargingStation
.ocppRequestService
.requestHandler
<
1014 OCPP16FirmwareStatusNotificationRequest
,
1015 OCPP16FirmwareStatusNotificationResponse
1016 >(chargingStation
, OCPP16RequestCommand
.FIRMWARE_STATUS_NOTIFICATION
, {
1017 status: OCPP16FirmwareStatus
.Downloaded
,
1019 chargingStation
.stationInfo
.firmwareStatus
= OCPP16FirmwareStatus
.Downloaded
;
1020 await Utils
.sleep(Utils
.getRandomInteger(maxDelay
, minDelay
) * 1000);
1021 await chargingStation
.ocppRequestService
.requestHandler
<
1022 OCPP16FirmwareStatusNotificationRequest
,
1023 OCPP16FirmwareStatusNotificationResponse
1024 >(chargingStation
, OCPP16RequestCommand
.FIRMWARE_STATUS_NOTIFICATION
, {
1025 status: OCPP16FirmwareStatus
.Installing
,
1027 chargingStation
.stationInfo
.firmwareStatus
= OCPP16FirmwareStatus
.Installing
;
1028 if (chargingStation
.stationInfo
?.firmwareUpgrade
?.reset
=== true) {
1029 await Utils
.sleep(Utils
.getRandomInteger(maxDelay
, minDelay
) * 1000);
1030 await chargingStation
.reset(OCPP16StopTransactionReason
.REBOOT
);
1034 private async handleRequestGetDiagnostics(
1035 chargingStation
: ChargingStation
,
1036 commandPayload
: GetDiagnosticsRequest
1037 ): Promise
<GetDiagnosticsResponse
> {
1039 OCPP16ServiceUtils
.checkFeatureProfile(
1041 OCPP16SupportedFeatureProfiles
.FirmwareManagement
,
1042 OCPP16IncomingRequestCommand
.GET_DIAGNOSTICS
1046 `${chargingStation.logPrefix()} ${moduleName}.handleRequestGetDiagnostics: Cannot get diagnostics: feature profile not supported`
1048 return OCPPConstants
.OCPP_RESPONSE_EMPTY
;
1050 const uri
= new URL(commandPayload
.location
);
1051 if (uri
.protocol
.startsWith('ftp:')) {
1052 let ftpClient
: Client
;
1055 .readdirSync(path
.resolve(path
.dirname(fileURLToPath(import.meta
.url
)), '../../../../'))
1056 .filter((file
) => file
.endsWith('.log'))
1057 .map((file
) => path
.join('./', file
));
1058 const diagnosticsArchive
= `${chargingStation.stationInfo.chargingStationId}_logs.tar.gz`;
1059 tar
.create({ gzip
: true }, logFiles
).pipe(fs
.createWriteStream(diagnosticsArchive
));
1060 ftpClient
= new Client();
1061 const accessResponse
= await ftpClient
.access({
1063 ...(!Utils
.isEmptyString(uri
.port
) && { port
: Utils
.convertToInt(uri
.port
) }),
1064 ...(!Utils
.isEmptyString(uri
.username
) && { user
: uri
.username
}),
1065 ...(!Utils
.isEmptyString(uri
.password
) && { password
: uri
.password
}),
1067 let uploadResponse
: FTPResponse
;
1068 if (accessResponse
.code
=== 220) {
1069 ftpClient
.trackProgress((info
) => {
1071 `${chargingStation.logPrefix()} ${
1073 } bytes transferred from diagnostics archive ${info.name}`
1075 chargingStation
.ocppRequestService
1077 OCPP16DiagnosticsStatusNotificationRequest
,
1078 OCPP16DiagnosticsStatusNotificationResponse
1079 >(chargingStation
, OCPP16RequestCommand
.DIAGNOSTICS_STATUS_NOTIFICATION
, {
1080 status: OCPP16DiagnosticsStatus
.Uploading
,
1084 `${chargingStation.logPrefix()} ${moduleName}.handleRequestGetDiagnostics: Error while sending '${
1085 OCPP16RequestCommand.DIAGNOSTICS_STATUS_NOTIFICATION
1091 uploadResponse
= await ftpClient
.uploadFrom(
1093 path
.resolve(path
.dirname(fileURLToPath(import.meta
.url
)), '../../../../'),
1096 `${uri.pathname}${diagnosticsArchive}`
1098 if (uploadResponse
.code
=== 226) {
1099 await chargingStation
.ocppRequestService
.requestHandler
<
1100 OCPP16DiagnosticsStatusNotificationRequest
,
1101 OCPP16DiagnosticsStatusNotificationResponse
1102 >(chargingStation
, OCPP16RequestCommand
.DIAGNOSTICS_STATUS_NOTIFICATION
, {
1103 status: OCPP16DiagnosticsStatus
.Uploaded
,
1108 return { fileName
: diagnosticsArchive
};
1110 throw new OCPPError(
1111 ErrorType
.GENERIC_ERROR
,
1112 `Diagnostics transfer failed with error code ${accessResponse.code.toString()}${
1113 uploadResponse?.code && `|${uploadResponse?.code.toString()}
`
1115 OCPP16IncomingRequestCommand
.GET_DIAGNOSTICS
1118 throw new OCPPError(
1119 ErrorType
.GENERIC_ERROR
,
1120 `Diagnostics transfer failed with error code ${accessResponse.code.toString()}${
1121 uploadResponse?.code && `|${uploadResponse?.code.toString()}
`
1123 OCPP16IncomingRequestCommand
.GET_DIAGNOSTICS
1126 await chargingStation
.ocppRequestService
.requestHandler
<
1127 OCPP16DiagnosticsStatusNotificationRequest
,
1128 OCPP16DiagnosticsStatusNotificationResponse
1129 >(chargingStation
, OCPP16RequestCommand
.DIAGNOSTICS_STATUS_NOTIFICATION
, {
1130 status: OCPP16DiagnosticsStatus
.UploadFailed
,
1135 return this.handleIncomingRequestError(
1137 OCPP16IncomingRequestCommand
.GET_DIAGNOSTICS
,
1139 { errorResponse
: OCPPConstants
.OCPP_RESPONSE_EMPTY
}
1144 `${chargingStation.logPrefix()} Unsupported protocol ${
1146 } to transfer the diagnostic logs archive`
1148 await chargingStation
.ocppRequestService
.requestHandler
<
1149 OCPP16DiagnosticsStatusNotificationRequest
,
1150 OCPP16DiagnosticsStatusNotificationResponse
1151 >(chargingStation
, OCPP16RequestCommand
.DIAGNOSTICS_STATUS_NOTIFICATION
, {
1152 status: OCPP16DiagnosticsStatus
.UploadFailed
,
1154 return OCPPConstants
.OCPP_RESPONSE_EMPTY
;
1158 private handleRequestTriggerMessage(
1159 chargingStation
: ChargingStation
,
1160 commandPayload
: OCPP16TriggerMessageRequest
1161 ): OCPP16TriggerMessageResponse
{
1163 !OCPP16ServiceUtils
.checkFeatureProfile(
1165 OCPP16SupportedFeatureProfiles
.RemoteTrigger
,
1166 OCPP16IncomingRequestCommand
.TRIGGER_MESSAGE
1168 !OCPP16ServiceUtils
.isMessageTriggerSupported(
1170 commandPayload
.requestedMessage
1173 return OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_NOT_IMPLEMENTED
;
1176 !OCPP16ServiceUtils
.isConnectorIdValid(
1178 OCPP16IncomingRequestCommand
.TRIGGER_MESSAGE
,
1179 commandPayload
.connectorId
1182 return OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_REJECTED
;
1185 switch (commandPayload
.requestedMessage
) {
1186 case OCPP16MessageTrigger
.BootNotification
:
1188 chargingStation
.ocppRequestService
1189 .requestHandler
<OCPP16BootNotificationRequest
, OCPP16BootNotificationResponse
>(
1191 OCPP16RequestCommand
.BOOT_NOTIFICATION
,
1192 chargingStation
.bootNotificationRequest
,
1193 { skipBufferingOnError
: true, triggerMessage
: true }
1195 .then((response
) => {
1196 chargingStation
.bootNotificationResponse
= response
;
1199 /* This is intentional */
1201 }, Constants
.OCPP_TRIGGER_MESSAGE_DELAY
);
1202 return OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_ACCEPTED
;
1203 case OCPP16MessageTrigger
.Heartbeat
:
1205 chargingStation
.ocppRequestService
1206 .requestHandler
<OCPP16HeartbeatRequest
, OCPP16HeartbeatResponse
>(
1208 OCPP16RequestCommand
.HEARTBEAT
,
1211 triggerMessage
: true,
1215 /* This is intentional */
1217 }, Constants
.OCPP_TRIGGER_MESSAGE_DELAY
);
1218 return OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_ACCEPTED
;
1219 case OCPP16MessageTrigger
.StatusNotification
:
1221 if (commandPayload
?.connectorId
) {
1222 chargingStation
.ocppRequestService
1223 .requestHandler
<OCPP16StatusNotificationRequest
, OCPP16StatusNotificationResponse
>(
1225 OCPP16RequestCommand
.STATUS_NOTIFICATION
,
1227 connectorId
: commandPayload
.connectorId
,
1228 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
1229 status: chargingStation
.getConnectorStatus(commandPayload
.connectorId
)?.status,
1232 triggerMessage
: true,
1236 /* This is intentional */
1239 for (const connectorId
of chargingStation
.connectors
.keys()) {
1240 chargingStation
.ocppRequestService
1242 OCPP16StatusNotificationRequest
,
1243 OCPP16StatusNotificationResponse
1246 OCPP16RequestCommand
.STATUS_NOTIFICATION
,
1249 errorCode
: OCPP16ChargePointErrorCode
.NO_ERROR
,
1250 status: chargingStation
.getConnectorStatus(connectorId
)?.status,
1253 triggerMessage
: true,
1257 /* This is intentional */
1261 }, Constants
.OCPP_TRIGGER_MESSAGE_DELAY
);
1262 return OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_ACCEPTED
;
1264 return OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_NOT_IMPLEMENTED
;
1267 return this.handleIncomingRequestError(
1269 OCPP16IncomingRequestCommand
.TRIGGER_MESSAGE
,
1271 { errorResponse
: OCPPConstants
.OCPP_TRIGGER_MESSAGE_RESPONSE_REJECTED
}
1276 private handleRequestDataTransfer(
1277 chargingStation
: ChargingStation
,
1278 commandPayload
: OCPP16DataTransferRequest
1279 ): OCPP16DataTransferResponse
{
1281 if (Object.values(OCPP16DataTransferVendorId
).includes(commandPayload
.vendorId
)) {
1283 status: OCPP16DataTransferStatus
.ACCEPTED
,
1287 status: OCPP16DataTransferStatus
.UNKNOWN_VENDOR_ID
,
1290 return this.handleIncomingRequestError(
1292 OCPP16IncomingRequestCommand
.DATA_TRANSFER
,
1294 { errorResponse
: OCPPConstants
.OCPP_DATA_TRANSFER_RESPONSE_REJECTED
}
1299 private parseJsonSchemaFile
<T
extends JsonType
>(relativePath
: string): JSONSchemaType
<T
> {
1302 path
.resolve(path
.dirname(fileURLToPath(import.meta
.url
)), relativePath
),
1305 ) as JSONSchemaType
<T
>;