2017-04-21 10:55:08 +00:00
|
|
|
/* @flow */
|
|
|
|
|
2017-06-28 14:56:57 +00:00
|
|
|
import _ from 'lodash';
|
2017-05-04 15:20:41 +00:00
|
|
|
|
|
|
|
import parseURLParams from './parseURLParams';
|
|
|
|
|
|
|
|
declare var $: Object;
|
|
|
|
|
|
|
|
/**
|
2017-12-12 19:16:55 +00:00
|
|
|
* The config keys to whitelist, the keys that can be overridden.
|
|
|
|
* Currently we can only whitelist the first part of the properties, like
|
|
|
|
* 'p2p.useStunTurn' and 'p2p.enabled' we whitelist all p2p options.
|
|
|
|
* The whitelist is used only for config.js.
|
2017-05-04 15:20:41 +00:00
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @type Array
|
|
|
|
*/
|
2017-12-12 19:16:55 +00:00
|
|
|
const WHITELISTED_KEYS = [
|
|
|
|
'_peerConnStatusOutOfLastNTimeout',
|
|
|
|
'_peerConnStatusRtcMuteTimeout',
|
|
|
|
'abTesting',
|
|
|
|
'alwaysVisibleToolbar',
|
|
|
|
'autoRecord',
|
|
|
|
'autoRecordToken',
|
|
|
|
'avgRtpStatsN',
|
|
|
|
'callStatsConfIDNamespace',
|
|
|
|
'callStatsID',
|
|
|
|
'callStatsSecret',
|
|
|
|
'channelLastN',
|
|
|
|
'constraints',
|
|
|
|
'debug',
|
|
|
|
'debugAudioLevels',
|
|
|
|
'defaultLanguage',
|
|
|
|
'desktopSharingChromeDisabled',
|
|
|
|
'desktopSharingChromeExtId',
|
|
|
|
'desktopSharingChromeMinExtVersion',
|
|
|
|
'desktopSharingChromeSources',
|
2018-02-26 17:45:42 +00:00
|
|
|
'desktopSharingFrameRate',
|
2017-12-12 19:16:55 +00:00
|
|
|
'desktopSharingFirefoxDisabled',
|
|
|
|
'desktopSharingSources',
|
|
|
|
'disable1On1Mode',
|
|
|
|
'disableAEC',
|
|
|
|
'disableAGC',
|
|
|
|
'disableAP',
|
|
|
|
'disableAudioLevels',
|
|
|
|
'disableDesktopSharing',
|
|
|
|
'disableDesktopSharing',
|
|
|
|
'disableH264',
|
|
|
|
'disableHPF',
|
|
|
|
'disableNS',
|
|
|
|
'disableRemoteControl',
|
|
|
|
'disableRtx',
|
|
|
|
'disableSuspendVideo',
|
|
|
|
'displayJids',
|
|
|
|
'enableDisplayNameInStats',
|
|
|
|
'enableLipSync',
|
|
|
|
'enableLocalVideoFlip',
|
|
|
|
'enableRecording',
|
2018-04-23 23:15:11 +00:00
|
|
|
'enableRemb',
|
2017-12-12 19:16:55 +00:00
|
|
|
'enableStatsID',
|
|
|
|
'enableTalkWhileMuted',
|
2018-04-23 23:15:11 +00:00
|
|
|
'enableTcc',
|
2017-12-12 19:16:55 +00:00
|
|
|
'enableUserRolesBasedOnToken',
|
|
|
|
'etherpad_base',
|
|
|
|
'failICE',
|
|
|
|
'firefox_fake_device',
|
|
|
|
'forceJVB121Ratio',
|
2018-03-05 17:12:39 +00:00
|
|
|
'gatherStats',
|
2018-03-23 17:52:32 +00:00
|
|
|
'googleApiApplicationClientID',
|
2017-12-12 19:16:55 +00:00
|
|
|
'hiddenDomain',
|
|
|
|
'hosts',
|
|
|
|
'iAmRecorder',
|
|
|
|
'iAmSipGateway',
|
2018-02-28 19:28:47 +00:00
|
|
|
'iceTransportPolicy',
|
2017-12-12 19:16:55 +00:00
|
|
|
'ignoreStartMuted',
|
2018-04-23 23:15:11 +00:00
|
|
|
'minParticipants',
|
2017-12-12 19:16:55 +00:00
|
|
|
'nick',
|
|
|
|
'openBridgeChannel',
|
|
|
|
'p2p',
|
|
|
|
'preferH264',
|
|
|
|
'recordingType',
|
|
|
|
'requireDisplayName',
|
|
|
|
'resolution',
|
|
|
|
'startAudioMuted',
|
|
|
|
'startAudioOnly',
|
|
|
|
'startBitrate',
|
|
|
|
'startScreenSharing',
|
|
|
|
'startVideoMuted',
|
|
|
|
'startWithAudioMuted',
|
|
|
|
'startWithVideoMuted',
|
|
|
|
'testing',
|
|
|
|
'useIPv6',
|
|
|
|
'useNicks',
|
|
|
|
'useStunTurn',
|
|
|
|
'webrtcIceTcpDisable',
|
|
|
|
'webrtcIceUdpDisable'
|
2017-05-04 15:20:41 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
|
|
|
|
|
|
|
// XXX The functions getRoomName and parseURLParams are split out of
|
|
|
|
// functions.js because they are bundled in both app.bundle and
|
|
|
|
// do_external_connect, webpack 1 does not support tree shaking, and we don't
|
|
|
|
// want all functions to be bundled in do_external_connect.
|
|
|
|
export { default as getRoomName } from './getRoomName';
|
|
|
|
export { parseURLParams };
|
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* Sends HTTP POST request to specified {@code endpoint}. In request the name
|
2017-05-04 15:20:41 +00:00
|
|
|
* of the room is included in JSON format:
|
|
|
|
* {
|
|
|
|
* "rooomName": "someroom12345"
|
|
|
|
* }.
|
|
|
|
*
|
|
|
|
* @param {string} endpoint - The name of HTTP endpoint to which to send
|
|
|
|
* the HTTP POST request.
|
|
|
|
* @param {string} roomName - The name of the conference room for which config
|
|
|
|
* is requested.
|
|
|
|
* @param {Function} complete - The callback to invoke upon success or failure.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
export function obtainConfig(
|
|
|
|
endpoint: string,
|
|
|
|
roomName: string,
|
|
|
|
complete: Function) {
|
|
|
|
logger.info(`Send config request to ${endpoint} for room: ${roomName}`);
|
|
|
|
$.ajax(
|
|
|
|
endpoint,
|
|
|
|
{
|
|
|
|
contentType: 'application/json',
|
|
|
|
data: JSON.stringify({ roomName }),
|
|
|
|
dataType: 'json',
|
|
|
|
method: 'POST',
|
|
|
|
|
|
|
|
error(jqXHR, textStatus, errorThrown) {
|
|
|
|
logger.error('Get config error: ', jqXHR, errorThrown);
|
|
|
|
complete(false, `Get config response status: ${textStatus}`);
|
|
|
|
},
|
|
|
|
success(data) {
|
|
|
|
const { config, interfaceConfig, loggingConfig } = window;
|
|
|
|
|
|
|
|
try {
|
|
|
|
overrideConfigJSON(
|
|
|
|
config, interfaceConfig, loggingConfig,
|
|
|
|
data);
|
|
|
|
complete(true);
|
|
|
|
} catch (e) {
|
|
|
|
logger.error('Parse config error: ', e);
|
|
|
|
complete(false, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2017-04-21 10:55:08 +00:00
|
|
|
}
|
|
|
|
|
2017-05-04 15:20:41 +00:00
|
|
|
/* eslint-disable max-params, no-shadow */
|
|
|
|
|
2017-04-21 10:55:08 +00:00
|
|
|
/**
|
2017-05-04 15:20:41 +00:00
|
|
|
* Overrides JSON properties in {@code config} and
|
|
|
|
* {@code interfaceConfig} Objects with the values from {@code newConfig}.
|
2017-12-12 19:16:55 +00:00
|
|
|
* Overrides only the whitelisted keys.
|
2017-04-21 10:55:08 +00:00
|
|
|
*
|
2017-05-04 15:20:41 +00:00
|
|
|
* @param {Object} config - The config Object in which we'll be overriding
|
|
|
|
* properties.
|
|
|
|
* @param {Object} interfaceConfig - The interfaceConfig Object in which we'll
|
|
|
|
* be overriding properties.
|
|
|
|
* @param {Object} loggingConfig - The loggingConfig Object in which we'll be
|
|
|
|
* overriding properties.
|
|
|
|
* @param {Object} json - Object containing configuration properties.
|
|
|
|
* Destination object is selected based on root property name:
|
|
|
|
* {
|
|
|
|
* config: {
|
|
|
|
* // config.js properties here
|
|
|
|
* },
|
|
|
|
* interfaceConfig: {
|
|
|
|
* // interface_config.js properties here
|
|
|
|
* },
|
|
|
|
* loggingConfig: {
|
|
|
|
* // logging_config.js properties here
|
|
|
|
* }
|
|
|
|
* }.
|
|
|
|
* @returns {void}
|
2017-04-21 10:55:08 +00:00
|
|
|
*/
|
2017-05-04 15:20:41 +00:00
|
|
|
export function overrideConfigJSON(
|
2018-03-06 16:08:23 +00:00
|
|
|
config: ?Object, interfaceConfig: ?Object, loggingConfig: ?Object,
|
2017-05-04 15:20:41 +00:00
|
|
|
json: Object) {
|
|
|
|
for (const configName of Object.keys(json)) {
|
|
|
|
let configObj;
|
|
|
|
|
|
|
|
if (configName === 'config') {
|
|
|
|
configObj = config;
|
|
|
|
} else if (configName === 'interfaceConfig') {
|
|
|
|
configObj = interfaceConfig;
|
|
|
|
} else if (configName === 'loggingConfig') {
|
|
|
|
configObj = loggingConfig;
|
|
|
|
}
|
|
|
|
if (configObj) {
|
2017-12-12 19:16:55 +00:00
|
|
|
const configJSON
|
|
|
|
= _getWhitelistedJSON(configName, json[configName]);
|
2017-05-04 15:20:41 +00:00
|
|
|
|
2017-06-28 14:56:57 +00:00
|
|
|
if (!_.isEmpty(configJSON)) {
|
|
|
|
logger.info(
|
2017-08-17 17:43:28 +00:00
|
|
|
`Extending ${configName} with: ${
|
|
|
|
JSON.stringify(configJSON)}`);
|
|
|
|
|
|
|
|
// eslint-disable-next-line arrow-body-style
|
|
|
|
_.mergeWith(configObj, configJSON, (oldValue, newValue) => {
|
|
|
|
|
|
|
|
// XXX We don't want to merge the arrays, we want to
|
|
|
|
// overwrite them.
|
|
|
|
return Array.isArray(oldValue) ? newValue : undefined;
|
|
|
|
});
|
2017-04-21 10:55:08 +00:00
|
|
|
}
|
2017-05-04 15:20:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 16:08:23 +00:00
|
|
|
/* eslint-enable max-params, no-shadow */
|
|
|
|
|
2017-12-12 19:16:55 +00:00
|
|
|
/**
|
|
|
|
* Whitelist only config.js, skips this for others configs
|
|
|
|
* (interfaceConfig, loggingConfig).
|
|
|
|
* Only extracts overridden values for keys we allow to be overridden.
|
|
|
|
*
|
|
|
|
* @param {string} configName - The config name, one of config,
|
|
|
|
* interfaceConfig, loggingConfig.
|
|
|
|
* @param {Object} configJSON - The object with keys and values to override.
|
2018-03-06 16:08:23 +00:00
|
|
|
* @private
|
2017-12-12 19:16:55 +00:00
|
|
|
* @returns {Object} - The result object only with the keys
|
|
|
|
* that are whitelisted.
|
|
|
|
*/
|
|
|
|
function _getWhitelistedJSON(configName, configJSON) {
|
|
|
|
if (configName !== 'config') {
|
|
|
|
return configJSON;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _.pick(configJSON, WHITELISTED_KEYS);
|
|
|
|
}
|
|
|
|
|
2018-03-06 16:08:23 +00:00
|
|
|
/* eslint-disable max-params */
|
2017-05-04 15:20:41 +00:00
|
|
|
|
|
|
|
/**
|
2018-03-06 16:08:23 +00:00
|
|
|
* Inspects the hash part of the location URI and overrides values specified
|
|
|
|
* there in the corresponding config objects given as the arguments. The syntax
|
|
|
|
* is: {@code https://server.com/room#config.debug=true
|
|
|
|
* &interfaceConfig.showButton=false&loggingConfig.something=1}.
|
2017-05-04 15:20:41 +00:00
|
|
|
*
|
2018-03-06 16:08:23 +00:00
|
|
|
* In the hash part each parameter will be parsed to JSON and then the root
|
|
|
|
* object will be matched with the corresponding config object given as the
|
|
|
|
* argument to this function.
|
|
|
|
*
|
|
|
|
* @param {Object} config - This is the general config.
|
|
|
|
* @param {Object} interfaceConfig - This is the interface config.
|
|
|
|
* @param {Object} loggingConfig - The logging config.
|
|
|
|
* @param {URI} location - The new location to which the app is navigating to.
|
2017-05-04 15:20:41 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2018-03-06 16:08:23 +00:00
|
|
|
export function setConfigFromURLParams(
|
|
|
|
config: ?Object,
|
|
|
|
interfaceConfig: ?Object,
|
|
|
|
loggingConfig: ?Object,
|
|
|
|
location: Object) {
|
|
|
|
const params = parseURLParams(location);
|
2017-05-04 15:20:41 +00:00
|
|
|
const json = {};
|
2017-04-21 10:55:08 +00:00
|
|
|
|
2018-03-06 16:08:23 +00:00
|
|
|
// At this point we have:
|
|
|
|
// params = {
|
|
|
|
// "config.disableAudioLevels": false,
|
|
|
|
// "config.channelLastN": -1,
|
|
|
|
// "interfaceConfig.APP_NAME": "Jitsi Meet"
|
|
|
|
// }
|
|
|
|
// We want to have:
|
|
|
|
// json = {
|
|
|
|
// config: {
|
|
|
|
// "disableAudioLevels": false,
|
|
|
|
// "channelLastN": -1
|
|
|
|
// },
|
|
|
|
// interfaceConfig: {
|
|
|
|
// "APP_NAME": "Jitsi Meet"
|
|
|
|
// }
|
|
|
|
// }
|
2017-05-04 15:20:41 +00:00
|
|
|
config && (json.config = {});
|
|
|
|
interfaceConfig && (json.interfaceConfig = {});
|
|
|
|
loggingConfig && (json.loggingConfig = {});
|
|
|
|
|
|
|
|
for (const param of Object.keys(params)) {
|
2017-06-28 14:56:57 +00:00
|
|
|
let base = json;
|
|
|
|
const names = param.split('.');
|
|
|
|
const last = names.pop();
|
|
|
|
|
|
|
|
for (const name of names) {
|
|
|
|
base = base[name] = base[name] || {};
|
2017-04-21 10:55:08 +00:00
|
|
|
}
|
2017-06-28 14:56:57 +00:00
|
|
|
|
|
|
|
base[last] = params[param];
|
2017-05-04 15:20:41 +00:00
|
|
|
}
|
2017-04-21 10:55:08 +00:00
|
|
|
|
2017-05-04 15:20:41 +00:00
|
|
|
overrideConfigJSON(config, interfaceConfig, loggingConfig, json);
|
2017-04-21 10:55:08 +00:00
|
|
|
}
|
2018-03-06 16:08:23 +00:00
|
|
|
|
|
|
|
/* eslint-enable max-params */
|