2017-07-18 21:41:39 +00:00
|
|
|
/* global APP */
|
|
|
|
|
2017-11-21 13:38:53 +00:00
|
|
|
import JitsiMeetJS, { JitsiTrackErrors, JitsiTrackEvents }
|
|
|
|
from '../lib-jitsi-meet';
|
2017-07-31 16:27:34 +00:00
|
|
|
import { MEDIA_TYPE } from '../media';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2017-07-18 21:41:39 +00:00
|
|
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create local tracks of specific types.
|
|
|
|
*
|
|
|
|
* @param {Object} options - The options with which the local tracks are to be
|
|
|
|
* created.
|
|
|
|
* @param {string|null} [options.cameraDeviceId] - Camera device id or
|
|
|
|
* {@code undefined} to use app's settings.
|
|
|
|
* @param {string[]} options.devices - Required track types such as 'audio'
|
|
|
|
* and/or 'video'.
|
|
|
|
* @param {string|null} [options.micDeviceId] - Microphone device id or
|
|
|
|
* {@code undefined} to use app's settings.
|
|
|
|
* @param {boolean} [firePermissionPromptIsShownEvent] - Whether lib-jitsi-meet
|
|
|
|
* should check for a {@code getUserMedia} permission prompt and fire a
|
|
|
|
* corresponding event.
|
|
|
|
* @param {Object} store - The redux store in the context of which the function
|
|
|
|
* is to execute and from which state such as {@code config} is to be retrieved.
|
|
|
|
* @returns {Promise<JitsiLocalTrack[]>}
|
|
|
|
*/
|
2017-08-14 13:25:37 +00:00
|
|
|
export function createLocalTracksF(
|
2017-07-18 21:41:39 +00:00
|
|
|
options,
|
|
|
|
firePermissionPromptIsShownEvent,
|
|
|
|
store) {
|
|
|
|
options || (options = {}); // eslint-disable-line no-param-reassign
|
|
|
|
|
|
|
|
let { cameraDeviceId, micDeviceId } = options;
|
|
|
|
|
|
|
|
if (typeof APP !== 'undefined') {
|
|
|
|
// TODO The app's settings should go in the redux store and then the
|
|
|
|
// reliance on the global variable APP will go away.
|
|
|
|
if (typeof cameraDeviceId === 'undefined' || cameraDeviceId === null) {
|
|
|
|
cameraDeviceId = APP.settings.getCameraDeviceId();
|
|
|
|
}
|
|
|
|
if (typeof micDeviceId === 'undefined' || micDeviceId === null) {
|
|
|
|
micDeviceId = APP.settings.getMicDeviceId();
|
|
|
|
}
|
|
|
|
|
|
|
|
store || (store = APP.store); // eslint-disable-line no-param-reassign
|
|
|
|
}
|
|
|
|
|
|
|
|
const {
|
2017-11-01 00:08:07 +00:00
|
|
|
constraints,
|
2018-02-20 21:23:41 +00:00
|
|
|
desktopSharingFrameRate,
|
2017-07-18 21:41:39 +00:00
|
|
|
firefox_fake_device, // eslint-disable-line camelcase
|
|
|
|
resolution
|
|
|
|
} = store.getState()['features/base/config'];
|
|
|
|
|
|
|
|
return (
|
|
|
|
JitsiMeetJS.createLocalTracks(
|
|
|
|
{
|
|
|
|
cameraDeviceId,
|
2017-11-01 00:08:07 +00:00
|
|
|
constraints,
|
2017-07-18 21:41:39 +00:00
|
|
|
desktopSharingExtensionExternalInstallation:
|
|
|
|
options.desktopSharingExtensionExternalInstallation,
|
2018-02-20 21:23:41 +00:00
|
|
|
desktopSharingFrameRate,
|
2017-07-18 21:41:39 +00:00
|
|
|
desktopSharingSources: options.desktopSharingSources,
|
|
|
|
|
|
|
|
// Copy array to avoid mutations inside library.
|
|
|
|
devices: options.devices.slice(0),
|
|
|
|
firefox_fake_device, // eslint-disable-line camelcase
|
|
|
|
micDeviceId,
|
|
|
|
resolution
|
|
|
|
},
|
|
|
|
firePermissionPromptIsShownEvent)
|
|
|
|
.then(tracks => {
|
|
|
|
// TODO JitsiTrackEvents.NO_DATA_FROM_SOURCE should probably be
|
|
|
|
// dispatched in the redux store here and then
|
|
|
|
// APP.UI.showTrackNotWorkingDialog should be in a middleware
|
|
|
|
// somewhere else.
|
|
|
|
if (typeof APP !== 'undefined') {
|
|
|
|
tracks.forEach(track =>
|
|
|
|
track.on(
|
|
|
|
JitsiTrackEvents.NO_DATA_FROM_SOURCE,
|
2017-11-03 19:05:03 +00:00
|
|
|
APP.UI.showTrackNotWorkingDialog.bind(
|
|
|
|
null, track.isAudioTrack())));
|
2017-07-18 21:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tracks;
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Failed to create local tracks', options.devices, err);
|
|
|
|
|
|
|
|
return Promise.reject(err);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns local audio track.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getLocalAudioTrack(tracks) {
|
|
|
|
return getLocalTrack(tracks, MEDIA_TYPE.AUDIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns local track by media type.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {MEDIA_TYPE} mediaType - Media type.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getLocalTrack(tracks, mediaType) {
|
2017-11-09 21:59:31 +00:00
|
|
|
return getLocalTracks(tracks).find(t => t.mediaType === mediaType);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-13 22:10:54 +00:00
|
|
|
* Returns an array containing the local tracks with a (valid)
|
|
|
|
* {@code JitsiTrack}.
|
2017-11-09 21:59:31 +00:00
|
|
|
*
|
2017-11-13 22:10:54 +00:00
|
|
|
* @param {Track[]} tracks - An array containing all local tracks.
|
2017-11-09 21:59:31 +00:00
|
|
|
* @returns {Track[]}
|
|
|
|
*/
|
|
|
|
export function getLocalTracks(tracks) {
|
|
|
|
|
2017-11-13 22:10:54 +00:00
|
|
|
// XXX A local track is considered ready only once it has its `jitsiTrack`
|
|
|
|
// property set by the `TRACK_ADDED` action. Until then there is a stub
|
|
|
|
// added just before the `getUserMedia` call with a cancellable
|
|
|
|
// `gumInProgress` property which then can be used to destroy the track that
|
|
|
|
// has not yet been added to the redux store. Once GUM is cancelled, it will
|
|
|
|
// never make it to the store nor there will be any
|
|
|
|
// `TRACK_ADDED`/`TRACK_REMOVED` actions dispatched for it.
|
2017-11-09 21:59:31 +00:00
|
|
|
return tracks.filter(t => t.local && t.jitsiTrack);
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns local video track.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getLocalVideoTrack(tracks) {
|
|
|
|
return getLocalTrack(tracks, MEDIA_TYPE.VIDEO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns track of specified media type for specified participant id.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {MEDIA_TYPE} mediaType - Media type.
|
|
|
|
* @param {string} participantId - Participant ID.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getTrackByMediaTypeAndParticipant(
|
|
|
|
tracks,
|
|
|
|
mediaType,
|
|
|
|
participantId) {
|
|
|
|
return tracks.find(
|
|
|
|
t => t.participantId === participantId && t.mediaType === mediaType
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the track if any which corresponds to a specific instance
|
|
|
|
* of JitsiLocalTrack or JitsiRemoteTrack.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {(JitsiLocalTrack|JitsiRemoteTrack)} jitsiTrack - JitsiTrack instance.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getTrackByJitsiTrack(tracks, jitsiTrack) {
|
|
|
|
return tracks.find(t => t.jitsiTrack === jitsiTrack);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns tracks of specified media type.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {MEDIA_TYPE} mediaType - Media type.
|
|
|
|
* @returns {Track[]}
|
|
|
|
*/
|
|
|
|
export function getTracksByMediaType(tracks, mediaType) {
|
|
|
|
return tracks.filter(t => t.mediaType === mediaType);
|
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the first local track in the given tracks set is muted.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {MEDIA_TYPE} mediaType - The media type of tracks to be checked.
|
|
|
|
* @returns {boolean} True if local track is muted or false if the track is
|
|
|
|
* unmuted or if there are no local tracks of the given media type in the given
|
|
|
|
* set of tracks.
|
|
|
|
*/
|
|
|
|
export function isLocalTrackMuted(tracks, mediaType) {
|
|
|
|
const track = getLocalTrack(tracks, mediaType);
|
|
|
|
|
|
|
|
return !track || track.muted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* Mutes or unmutes a specific {@code JitsiLocalTrack}. If the muted state of
|
|
|
|
* the specified {@code track} is already in accord with the specified
|
|
|
|
* {@code muted} value, then does nothing.
|
2017-08-18 11:30:30 +00:00
|
|
|
*
|
2017-10-01 06:35:19 +00:00
|
|
|
* @param {JitsiLocalTrack} track - The {@code JitsiLocalTrack} to mute or
|
2017-08-18 11:30:30 +00:00
|
|
|
* unmute.
|
2017-10-01 06:35:19 +00:00
|
|
|
* @param {boolean} muted - If the specified {@code track} is to be muted, then
|
|
|
|
* {@code true}; otherwise, {@code false}.
|
2017-08-18 11:30:30 +00:00
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
export function setTrackMuted(track, muted) {
|
|
|
|
muted = Boolean(muted); // eslint-disable-line no-param-reassign
|
|
|
|
|
|
|
|
if (track.isMuted() === muted) {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
const f = muted ? 'mute' : 'unmute';
|
|
|
|
|
|
|
|
return track[f]().catch(error => {
|
2017-11-21 13:38:53 +00:00
|
|
|
// Track might be already disposed so ignore such an error.
|
|
|
|
if (error.name !== JitsiTrackErrors.TRACK_IS_DISPOSED) {
|
|
|
|
// FIXME Emit mute failed, so that the app can show error dialog.
|
|
|
|
console.error(`set track ${f} failed`, error);
|
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
});
|
|
|
|
}
|