123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- // @flow
-
- import _ from 'lodash';
-
- import { CONFERENCE_INFO } from '../../conference/components/constants';
- import { equals, ReducerRegistry } from '../redux';
-
- import {
- UPDATE_CONFIG,
- CONFIG_WILL_LOAD,
- LOAD_CONFIG_ERROR,
- SET_CONFIG,
- OVERWRITE_CONFIG
- } from './actionTypes';
- import { _cleanupConfig } from './functions';
-
- declare var interfaceConfig: Object;
-
- /**
- * The initial state of the feature base/config when executing in a
- * non-React Native environment. The mandatory configuration to be passed to
- * JitsiMeetJS#init(). The app will download config.js from the Jitsi Meet
- * deployment and take its values into account but the values below will be
- * enforced (because they are essential to the correct execution of the
- * application).
- *
- * @type {Object}
- */
- const INITIAL_NON_RN_STATE = {
- };
-
- /**
- * The initial state of the feature base/config when executing in a React Native
- * environment. The mandatory configuration to be passed to JitsiMeetJS#init().
- * The app will download config.js from the Jitsi Meet deployment and take its
- * values into account but the values below will be enforced (because they are
- * essential to the correct execution of the application).
- *
- * @type {Object}
- */
- const INITIAL_RN_STATE = {
- analytics: {},
-
- // FIXME The support for audio levels in lib-jitsi-meet polls the statistics
- // of WebRTC at a short interval multiple times a second. Unfortunately,
- // React Native is slow to fetch these statistics from the native WebRTC
- // API, through the React Native bridge and eventually to JavaScript.
- // Because the audio levels are of no interest to the mobile app, it is
- // fastest to merely disable them.
- disableAudioLevels: true,
-
- p2p: {
- disabledCodec: '',
- disableH264: false, // deprecated
- preferredCodec: 'H264',
- preferH264: true // deprecated
- }
- };
-
- /**
- * Mapping between old configs controlling the conference info headers visibility and the
- * new configs. Needed in order to keep backwards compatibility.
- */
- const CONFERENCE_HEADER_MAPPING = {
- hideConferenceTimer: [ 'conference-timer' ],
- hideConferenceSubject: [ 'subject' ],
- hideParticipantsStats: [ 'participants-count' ],
- hideRecordingLabel: [ 'recording', 'local-recording' ]
- };
-
- ReducerRegistry.register('features/base/config', (state = _getInitialState(), action) => {
- switch (action.type) {
- case UPDATE_CONFIG:
- return _updateConfig(state, action);
-
- case CONFIG_WILL_LOAD:
- return {
- error: undefined,
-
- /**
- * The URL of the location associated with/configured by this
- * configuration.
- *
- * @type URL
- */
- locationURL: action.locationURL
- };
-
- case LOAD_CONFIG_ERROR:
- // XXX LOAD_CONFIG_ERROR is one of the settlement execution paths of
- // the asynchronous "loadConfig procedure/process" started with
- // CONFIG_WILL_LOAD. Due to the asynchronous nature of it, whoever
- // is settling the process needs to provide proof that they have
- // started it and that the iteration of the process being completed
- // now is still of interest to the app.
- if (state.locationURL === action.locationURL) {
- return {
- /**
- * The {@link Error} which prevented the loading of the
- * configuration of the associated {@code locationURL}.
- *
- * @type Error
- */
- error: action.error
- };
- }
- break;
-
- case SET_CONFIG:
- return _setConfig(state, action);
-
- case OVERWRITE_CONFIG:
- return {
- ...state,
- ...action.config
- };
- }
-
- return state;
- });
-
- /**
- * Gets the initial state of the feature base/config. The mandatory
- * configuration to be passed to JitsiMeetJS#init(). The app will download
- * config.js from the Jitsi Meet deployment and take its values into account but
- * the values below will be enforced (because they are essential to the correct
- * execution of the application).
- *
- * @returns {Object}
- */
- function _getInitialState() {
- return (
- navigator.product === 'ReactNative'
- ? INITIAL_RN_STATE
- : INITIAL_NON_RN_STATE);
- }
-
- /**
- * Reduces a specific Redux action SET_CONFIG of the feature
- * base/lib-jitsi-meet.
- *
- * @param {Object} state - The Redux state of the feature base/config.
- * @param {Action} action - The Redux action SET_CONFIG to reduce.
- * @private
- * @returns {Object} The new state after the reduction of the specified action.
- */
- function _setConfig(state, { config }) {
- // The mobile app bundles jitsi-meet and lib-jitsi-meet at build time and
- // does not download them at runtime from the deployment on which it will
- // join a conference. The downloading is planned for implementation in the
- // future (later rather than sooner) but is not implemented yet at the time
- // of this writing and, consequently, we must provide legacy support in the
- // meantime.
-
- // eslint-disable-next-line no-param-reassign
- config = _translateLegacyConfig(config);
-
- const { audioQuality } = config;
- const hdAudioOptions = {};
-
- if (audioQuality?.stereo) {
- Object.assign(hdAudioOptions, {
- disableAP: true,
- enableNoAudioDetection: false,
- enableNoisyMicDetection: false,
- enableTalkWhileMuted: false
- });
- }
-
- const newState = _.merge(
- {},
- config,
- hdAudioOptions,
- { error: undefined },
-
- // The config of _getInitialState() is meant to override the config
- // downloaded from the Jitsi Meet deployment because the former contains
- // values that are mandatory.
- _getInitialState()
- );
-
- _cleanupConfig(newState);
-
- return equals(state, newState) ? state : newState;
- }
-
- /**
- * Processes the conferenceInfo object against the defaults.
- *
- * @param {Object} config - The old config.
- * @returns {Object} The processed conferenceInfo object.
- */
- function _getConferenceInfo(config) {
- const { conferenceInfo } = config;
-
- if (conferenceInfo) {
- return {
- alwaysVisible: conferenceInfo.alwaysVisible ?? [ ...CONFERENCE_INFO.alwaysVisible ],
- autoHide: conferenceInfo.autoHide ?? [ ...CONFERENCE_INFO.autoHide ]
- };
- }
-
- return {
- ...CONFERENCE_INFO
- };
- }
-
- /**
- * Constructs a new config {@code Object}, if necessary, out of a specific
- * config {@code Object} which is in the latest format supported by jitsi-meet.
- * Such a translation from an old config format to a new/the latest config
- * format is necessary because the mobile app bundles jitsi-meet and
- * lib-jitsi-meet at build time and does not download them at runtime from the
- * deployment on which it will join a conference.
- *
- * @param {Object} oldValue - The config {@code Object} which may or may not be
- * in the latest form supported by jitsi-meet and from which a new config
- * {@code Object} is to be constructed if necessary.
- * @returns {Object} A config {@code Object} which is in the latest format
- * supported by jitsi-meet.
- */
- function _translateLegacyConfig(oldValue: Object) {
- const newValue = oldValue;
-
- if (!Array.isArray(oldValue.toolbarButtons)
- && typeof interfaceConfig === 'object' && Array.isArray(interfaceConfig.TOOLBAR_BUTTONS)) {
- newValue.toolbarButtons = interfaceConfig.TOOLBAR_BUTTONS;
- }
-
- if (!oldValue.toolbarConfig) {
- oldValue.toolbarConfig = {};
- }
-
- if (typeof oldValue.toolbarConfig.alwaysVisible !== 'boolean'
- && typeof interfaceConfig === 'object'
- && typeof interfaceConfig.TOOLBAR_ALWAYS_VISIBLE === 'boolean') {
- newValue.toolbarConfig.alwaysVisible = interfaceConfig.TOOLBAR_ALWAYS_VISIBLE;
- }
-
- if (typeof oldValue.toolbarConfig.initialTimeout !== 'number'
- && typeof interfaceConfig === 'object'
- && typeof interfaceConfig.INITIAL_TOOLBAR_TIMEOUT === 'number') {
- newValue.toolbarConfig.initialTimeout = interfaceConfig.INITIAL_TOOLBAR_TIMEOUT;
- }
-
- if (typeof oldValue.toolbarConfig.timeout !== 'number'
- && typeof interfaceConfig === 'object'
- && typeof interfaceConfig.TOOLBAR_TIMEOUT === 'number') {
- newValue.toolbarConfig.timeout = interfaceConfig.TOOLBAR_TIMEOUT;
- }
-
- const filteredConferenceInfo = Object.keys(CONFERENCE_HEADER_MAPPING).filter(key => oldValue[key]);
-
- if (filteredConferenceInfo.length) {
- newValue.conferenceInfo = _getConferenceInfo(oldValue);
-
- filteredConferenceInfo.forEach(key => {
- // hideRecordingLabel does not mean not render it at all, but autoHide it
- if (key === 'hideRecordingLabel') {
- newValue.conferenceInfo.alwaysVisible
- = newValue.conferenceInfo.alwaysVisible.filter(c => !CONFERENCE_HEADER_MAPPING[key].includes(c));
- newValue.conferenceInfo.autoHide
- = _.union(newValue.conferenceInfo.autoHide, CONFERENCE_HEADER_MAPPING[key]);
- } else {
- newValue.conferenceInfo.alwaysVisible
- = newValue.conferenceInfo.alwaysVisible.filter(c => !CONFERENCE_HEADER_MAPPING[key].includes(c));
- newValue.conferenceInfo.autoHide
- = newValue.conferenceInfo.autoHide.filter(c => !CONFERENCE_HEADER_MAPPING[key].includes(c));
- }
- });
- }
-
- if (!oldValue.connectionIndicators
- && typeof interfaceConfig === 'object'
- && (interfaceConfig.hasOwnProperty('CONNECTION_INDICATOR_DISABLED')
- || interfaceConfig.hasOwnProperty('CONNECTION_INDICATOR_AUTO_HIDE_ENABLED')
- || interfaceConfig.hasOwnProperty('CONNECTION_INDICATOR_AUTO_HIDE_TIMEOUT'))) {
- newValue.connectionIndicators = {
- disabled: interfaceConfig.CONNECTION_INDICATOR_DISABLED,
- autoHide: interfaceConfig.CONNECTION_INDICATOR_AUTO_HIDE_ENABLED,
- autoHideTimeout: interfaceConfig.CONNECTION_INDICATOR_AUTO_HIDE_TIMEOUT
- };
- }
-
- newValue.disabledSounds = newValue.disabledSounds || [];
-
- if (oldValue.disableJoinLeaveSounds) {
- newValue.disabledSounds.unshift('PARTICIPANT_LEFT_SOUND', 'PARTICIPANT_JOINED_SOUND');
- }
-
- if (oldValue.disableRecordAudioNotification) {
- newValue.disabledSounds.unshift(
- 'RECORDING_ON_SOUND',
- 'RECORDING_OFF_SOUND',
- 'LIVE_STREAMING_ON_SOUND',
- 'LIVE_STREAMING_OFF_SOUND'
- );
- }
-
- if (oldValue.disableIncomingMessageSound) {
- newValue.disabledSounds.unshift('INCOMING_MSG_SOUND');
- }
-
- if (oldValue.stereo || oldValue.opusMaxAverageBitrate) {
- newValue.audioQuality = {
- opusMaxAverageBitrate: oldValue.audioQuality?.opusMaxAverageBitrate ?? oldValue.opusMaxAverageBitrate,
- stereo: oldValue.audioQuality?.stereo ?? oldValue.stereo
- };
- }
-
- if (oldValue.disableModeratorIndicator === undefined
- && typeof interfaceConfig === 'object'
- && interfaceConfig.hasOwnProperty('DISABLE_FOCUS_INDICATOR')) {
- newValue.disableModeratorIndicator = interfaceConfig.DISABLE_FOCUS_INDICATOR;
- }
-
- return newValue;
- }
-
- /**
- * Updates the stored configuration with the given extra options.
- *
- * @param {Object} state - The Redux state of the feature base/config.
- * @param {Action} action - The Redux action to reduce.
- * @private
- * @returns {Object} The new state after the reduction of the specified action.
- */
- function _updateConfig(state, { config }) {
- const newState = _.merge({}, state, config);
-
- _cleanupConfig(newState);
-
- return equals(state, newState) ? state : newState;
- }
|