| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | 
							- /* global config, interfaceConfig, loggingConfig, getConfigParamsFromUrl */
 - const logger = require("jitsi-meet-logger").getLogger(__filename);
 - 
 - var configUtils = require('./Util');
 - var params = {};
 - 
 - params = getConfigParamsFromUrl();
 - 
 - var URLProcessor = {
 -     setConfigParametersFromUrl: function () {
 -         // Convert 'params' to JSON object
 -         // We have:
 -         // {
 -         //   "config.disableAudioLevels": false,
 -         //   "config.channelLastN": -1,
 -         //   "interfaceConfig.APP_NAME": "Jitsi Meet"
 -         // }
 -         // We want to have:
 -         // {
 -         //   "config": {
 -         //     "disableAudioLevels": false,
 -         //     "channelLastN": -1
 -         //   },
 -         //   interfaceConfig: {
 -         //     APP_NAME: "Jitsi Meet"
 -         //   }
 -         // }
 -         var configJSON = {
 -             config: {},
 -             interfaceConfig: {},
 -             loggingConfig: {}
 -         };
 -         for (var key in params) {
 -             if (typeof key !== "string") {
 -                 logger.warn("Invalid config key: ", key);
 -                 continue;
 -             }
 -             var confObj = null, confKey;
 -             if (key.indexOf("config.") === 0) {
 -                 confObj = configJSON.config;
 -                 confKey = key.substr("config.".length);
 - 
 -                 // prevent passing some parameters which can inject scripts
 -                 if (confKey === 'analyticsScriptUrls'
 -                     || confKey === 'callStatsCustomScriptUrl')
 -                     continue;
 - 
 -             } else if (key.indexOf("interfaceConfig.") === 0) {
 -                 confObj = configJSON.interfaceConfig;
 -                 confKey = key.substr("interfaceConfig.".length);
 -             } else if (key.indexOf("loggingConfig.") === 0) {
 -                 confObj = configJSON.loggingConfig;
 -                 confKey = key.substr("loggingConfig.".length);
 -             }
 - 
 -             if (!confObj)
 -                 continue;
 - 
 -             confObj[confKey] = params[key];
 -         }
 -         configUtils.overrideConfigJSON(
 -             config, interfaceConfig, loggingConfig, configJSON);
 -     }
 - };
 - 
 - module.exports = URLProcessor;
 
 
  |