Cleanup and optimize OCPP request payload building
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20RequestService.ts
1 // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
2
3 import fs from 'fs';
4 import path from 'path';
5 import { fileURLToPath } from 'url';
6
7 import type { JSONSchemaType } from 'ajv';
8
9 import { OCPP20ServiceUtils } from './OCPP20ServiceUtils';
10 import OCPPError from '../../../exception/OCPPError';
11 import type { JsonObject, JsonType } from '../../../types/JsonType';
12 import {
13 type OCPP20BootNotificationRequest,
14 type OCPP20HeartbeatRequest,
15 OCPP20RequestCommand,
16 type OCPP20StatusNotificationRequest,
17 } from '../../../types/ocpp/2.0/Requests';
18 import { ErrorType } from '../../../types/ocpp/ErrorType';
19 import { OCPPVersion } from '../../../types/ocpp/OCPPVersion';
20 import type { RequestParams } from '../../../types/ocpp/Requests';
21 import Utils from '../../../utils/Utils';
22 import type ChargingStation from '../../ChargingStation';
23 import OCPPConstants from '../OCPPConstants';
24 import OCPPRequestService from '../OCPPRequestService';
25 import type OCPPResponseService from '../OCPPResponseService';
26
27 const moduleName = 'OCPP20RequestService';
28
29 export default class OCPP20RequestService extends OCPPRequestService {
30 protected jsonSchemas: Map<OCPP20RequestCommand, JSONSchemaType<JsonObject>>;
31
32 public constructor(ocppResponseService: OCPPResponseService) {
33 if (new.target?.name === moduleName) {
34 throw new TypeError(`Cannot construct ${new.target?.name} instances directly`);
35 }
36 super(OCPPVersion.VERSION_20, ocppResponseService);
37 this.jsonSchemas = new Map<OCPP20RequestCommand, JSONSchemaType<JsonObject>>([
38 [
39 OCPP20RequestCommand.BOOT_NOTIFICATION,
40 this.parseJsonSchemaFile<OCPP20BootNotificationRequest>(
41 '../../../assets/json-schemas/ocpp/2.0/BootNotificationRequest.json'
42 ),
43 ],
44 [
45 OCPP20RequestCommand.HEARTBEAT,
46 this.parseJsonSchemaFile<OCPP20HeartbeatRequest>(
47 '../../../assets/json-schemas/ocpp/2.0/HeartbeatRequest.json'
48 ),
49 ],
50 [
51 OCPP20RequestCommand.STATUS_NOTIFICATION,
52 this.parseJsonSchemaFile<OCPP20StatusNotificationRequest>(
53 '../../../assets/json-schemas/ocpp/2.0/StatusNotificationRequest.json'
54 ),
55 ],
56 ]);
57 this.buildRequestPayload.bind(this);
58 }
59
60 public async requestHandler<RequestType extends JsonType, ResponseType extends JsonType>(
61 chargingStation: ChargingStation,
62 commandName: OCPP20RequestCommand,
63 commandParams?: JsonType,
64 params?: RequestParams
65 ): Promise<ResponseType> {
66 if (OCPP20ServiceUtils.isRequestCommandSupported(chargingStation, commandName) === true) {
67 const requestPayload = this.buildRequestPayload<RequestType>(
68 chargingStation,
69 commandName,
70 commandParams
71 );
72 return (await this.sendMessage(
73 chargingStation,
74 Utils.generateUUID(),
75 requestPayload,
76 commandName,
77 params
78 )) as unknown as ResponseType;
79 }
80 // OCPPError usage here is debatable: it's an error in the OCPP stack but not targeted to sendError().
81 throw new OCPPError(
82 ErrorType.NOT_SUPPORTED,
83 `Unsupported OCPP command '${commandName}'`,
84 commandName,
85 commandParams
86 );
87 }
88
89 private buildRequestPayload<Request extends JsonType>(
90 chargingStation: ChargingStation,
91 commandName: OCPP20RequestCommand,
92 commandParams?: JsonType
93 ): Request {
94 commandParams = commandParams as JsonObject;
95 switch (commandName) {
96 case OCPP20RequestCommand.BOOT_NOTIFICATION:
97 return commandParams as unknown as Request;
98 case OCPP20RequestCommand.HEARTBEAT:
99 return OCPPConstants.OCPP_RESPONSE_EMPTY as unknown as Request;
100 case OCPP20RequestCommand.STATUS_NOTIFICATION:
101 return {
102 timestamp: new Date(),
103 ...commandParams,
104 } as unknown as Request;
105 default:
106 // OCPPError usage here is debatable: it's an error in the OCPP stack but not targeted to sendError().
107 throw new OCPPError(
108 ErrorType.NOT_SUPPORTED,
109 // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
110 `Unsupported OCPP command '${commandName}'`,
111 commandName,
112 commandParams
113 );
114 }
115 }
116
117 private parseJsonSchemaFile<T extends JsonType>(relativePath: string): JSONSchemaType<T> {
118 return JSON.parse(
119 fs.readFileSync(
120 path.resolve(path.dirname(fileURLToPath(import.meta.url)), relativePath),
121 'utf8'
122 )
123 ) as JSONSchemaType<T>;
124 }
125 }