X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fcomposables%2FUIClient.ts;h=9a6920418d3adb255f64a8e97e50be35e9586640;hb=c25a4046983ef80409cbc4546f944231e8655604;hp=c5f20ce09b2fb83d376a8cd2eddb736350a3abe5;hpb=ca1e5439d7a19520d752a8c60513d4229b118e35;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/composables/UIClient.ts b/ui/web/src/composables/UIClient.ts index c5f20ce0..9a692041 100644 --- a/ui/web/src/composables/UIClient.ts +++ b/ui/web/src/composables/UIClient.ts @@ -1,12 +1,12 @@ import { ApplicationProtocol, AuthenticationType, - type ConfigurationData, ProcedureName, type ProtocolResponse, type RequestPayload, type ResponsePayload, - ResponseStatus + ResponseStatus, + type UIServerConfigurationSection } from '@/types' type ResponseHandler = { @@ -21,14 +21,14 @@ export class UIClient { private ws!: WebSocket private responseHandlers: Map - private constructor(private configuration: ConfigurationData) { + private constructor(private uiServerConfiguration: UIServerConfigurationSection) { this.openWS() this.responseHandlers = new Map() } - public static getInstance(configuration: ConfigurationData) { + public static getInstance(uiServerConfiguration: UIServerConfigurationSection): UIClient { if (UIClient.instance === null) { - UIClient.instance = new UIClient(configuration) + UIClient.instance = new UIClient(uiServerConfiguration) } return UIClient.instance } @@ -67,6 +67,13 @@ export class UIClient { return this.sendRequest(ProcedureName.DELETE_CHARGING_STATIONS, { hashIds: [hashId] }) } + public async setSupervisionUrl(hashId: string, supervisionUrl: string): Promise { + return this.sendRequest(ProcedureName.SET_SUPERVISION_URL, { + hashIds: [hashId], + url: supervisionUrl + }) + } + public async startChargingStation(hashId: string): Promise { return this.sendRequest(ProcedureName.START_CHARGING_STATION, { hashIds: [hashId] }) } @@ -131,15 +138,15 @@ export class UIClient { private openWS(): void { const protocols = - this.configuration.uiServer.authentication?.enabled === true && - this.configuration.uiServer.authentication?.type === AuthenticationType.PROTOCOL_BASIC_AUTH + this.uiServerConfiguration.authentication?.enabled === true && + this.uiServerConfiguration.authentication?.type === AuthenticationType.PROTOCOL_BASIC_AUTH ? [ - `${this.configuration.uiServer.protocol}${this.configuration.uiServer.version}`, - `authorization.basic.${btoa(`${this.configuration.uiServer.authentication.username}:${this.configuration.uiServer.authentication.password}`).replace(/={1,2}$/, '')}` + `${this.uiServerConfiguration.protocol}${this.uiServerConfiguration.version}`, + `authorization.basic.${btoa(`${this.uiServerConfiguration.authentication.username}:${this.uiServerConfiguration.authentication.password}`).replace(/={1,2}$/, '')}` ] - : `${this.configuration.uiServer.protocol}${this.configuration.uiServer.version}` + : `${this.uiServerConfiguration.protocol}${this.uiServerConfiguration.version}` this.ws = new WebSocket( - `${this.configuration.uiServer.secure === true ? ApplicationProtocol.WSS : ApplicationProtocol.WS}://${this.configuration.uiServer.host}:${this.configuration.uiServer.port}`, + `${this.uiServerConfiguration.secure === true ? ApplicationProtocol.WSS : ApplicationProtocol.WS}://${this.uiServerConfiguration.host}:${this.uiServerConfiguration.port}`, protocols ) this.ws.onopen = openEvent => { @@ -200,8 +207,10 @@ export class UIClient { reject(responsePayload) break default: - console.error( - `Response status for procedure '${procedureName}' not supported: '${responsePayload.status}'` + reject( + new Error( + `Response status for procedure '${procedureName}' not supported: '${responsePayload.status}'` + ) ) } this.responseHandlers.delete(uuid)