2021-07-25 01:02:42 +00:00
|
|
|
import {LiveAtlasGlobalConfig, LiveAtlasServerDefinition} from "@/index";
|
2021-05-27 00:41:58 +00:00
|
|
|
import ConfigurationError from "@/errors/ConfigurationError";
|
|
|
|
import {DynmapUrlConfig} from "@/dynmap";
|
|
|
|
|
|
|
|
const validateLiveAtlasConfiguration = (config: any): Map<string, LiveAtlasServerDefinition> => {
|
|
|
|
const check = '\nCheck your server configuration in index.html is correct.',
|
|
|
|
result = new Map<string, LiveAtlasServerDefinition>();
|
|
|
|
|
|
|
|
if (!Object.keys(config).length) {
|
|
|
|
throw new ConfigurationError(`No servers defined. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const server in config) {
|
|
|
|
if (!Object.hasOwnProperty.call(config, server)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const serverConfig = config[server];
|
|
|
|
|
|
|
|
if (!serverConfig || serverConfig.constructor !== Object || !Object.keys(serverConfig).length) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Configuration missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
serverConfig.id = server;
|
|
|
|
serverConfig.type = serverConfig.type || 'dynmap';
|
|
|
|
|
|
|
|
switch(serverConfig.type) {
|
|
|
|
case 'dynmap':
|
|
|
|
if (!serverConfig.dynmap || serverConfig.dynmap.constructor !== Object) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Dynmap configuration object missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serverConfig.dynmap.configuration) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Dynmap configuration URL missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serverConfig.dynmap.update) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Dynmap update URL missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serverConfig.dynmap.markers) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Dynmap markers URL missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serverConfig.dynmap.tiles) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Dynmap tiles URL missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!serverConfig.dynmap.sendmessage) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Dynmap sendmessage URL missing. ${check}`);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'pl3xmap':
|
|
|
|
case 'plexmap':
|
|
|
|
if (!serverConfig.plexmap || serverConfig.plexmap.constructor !== Object) {
|
|
|
|
throw new ConfigurationError(`Server '${server}': Pl3xmap configuration object missing. ${check}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result.set(server, serverConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
2021-07-25 01:02:42 +00:00
|
|
|
const validateDynmapConfiguration = (config: DynmapUrlConfig): Map<string, LiveAtlasServerDefinition> => {
|
2021-05-27 00:41:58 +00:00
|
|
|
const check = '\nCheck your standalone/config.js file exists and is being loaded correctly.';
|
|
|
|
|
|
|
|
if (!config) {
|
|
|
|
throw new ConfigurationError(`Dynmap configuration is missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.configuration) {
|
|
|
|
throw new ConfigurationError(`Dynmap configuration URL is missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.update) {
|
|
|
|
throw new ConfigurationError(`Dynmap update URL is missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.markers) {
|
|
|
|
throw new ConfigurationError(`Dynmap markers URL is missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.tiles) {
|
|
|
|
throw new ConfigurationError(`Dynmap tiles URL is missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!config.sendmessage) {
|
|
|
|
throw new ConfigurationError(`Dynmap sendmessage URL is missing. ${check}`);
|
|
|
|
}
|
|
|
|
|
2021-07-25 01:02:42 +00:00
|
|
|
const result = new Map<string, LiveAtlasServerDefinition>();
|
2021-05-27 00:41:58 +00:00
|
|
|
result.set('dynmap', {
|
|
|
|
id: 'dynmap',
|
|
|
|
label: 'dynmap',
|
|
|
|
type: 'dynmap',
|
|
|
|
dynmap: config
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
2021-07-20 20:12:08 +00:00
|
|
|
export const getServerDefinitions = (config: LiveAtlasGlobalConfig): Map<string, LiveAtlasServerDefinition> => {
|
|
|
|
if (!config) {
|
2021-05-27 00:41:58 +00:00
|
|
|
throw new ConfigurationError(`Configuration object is missing`);
|
|
|
|
}
|
|
|
|
|
2021-07-22 21:49:38 +00:00
|
|
|
if (typeof config.servers !== 'undefined') {
|
|
|
|
return validateLiveAtlasConfiguration(config.servers);
|
2021-05-27 00:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return validateDynmapConfiguration(window.config?.url || null);
|
|
|
|
};
|
2021-07-20 20:12:08 +00:00
|
|
|
|