X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FAbstractUIServer.ts;h=643b18831f2010c525844ccd5085f1a1a3a20ca8;hb=7f77d16f956cd81a026a042ed440aaaba37b1c56;hp=ca53d558894c5db16449d8534ebc0770307dbea7;hpb=01f4001e733ebc61423d3023d87b1399b6afa215;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/AbstractUIServer.ts b/src/charging-station/ui-server/AbstractUIServer.ts index ca53d558..643b1883 100644 --- a/src/charging-station/ui-server/AbstractUIServer.ts +++ b/src/charging-station/ui-server/AbstractUIServer.ts @@ -2,6 +2,9 @@ import { type IncomingMessage, Server, type ServerResponse } from 'node:http'; import type { WebSocket } from 'ws'; +import type { AbstractUIService } from './ui-services/AbstractUIService'; +import { UIServiceFactory } from './ui-services/UIServiceFactory'; +import { BaseError } from '../../exception'; import { AuthenticationType, type ChargingStationData, @@ -13,7 +16,6 @@ import { type ResponsePayload, type UIServerConfiguration, } from '../../types'; -import { type AbstractUIService, UIServiceFactory } from '../internal'; export abstract class AbstractUIServer { public readonly chargingStations: Map; @@ -59,7 +61,7 @@ export abstract class AbstractUIServer { protected authenticate(req: IncomingMessage, next: (err?: Error) => void): void { if (this.isBasicAuthEnabled() === true) { if (this.isValidBasicAuth(req) === false) { - next(new Error('Unauthorized')); + next(new BaseError('Unauthorized')); } next(); }