chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / AbstractUIServer.ts
index c6cc741b041b63d6a250f21ebcd7b58a9bfca0e6..78f0468322bf35b02ef28c25c16400ec72753803 100644 (file)
@@ -1,11 +1,11 @@
-import { type IncomingMessage, Server, type ServerResponse } from 'node:http';
-import { type Http2Server, createServer } from 'node:http2';
+import { type IncomingMessage, Server, type ServerResponse } from 'node:http'
+import { type Http2Server, createServer } from 'node:http2'
 
-import type { WebSocket } from 'ws';
+import type { WebSocket } from 'ws'
 
-import type { AbstractUIService } from './ui-services/AbstractUIService.js';
-import { UIServiceFactory } from './ui-services/UIServiceFactory.js';
-import { BaseError } from '../../exception/index.js';
+import type { AbstractUIService } from './ui-services/AbstractUIService.js'
+import { UIServiceFactory } from './ui-services/UIServiceFactory.js'
+import { BaseError } from '../../exception/index.js'
 import {
   ApplicationProtocolVersion,
   AuthenticationType,
@@ -16,116 +16,112 @@ import {
   ProtocolVersion,
   type RequestPayload,
   type ResponsePayload,
-  type UIServerConfiguration,
-} from '../../types/index.js';
+  type UIServerConfiguration
+} from '../../types/index.js'
 
 export abstract class AbstractUIServer {
-  public readonly chargingStations: Map<string, ChargingStationData>;
-  protected readonly httpServer: Server | Http2Server;
-  protected readonly responseHandlers: Map<string, ServerResponse | WebSocket>;
-  protected readonly uiServices: Map<ProtocolVersion, AbstractUIService>;
+  public readonly chargingStations: Map<string, ChargingStationData>
+  protected readonly httpServer: Server | Http2Server
+  protected readonly responseHandlers: Map<string, ServerResponse | WebSocket>
+  protected readonly uiServices: Map<ProtocolVersion, AbstractUIService>
 
-  public constructor(protected readonly uiServerConfiguration: UIServerConfiguration) {
-    this.chargingStations = new Map<string, ChargingStationData>();
+  public constructor (protected readonly uiServerConfiguration: UIServerConfiguration) {
+    this.chargingStations = new Map<string, ChargingStationData>()
     switch (this.uiServerConfiguration.version) {
       case ApplicationProtocolVersion.VERSION_11:
-        this.httpServer = new Server();
-        break;
+        this.httpServer = new Server()
+        break
       case ApplicationProtocolVersion.VERSION_20:
-        this.httpServer = createServer();
-        break;
+        this.httpServer = createServer()
+        break
       default:
         throw new BaseError(
-          `Unsupported application protocol version ${this.uiServerConfiguration.version}`,
-        );
+          `Unsupported application protocol version ${this.uiServerConfiguration.version}`
+        )
     }
-    this.responseHandlers = new Map<string, ServerResponse | WebSocket>();
-    this.uiServices = new Map<ProtocolVersion, AbstractUIService>();
+    this.responseHandlers = new Map<string, ServerResponse | WebSocket>()
+    this.uiServices = new Map<ProtocolVersion, AbstractUIService>()
   }
 
-  public buildProtocolRequest(
+  public buildProtocolRequest (
     id: string,
     procedureName: ProcedureName,
-    requestPayload: RequestPayload,
+    requestPayload: RequestPayload
   ): ProtocolRequest {
-    return [id, procedureName, requestPayload];
+    return [id, procedureName, requestPayload]
   }
 
-  public buildProtocolResponse(id: string, responsePayload: ResponsePayload): ProtocolResponse {
-    return [id, responsePayload];
+  public buildProtocolResponse (id: string, responsePayload: ResponsePayload): ProtocolResponse {
+    return [id, responsePayload]
   }
 
-  public stop(): void {
-    this.stopHttpServer();
-    this.chargingStations.clear();
+  public stop (): void {
+    this.stopHttpServer()
+    this.chargingStations.clear()
   }
 
-  public async sendInternalRequest(request: ProtocolRequest): Promise<ProtocolResponse> {
-    const protocolVersion = ProtocolVersion['0.0.1'];
-    this.registerProtocolVersionUIService(protocolVersion);
-    return this.uiServices
+  public async sendInternalRequest (request: ProtocolRequest): Promise<ProtocolResponse> {
+    const protocolVersion = ProtocolVersion['0.0.1']
+    this.registerProtocolVersionUIService(protocolVersion)
+    return await (this.uiServices
       .get(protocolVersion)
-      ?.requestHandler(request) as Promise<ProtocolResponse>;
+      ?.requestHandler(request) as Promise<ProtocolResponse>)
   }
 
-  public hasResponseHandler(id: string): boolean {
-    return this.responseHandlers.has(id);
+  public hasResponseHandler (id: string): boolean {
+    return this.responseHandlers.has(id)
   }
 
-  protected startHttpServer(): void {
-    if (this.httpServer.listening === false) {
-      this.httpServer.listen(this.uiServerConfiguration.options);
+  protected startHttpServer (): void {
+    if (!this.httpServer.listening) {
+      this.httpServer.listen(this.uiServerConfiguration.options)
     }
   }
 
-  protected registerProtocolVersionUIService(version: ProtocolVersion): void {
-    if (this.uiServices.has(version) === false) {
-      this.uiServices.set(version, UIServiceFactory.getUIServiceImplementation(version, this));
+  protected registerProtocolVersionUIService (version: ProtocolVersion): void {
+    if (!this.uiServices.has(version)) {
+      this.uiServices.set(version, UIServiceFactory.getUIServiceImplementation(version, this))
     }
   }
 
-  protected authenticate(req: IncomingMessage, next: (err?: Error) => void): void {
-    if (this.isBasicAuthEnabled() === true) {
-      if (this.isValidBasicAuth(req) === false) {
-        next(new BaseError('Unauthorized'));
+  protected authenticate (req: IncomingMessage, next: (err?: Error) => void): void {
+    if (this.isBasicAuthEnabled()) {
+      if (!this.isValidBasicAuth(req)) {
+        next(new BaseError('Unauthorized'))
       }
-      next();
+      next()
     }
-    next();
+    next()
   }
 
-  private stopHttpServer(): void {
-    if (this.httpServer.listening === true) {
-      this.httpServer.close();
+  private stopHttpServer (): void {
+    if (this.httpServer.listening) {
+      this.httpServer.close()
     }
   }
 
-  private isBasicAuthEnabled(): boolean {
+  private isBasicAuthEnabled (): boolean {
     return (
       this.uiServerConfiguration.authentication?.enabled === true &&
       this.uiServerConfiguration.authentication?.type === AuthenticationType.BASIC_AUTH
-    );
+    )
   }
 
-  private isValidBasicAuth(req: IncomingMessage): boolean {
-    const authorizationHeader = req.headers.authorization ?? '';
-    const authorizationToken = authorizationHeader.split(/\s+/).pop() ?? '';
-    const authentication = Buffer.from(authorizationToken, 'base64').toString();
-    const authenticationParts = authentication.split(/:/);
-    const username = authenticationParts.shift();
-    const password = authenticationParts.join(':');
+  private isValidBasicAuth (req: IncomingMessage): boolean {
+    const authorizationHeader = req.headers.authorization ?? ''
+    const authorizationToken = authorizationHeader.split(/\s+/).pop() ?? ''
+    const authentication = Buffer.from(authorizationToken, 'base64').toString()
+    const authenticationParts = authentication.split(/:/)
+    const username = authenticationParts.shift()
+    const password = authenticationParts.join(':')
     return (
       this.uiServerConfiguration.authentication?.username === username &&
       this.uiServerConfiguration.authentication?.password === password
-    );
+    )
   }
 
-  public abstract start(): void;
-  public abstract sendRequest(request: ProtocolRequest): void;
-  public abstract sendResponse(response: ProtocolResponse): void;
-  public abstract logPrefix(
-    moduleName?: string,
-    methodName?: string,
-    prefixSuffix?: string,
-  ): string;
+  public abstract start (): void
+  public abstract sendRequest (request: ProtocolRequest): void
+  public abstract sendResponse (response: ProtocolResponse): void
+  public abstract logPrefix (moduleName?: string, methodName?: string, prefixSuffix?: string): string
 }