X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcharging-station%2Fui-server%2FUIServerFactory.ts;h=c4006b0396d96c8d5ad50e902bfedf8ea2743c65;hb=b85cef4cba7e4d2294940aef29a9f74edf800dac;hp=1ad64014219ace91a0bdcf3c4afe24e4fb00f8ba;hpb=b153c0fd46bdc1dc8006e4dac4d4dfa739ff7707;p=e-mobility-charging-stations-simulator.git diff --git a/src/charging-station/ui-server/UIServerFactory.ts b/src/charging-station/ui-server/UIServerFactory.ts index 1ad64014..c4006b03 100644 --- a/src/charging-station/ui-server/UIServerFactory.ts +++ b/src/charging-station/ui-server/UIServerFactory.ts @@ -1,21 +1,31 @@ -import { AbstractUIServer } from './AbstractUIServer'; -import { ApplicationProtocol } from '../../types/UIProtocol'; -import Configuration from '../../utils/Configuration'; -import { ServerOptions } from '../../types/ConfigurationData'; -import UIWebSocketServer from './UIWebSocketServer'; +import chalk from 'chalk'; -export default class UIServerFactory { +import type { AbstractUIServer } from './AbstractUIServer'; +import { UIHttpServer } from './UIHttpServer'; +import { UIServerUtils } from './UIServerUtils'; +import { UIWebSocketServer } from './UIWebSocketServer'; +import { ApplicationProtocol, type UIServerConfiguration } from '../../types'; + +export class UIServerFactory { private constructor() { // This is intentional } public static getUIServerImplementation( - applicationProtocol: ApplicationProtocol, - options?: ServerOptions + uiServerConfiguration: UIServerConfiguration, ): AbstractUIServer | null { - switch (applicationProtocol) { + if (UIServerUtils.isLoopback(uiServerConfiguration.options!.host!) === false) { + console.warn( + chalk.yellow( + 'Loopback address not detected in UI server configuration. This is not recommended.', + ), + ); + } + switch (uiServerConfiguration.type) { case ApplicationProtocol.WS: - return new UIWebSocketServer(options ?? Configuration.getUIServer().options); + return new UIWebSocketServer(uiServerConfiguration); + case ApplicationProtocol.HTTP: + return new UIHttpServer(uiServerConfiguration); default: return null; }