2018-04-12 19:58:20 +00:00
|
|
|
// @flow
|
|
|
|
|
2019-03-25 11:33:41 +00:00
|
|
|
import { parseURLParams } from '../config';
|
2018-04-12 19:58:20 +00:00
|
|
|
import JitsiMeetJS from '../lib-jitsi-meet';
|
|
|
|
import { updateSettings } from '../settings';
|
|
|
|
|
2019-03-27 17:30:56 +00:00
|
|
|
declare var APP: Object;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detects the use case when the labels are not available if the A/V permissions
|
|
|
|
* are not yet granted.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @returns {boolean} - True if the labels are already initialized and false
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
export function areDeviceLabelsInitialized(state: Object) {
|
2019-03-28 16:29:30 +00:00
|
|
|
// TODO: Replace with something that doesn't use APP when the conference.js logic is reactified.
|
2019-03-27 17:30:56 +00:00
|
|
|
if (APP.conference._localTracksInitialized) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const type of [ 'audioInput', 'audioOutput', 'videoInput' ]) {
|
2019-03-28 16:29:30 +00:00
|
|
|
if ((state['features/base/devices'].availableDevices[type] || []).find(d => Boolean(d.label))) {
|
2019-03-27 17:30:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-12 19:58:20 +00:00
|
|
|
/**
|
|
|
|
* Get device id of the audio output device which is currently in use.
|
|
|
|
* Empty string stands for default device.
|
|
|
|
*
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function getAudioOutputDeviceId() {
|
|
|
|
return JitsiMeetJS.mediaDevices.getAudioOutputDevice();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-27 17:30:56 +00:00
|
|
|
* Finds a device with a label that matches the passed label and returns its id.
|
2018-04-12 19:58:20 +00:00
|
|
|
*
|
2019-03-27 17:30:56 +00:00
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @param {string} label - The label.
|
2019-04-08 17:03:45 +00:00
|
|
|
* @param {string} kind - The type of the device. One of "audioInput",
|
|
|
|
* "audioOutput", and "videoInput". Also supported is all lowercase versions
|
|
|
|
* of the preceding types.
|
2019-03-27 17:30:56 +00:00
|
|
|
* @returns {string|undefined}
|
2018-04-12 19:58:20 +00:00
|
|
|
*/
|
2019-04-08 17:03:45 +00:00
|
|
|
export function getDeviceIdByLabel(state: Object, label: string, kind: string) {
|
|
|
|
const webrtcKindToJitsiKindTranslator = {
|
|
|
|
audioinput: 'audioInput',
|
|
|
|
audiooutput: 'audioOutput',
|
|
|
|
videoinput: 'videoInput'
|
|
|
|
};
|
2019-03-27 17:30:56 +00:00
|
|
|
|
2019-04-08 17:03:45 +00:00
|
|
|
const kindToSearch = webrtcKindToJitsiKindTranslator[kind] || kind;
|
2019-03-27 17:30:56 +00:00
|
|
|
|
2019-04-08 17:03:45 +00:00
|
|
|
const device
|
|
|
|
= (state['features/base/devices'].availableDevices[kindToSearch] || [])
|
|
|
|
.find(d => d.label === label);
|
|
|
|
|
|
|
|
if (device) {
|
|
|
|
return device.deviceId;
|
2019-03-27 17:30:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-07 08:53:01 +00:00
|
|
|
/**
|
|
|
|
* Finds a device with a label that matches the passed id and returns its label.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @param {string} id - The device id.
|
|
|
|
* @param {string} kind - The type of the device. One of "audioInput",
|
|
|
|
* "audioOutput", and "videoInput". Also supported is all lowercase versions
|
|
|
|
* of the preceding types.
|
|
|
|
* @returns {string|undefined}
|
|
|
|
*/
|
|
|
|
export function getDeviceLabelById(state: Object, id: string, kind: string) {
|
|
|
|
const webrtcKindToJitsiKindTranslator = {
|
|
|
|
audioinput: 'audioInput',
|
|
|
|
audiooutput: 'audioOutput',
|
|
|
|
videoinput: 'videoInput'
|
|
|
|
};
|
|
|
|
|
|
|
|
const kindToSearch = webrtcKindToJitsiKindTranslator[kind] || kind;
|
|
|
|
|
|
|
|
const device
|
|
|
|
= (state['features/base/devices'].availableDevices[kindToSearch] || [])
|
|
|
|
.find(d => d.deviceId === id);
|
|
|
|
|
|
|
|
if (device) {
|
|
|
|
return device.label;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-27 17:30:56 +00:00
|
|
|
/**
|
|
|
|
* Returns the devices set in the URL.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @returns {Object|undefined}
|
|
|
|
*/
|
|
|
|
export function getDevicesFromURL(state: Object) {
|
|
|
|
const urlParams
|
|
|
|
= parseURLParams(state['features/base/connection'].locationURL);
|
|
|
|
|
|
|
|
const audioOutput = urlParams['devices.audioOutput'];
|
|
|
|
const videoInput = urlParams['devices.videoInput'];
|
|
|
|
const audioInput = urlParams['devices.audioInput'];
|
|
|
|
|
|
|
|
if (!audioOutput && !videoInput && !audioInput) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
const devices = {};
|
|
|
|
|
|
|
|
audioOutput && (devices.audioOutput = audioOutput);
|
|
|
|
videoInput && (devices.videoInput = videoInput);
|
|
|
|
audioInput && (devices.audioInput = audioInput);
|
|
|
|
|
|
|
|
return devices;
|
2018-04-12 19:58:20 +00:00
|
|
|
}
|
2019-03-25 11:33:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts an array of media devices into an object organized by device kind.
|
|
|
|
*
|
|
|
|
* @param {Array<MediaDeviceInfo>} devices - Available media devices.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} An object with the media devices split by type. The keys
|
|
|
|
* are device type and the values are arrays with devices matching the device
|
|
|
|
* type.
|
|
|
|
*/
|
|
|
|
export function groupDevicesByKind(devices: Object[]): Object {
|
|
|
|
return {
|
|
|
|
audioInput: devices.filter(device => device.kind === 'audioinput'),
|
|
|
|
audioOutput: devices.filter(device => device.kind === 'audiooutput'),
|
|
|
|
videoInput: devices.filter(device => device.kind === 'videoinput')
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-03-27 17:30:56 +00:00
|
|
|
* Set device id of the audio output device which is currently in use.
|
|
|
|
* Empty string stands for default device.
|
2019-03-25 11:33:41 +00:00
|
|
|
*
|
2019-03-27 17:30:56 +00:00
|
|
|
* @param {string} newId - New audio output device id.
|
|
|
|
* @param {Function} dispatch - The Redux dispatch function.
|
2019-05-01 14:13:25 +00:00
|
|
|
* @param {boolean} userSelection - Whether this is a user selection update.
|
2019-05-07 08:53:01 +00:00
|
|
|
* @param {?string} newLabel - New audio output device label to store.
|
2019-03-27 17:30:56 +00:00
|
|
|
* @returns {Promise}
|
2019-03-25 11:33:41 +00:00
|
|
|
*/
|
2019-03-27 17:30:56 +00:00
|
|
|
export function setAudioOutputDeviceId(
|
|
|
|
newId: string = 'default',
|
2019-05-01 14:13:25 +00:00
|
|
|
dispatch: Function,
|
2019-05-07 08:53:01 +00:00
|
|
|
userSelection: boolean = false,
|
|
|
|
newLabel: ?string): Promise<*> {
|
2019-03-27 17:30:56 +00:00
|
|
|
return JitsiMeetJS.mediaDevices.setAudioOutputDevice(newId)
|
2019-05-01 14:13:25 +00:00
|
|
|
.then(() => {
|
|
|
|
const newSettings = {
|
|
|
|
audioOutputDeviceId: newId,
|
2019-05-07 08:53:01 +00:00
|
|
|
userSelectedAudioOutputDeviceId: undefined,
|
|
|
|
userSelectedAudioOutputDeviceLabel: undefined
|
2019-05-01 14:13:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (userSelection) {
|
|
|
|
newSettings.userSelectedAudioOutputDeviceId = newId;
|
2019-05-07 08:53:01 +00:00
|
|
|
newSettings.userSelectedAudioOutputDeviceLabel = newLabel;
|
2019-05-01 14:13:25 +00:00
|
|
|
} else {
|
|
|
|
// a flow workaround, I needed to add 'userSelectedAudioOutputDeviceId: undefined'
|
|
|
|
delete newSettings.userSelectedAudioOutputDeviceId;
|
2019-05-07 08:53:01 +00:00
|
|
|
delete newSettings.userSelectedAudioOutputDeviceLabel;
|
2019-05-01 14:13:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return dispatch(updateSettings(newSettings));
|
|
|
|
});
|
2019-03-25 11:33:41 +00:00
|
|
|
}
|