-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
751 lines (643 loc) · 24.8 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
require('log-timestamp');
const websocketUrl = process.env.WEBSOCKET_URL;
const chargingStationSerialNumber = process.env.CHARGING_STATION_SERIAL_NUMBER || '0123456';
const connectorCount = process.env.CONNECTOR_COUNT || 1;
const heartBeatIntervalSeconds = process.env.HEARTBEAT_INTERVAL_SECONDS || 300;
const defaultConnectorId = process.env.DEFAULT_CONNECTOR_ID || 1;
const nfcUid = process.env.NFC_UID;
const nfcUidChargingSeconds = process.env.NFC_UID_CHARGING_SECONDS;
const sendSignedMeterValues = process.env.SEND_SIGNED_METER_VALUES;
const autoAccept = !!process.env.AUTO_ACCEPT;
const plugType = process.env.PLUG_TYPE || 'Type2'
const W3CWebSocket = require('websocket').w3cwebsocket;
const client = new W3CWebSocket(websocketUrl);
const inquirer = require('inquirer');
const chalk = require('chalk');
const STATUS_AVAILABLE = 'Available';
const STATUS_PREPARING = 'Preparing';
const STATUS_CHARGING = 'Charging';
const MESSAGE_TYPE_STATUS_NOTIFICATION = 'StatusNotification';
const MESSAGE_TYPE_HEARTBEAT = 'Heartbeat';
const sentMsgRegistry = {};
let remoteRequestedConnectorId = null; // connectorId requested via RemoteStart
let connectorIdInUse = null; // connectorId for running transaction
let currentMeter = 10000;
let transactionId = null;
let pendingSessionInterval = null;
let heartBeatsInterval = null;
let pendingSessionStartDate = null;
let configuration = {
AuthorizeRemoteTxRequests: {
key: 'AuthorizeRemoteTxRequests',
readonly: false,
value: '0',
},
HeartbeatInterval: {
key: 'HeartbeatInterval',
readonly: false,
value: heartBeatIntervalSeconds,
},
NumberOfConnectors: {
key: 'NumberOfConnectors',
readonly: true,
value: connectorCount,
}
};
const rebootRequiredKeys = [
// Station-specific
];
let statusByConnectorId = []
let infoByConnectorId = []
for (let connectorId = 1; connectorId <= connectorCount; connectorId++) {
statusByConnectorId[connectorId] = STATUS_AVAILABLE;
infoByConnectorId[connectorId] = 'Status Update';
}
const updateConnectorStatus = (connectorId, status) => {
statusByConnectorId[connectorId] = status
let info = 'Status Update';
// if preparing or charging assume a cable is plugged in - in this case the Bender
// controller appends the plugType
if ([STATUS_PREPARING, STATUS_CHARGING].some((s) => s === status)) {
info += ' -' + plugType + '-'
}
infoByConnectorId[connectorId] = info
}
const getConnectorStatus = (connectorId) => {
return statusByConnectorId[connectorId];
}
const getConnectorInfo = (connectorId) => {
return infoByConnectorId[connectorId];
}
const remoteStartAcceptAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A RemoteStart was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'A RemoteStart was received. Should the charging station accept it? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const remoteStopAcceptAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A RemoteStop was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'A RemoteStop was received. Should the charging station accept it? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const getCompositeScheduleAcceptAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A GetCompositeSchedule was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'A GetCompositeSchedule was received. Should the charging station accept it? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const setChargingProfileAcceptAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A SetChargingProfile was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'A SetChargingProfile was received. Should the charging station accept it? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const clearChargingProfileAcceptAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A ClearChargingProfile was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'A ClearChargingProfile was received. Should the charging station accept it? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const updateFirmwareAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' An UpdateFirmware was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'An UpdateFirmware was received. Should the charging station succeed in updating? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const getDiagnosticsAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A GetDiagnostics was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'An GetDiagnostics was received. Should the charging station succeed in uploading? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
const resetAcceptAsk = () => {
if (autoAccept) {
console.log(chalk.bgGreen('AUTO-ACCEPT:') + ' A Reset was received and auto-accepted.');
return Promise.resolve({
accept: 'yes'
});
}
return inquirer.prompt([
{
type: 'expand',
message: 'A Reset was received. Should the charging station accept it? ',
name: 'accept',
choices: [
{key: 'y', name: 'Yes', value: 'yes',},
{key: 'n', name: 'No', value: 'no',},
],
},
]);
};
client.onerror = () => {
console.log(chalk.bgRed('ERROR:') + ` Connection Error (${websocketUrl})`);
};
client.onclose = (event) => {
if (heartBeatsInterval) {
clearInterval(heartBeatsInterval);
}
console.log(chalk.bgRed('ERROR:') + ` Client Closed (${websocketUrl}), reason: ${event.reason} (${event.code})`);
};
const sendRequest = (op, data) => {
const msgId = Math.ceil(Math.random() * 100000000).toString(10);
console.log(chalk.bgBlue('OUT:') + ' Send request:', {
msgId,
op,
data,
});
client.send(JSON.stringify([
2,
msgId,
op,
data,
]));
sentMsgRegistry[msgId] = {op, data};
};
const sendConfirmation = (msgId, data) => {
console.log(chalk.bgBlue('OUT:') + ' Send confirmation:', [
msgId,
JSON.stringify(data),
]);
client.send(JSON.stringify([
3,
msgId,
data,
]));
};
const sendHeartbeat = (msgId) => {
console.log('sendHeartbeat');
sendRequest(MESSAGE_TYPE_HEARTBEAT, {});
}
const sendStatusNotification = (trigger, triggeredConnectorId = null) => {
console.log('sendStatusNotification:', trigger, triggeredConnectorId);
for (let connectorId = 1; connectorId <= connectorCount; connectorId++) {
// if status notification is supposed to be sent for a specific connector ignore the other ones
console.log(connectorId)
if (null !== triggeredConnectorId && triggeredConnectorId !== connectorId) {
continue
}
console.log('connectorId: ' + connectorId, trigger);
sendRequest(MESSAGE_TYPE_STATUS_NOTIFICATION, {
connectorId: connectorId,
errorCode: 'NoError',
status: getConnectorStatus(connectorId),
timestamp: (new Date()).toISOString(),
info: getConnectorInfo(connectorId)
});
}
};
const sendDataTransfer = (vendorId, messageId, data) => {
sendRequest('DataTransfer', {
vendorId: vendorId,
messageId: messageId,
data: JSON.stringify(data)
});
}
const startTransaction = (idTag, connectorId) => {
connectorIdInUse = connectorId
setTimeout(() => {
sendRequest('StartTransaction', {
connectorId: connectorIdInUse,
idTag,
meterStart: currentMeter,
timestamp: (new Date()).toISOString()
});
updateConnectorStatus(connectorIdInUse, STATUS_CHARGING)
sendStatusNotification('By startTransaction', connectorIdInUse);
}, 500);
}
const onStartTransactionConfirm = (idTagInfo, returnedTransactionId) => {
if (idTagInfo['status'] !== 'Accepted') {
console.warn('StartTransaction was not confirmed', idTagInfo, transactionId);
return;
}
transactionId = returnedTransactionId;
pendingSessionStartDate = new Date();
pendingSessionInterval = setInterval(() => {
currentMeter += 100;
sendRequest("MeterValues", {
connectorId: connectorIdInUse,
transactionId,
meterValue: [{
timestamp: (new Date()).toISOString(),
sampledValue: [{
value: currentMeter.toString(10),
context: "Sample.Periodic",
format: "Raw",
measurand: "Energy.Active.Import.Register",
location: "Outlet",
unit: "Wh"
}]
}]
});
}, 5000);
};
const stopTransaction = (nfcUid) => {
if (pendingSessionInterval === null) {
console.warn('No running transaction');
return;
}
clearInterval(pendingSessionInterval);
const stopData = {
idTag: nfcUid,
meterStop: currentMeter + 100,
timestamp: (new Date()).toISOString(),
transactionId,
};
if (sendSignedMeterValues) {
stopData['transactionData'] = [
{
timestamp: pendingSessionStartDate.toISOString(),
sampledValue: [{
context: 'Transaction.Begin',
format: 'SignedData',
value: '<?xml version="1.0" encoding="UTF-8" ?><signedMeterValue><publicKey encoding="base64">NQu4+D9eJu18mP8kX3h6tLiF3hpvuCdTK2TfqC5ZohGJK0HY4sMXi2l9a4AyBBuT</publicKey><meterValueSignature encoding="base64">e+1UrGquU5pq15VxoNuV2SyN1oua1ZXOtK66ZyW5ppnUfmZKvTZSSWncdMfNHb4ZABk=</meterValueSignature><signatureMethod>ECDSA192SHA256</signatureMethod><encodingMethod>EDL</encodingMethod><encodedMeterValue encoding="base64">CQFFTUgAAH+IOU8W7FwIoLkGACEAAAABAAERAP8e/yVXAAAAAAAAABkEHwBqNFuEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4W7FwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=</encodedMeterValue></signedMeterValue>',
measurand: 'Energy.Active.Import.Register',
}]
},
{
timestamp: (new Date()).toISOString(),
sampledValue: [{
context: 'Transaction.End',
format: 'SignedData',
value: '<?xml version="1.0" encoding="UTF-8" ?><signedMeterValue><publicKey encoding="base64">NQu4+D9eJu18mP8kX3h6tLiF3hpvuCdTK2TfqC5ZohGJK0HY4sMXi2l9a4AyBBuT</publicKey><meterValueSignature encoding="base64">T6CDMPIpFcqom1z4cOI1HTfjqCvOfCvJjwVlLoEJInO/RcZQLGb5kbj21920UWaXABk=</meterValueSignature><signatureMethod>ECDSA192SHA256</signatureMethod><encodingMethod>EDL</encodingMethod><encodedMeterValue encoding="base64">CQFFTUgAAH+IOfoj7FwIS8cGACYAAAABAAERAP8e/yVXAAAAAAAAABkEHwBqNFuEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAj7FwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=</encodedMeterValue></signedMeterValue>',
measurand: 'Energy.Active.Import.Register',
}]
}
];
}
console.log(JSON.stringify(stopData));
sendRequest('StopTransaction', stopData);
updateConnectorStatus(connectorIdInUse, STATUS_AVAILABLE);
sendStatusNotification('By stopTransaction', connectorIdInUse);
pendingSessionInterval = null;
pendingSessionStartDate = null;
transactionId = null;
connectorIdInUse = null;
remoteRequestedConnectorId = null;
};
const sendBootNotification = () => {
sendRequest('BootNotification',
{
chargePointVendor: 'Wirelane',
chargePointModel: 'NodeJS',
chargePointSerialNumber: chargingStationSerialNumber
}
);
}
const sendFirmwareStatusNotification = (status) => {
// Downloaded, DownloadFailed, Downloading, Idle, InstallationFailed, Installing, Installed
sendRequest('FirmwareStatusNotification', {
status
});
};
const sendDiagnosticsStatusNotification = (status) => {
// Uploaded, UploadFailed, Uploading, Idle
sendRequest('DiagnosticsStatusNotification', {
status
});
};
const handleChangeConfiguration = (msgId, payload) => {
let configurationStatus = 'Rejected';
if (payload.key in configuration) {
if (!configuration[payload.key].readonly) {
configuration[payload.key].value = payload.value
if (rebootRequiredKeys.includes(payload.key)) {
configurationStatus = 'RebootRequired'
} else {
configurationStatus = 'Accepted'
}
}
}
sendConfirmation(msgId, {
status: configurationStatus
});
};
const handleGetConfiguration = (msgId, payload) => {
const configurationKey = [];
const unknownKeys = [];
// if no key is provided, values for all supported keys should be returned
if (undefined === payload['key']) {
payload['key'] = Object.keys(configuration)
}
payload['key'].forEach(key => {
if (undefined !== configuration[key]) {
configurationKey.push(configuration[key])
} else {
unknownKeys.push(key);
}
});
sendConfirmation(msgId, {
configurationKey: configurationKey,
unknownKey: unknownKeys,
});
};
const handleGetDiagnostics = (msgId, payload) => {
sendConfirmation(msgId, {
fileName: Math.ceil(Math.random() * 100000000).toString(10).toString() + '.txt'
});
getDiagnosticsAsk().then(ret => {
setTimeout(() => sendDiagnosticsStatusNotification('Uploading'), 1000);
if (ret.accept === 'yes') {
setTimeout(() => sendFirmwareStatusNotification('Uploaded'), 3000);
} else {
setTimeout(() => sendFirmwareStatusNotification('UploadFailed'), 1000);
}
});
};
const handleTriggerMessage = (msgId, payload) => {
switch (payload['requestedMessage']) {
case MESSAGE_TYPE_HEARTBEAT:
sendConfirmation(msgId, {status: 'Accepted'});
triggeredMessageCb = () => sendHeartbeat();
break;
case MESSAGE_TYPE_STATUS_NOTIFICATION:
sendConfirmation(msgId, {status: 'Accepted'});
triggeredMessageCb = () => sendStatusNotification('By TriggerMessage', payload['connectorId']);
break;
default:
sendConfirmation(msgId, {status: 'NotImplemented'});
break;
}
setTimeout(triggeredMessageCb, 1000);
}
const handleUpdateFirmware = (msgId, payload) => {
sendConfirmation(msgId, {});
updateFirmwareAsk().then(ret => {
if (ret.accept === 'yes') {
// send notifications in same order as Nano
setTimeout(() => sendFirmwareStatusNotification('Downloading'), 1000);
setTimeout(() => sendFirmwareStatusNotification('Downloaded'), 3000);
setTimeout(() => sendFirmwareStatusNotification('Installing'), 5000);
setTimeout(() => sendBootNotification(), 7000);
setTimeout(() => sendFirmwareStatusNotification('Installed'), 9000);
} else {
setTimeout(() => sendFirmwareStatusNotification('Downloading'), 1000);
setTimeout(() => sendFirmwareStatusNotification('DownloadFailed'), 3000);
}
});
};
client.onmessage = (e) => {
if (typeof e.data === 'string') {
const msg = JSON.parse(e.data);
const msgId = msg[1];
const action = msg[2];
const payload = msg[3];
if (msg[0] === 3) {
const prevOp = sentMsgRegistry[msg[1]];
if (!prevOp) {
console.error(`OCPP Server accepted: ${msgId} - previous operation not found, skipping`);
return;
}
console.log(`OCPP Server accepted: ${msgId} (${prevOp.op})`);
switch (prevOp.op) {
case 'Authorize':
console.log(msg);
onAuthorizeResponse(msg[2]['idTagInfo']);
break;
case 'StartTransaction':
onStartTransactionConfirm(action['idTagInfo'], action['transactionId']);
break;
}
return;
} else {
console.log(chalk.bgGreen('IN:') + ` ${(new Date()).toISOString()} Received ${action} message with id ${msgId}:`, JSON.stringify(payload, null, '\t'));
}
switch (action) {
case 'ChangeConfiguration':
handleChangeConfiguration(msgId, payload);
break;
case 'GetConfiguration':
handleGetConfiguration(msgId, payload);
break;
case 'GetDiagnostics':
handleGetDiagnostics(msgId, payload);
break;
case 'TriggerMessage':
handleTriggerMessage(msgId, payload);
break;
case 'UpdateFirmware':
handleUpdateFirmware(msgId, payload);
break;
case 'RemoteStartTransaction':
const idTag = payload['idTag'];
// use default connector if no connectorId has been specified
remoteRequestedConnectorId = payload['connectorId'] || defaultConnectorId;
remoteStartAcceptAsk().then(ret => {
if (ret.accept === 'yes') {
sendConfirmation(msgId, {status: 'Accepted'});
setTimeout(() => {
if ('1' === configuration.AuthorizeRemoteTxRequests.value) {
sendAuthorize(idTag)
} else {
startTransaction(idTag, remoteRequestedConnectorId);
}
}, 500);
} else {
sendConfirmation(msgId, {status: 'Rejected'});
}
});
break;
case 'RemoteStopTransaction':
remoteStopAcceptAsk().then(ret => {
if (ret.accept === 'yes') {
sendConfirmation(msgId, {status: 'Accepted'});
setTimeout(() => {
stopTransaction(nfcUid);
}, 500);
} else {
sendConfirmation(msgId, {status: 'Rejected'});
}
});
break;
case 'GetCompositeSchedule':
getCompositeScheduleAcceptAsk().then(ret => {
if (ret.accept === 'yes') {
sendConfirmation(msgId, {
status: 'Accepted',
connectorId: 1,
scheduleStart: (new Date()).toISOString(),
chargingSchedule: {
startSchedule: (new Date()).toISOString(),
duration: 100,
chargingRateUnit: "W",
chargingSchedulePeriod: [
{
"startPeriod": 0,
"limit": 2.5,
"numberPhases": 3
},
{
"startPeriod": 100,
"limit": 2.5,
"numberPhases": 3
}
],
minChargingRate: 8.1
}
});
} else {
sendConfirmation(msgId, {status: 'Rejected'});
}
});
break;
case 'SetChargingProfile':
setChargingProfileAcceptAsk().then(ret => {
if (ret.accept === 'yes') {
sendConfirmation(msgId, {status: 'Accepted'});
} else {
sendConfirmation(msgId, {status: 'Rejected'});
}
});
break;
case 'ClearChargingProfile':
clearChargingProfileAcceptAsk().then(ret => {
if (ret.accept === 'yes') {
sendConfirmation(msgId, {status: 'Accepted'});
} else {
sendConfirmation(msgId, {status: 'Unknown'});
}
});
break;
case 'Reset':
resetAcceptAsk().then(ret => {
if (ret.accept === 'yes') {
sendConfirmation(msgId, {status: 'Accepted'});
setTimeout(() => sendBootNotification(), 10000);
} else {
sendConfirmation(msgId, {status: 'Rejected'});
}
});
default:
console.log(`Unknown action: ${action}`);
}
}
};
const sendAuthorize = (nfcId) => {
sendRequest('Authorize', {
idTag: nfcId,
timestamp: (new Date()).toISOString()
});
};
const onAuthorizeResponse = (idTagInfo) => {
if (idTagInfo['status'] !== 'Accepted') {
console.warn('Authorize was not accepted', idTagInfo);
if (nfcUid != null) {
process.exit(1);
}
return;
}
startTransaction(idTagInfo['parentIdTag'], remoteRequestedConnectorId || defaultConnectorId);
};
client.onopen = () => {
console.log(`WebSocket Client Connected to ${websocketUrl} with auto-accept ${autoAccept}`);
sendBootNotification();
heartBeatsInterval = setInterval(sendHeartbeat, heartBeatIntervalSeconds * 1000);
if (nfcUid != null) {
setTimeout(() => {
updateConnectorStatus(defaultConnectorId, STATUS_PREPARING)
sendStatusNotification('By NFC', defaultConnectorId);
}, 10000);
setTimeout(() => {
console.log(`Sending authorization request with nfc-uid ${nfcUid}`);
sendAuthorize(nfcUid);
if (nfcUidChargingSeconds > 0) {
setTimeout(() => {
stopTransaction(nfcUid);
process.exit()
}, nfcUidChargingSeconds * 1000);
}
}, 15000);
}
};