2017-10-03 19:24:00 +00:00
|
|
|
// @flow
|
|
|
|
|
2020-05-20 10:57:03 +00:00
|
|
|
import Logger from 'jitsi-meet-logger';
|
|
|
|
|
2017-12-11 18:48:32 +00:00
|
|
|
import {
|
2018-01-03 21:24:07 +00:00
|
|
|
createApiEvent,
|
|
|
|
sendAnalytics
|
2017-12-11 18:48:32 +00:00
|
|
|
} from '../../react/features/analytics';
|
2019-08-30 21:17:22 +00:00
|
|
|
import {
|
2020-05-22 19:24:56 +00:00
|
|
|
getCurrentConference,
|
2019-08-30 21:17:22 +00:00
|
|
|
sendTones,
|
|
|
|
setPassword,
|
|
|
|
setSubject
|
|
|
|
} from '../../react/features/base/conference';
|
2018-05-03 01:20:31 +00:00
|
|
|
import { parseJWTFromURLParams } from '../../react/features/base/jwt';
|
2020-11-03 09:44:41 +00:00
|
|
|
import JitsiMeetJS, { JitsiRecordingConstants } from '../../react/features/base/lib-jitsi-meet';
|
2021-01-11 15:21:53 +00:00
|
|
|
import { pinParticipant, getParticipantById } from '../../react/features/base/participants';
|
|
|
|
import { setPrivateMessageRecipient } from '../../react/features/chat/actions';
|
2020-05-20 10:57:03 +00:00
|
|
|
import {
|
|
|
|
processExternalDeviceRequest
|
|
|
|
} from '../../react/features/device-selection/functions';
|
2020-05-22 19:24:56 +00:00
|
|
|
import { isEnabled as isDropboxEnabled } from '../../react/features/dropbox';
|
2020-05-07 09:54:02 +00:00
|
|
|
import { toggleE2EE } from '../../react/features/e2ee/actions';
|
2018-05-03 01:20:31 +00:00
|
|
|
import { invite } from '../../react/features/invite';
|
2020-09-18 15:53:27 +00:00
|
|
|
import {
|
|
|
|
captureLargeVideoScreenshot,
|
|
|
|
resizeLargeVideo,
|
|
|
|
selectParticipantInLargeVideo
|
|
|
|
} from '../../react/features/large-video/actions';
|
2020-07-23 14:03:53 +00:00
|
|
|
import { toggleLobbyMode } from '../../react/features/lobby/actions.web';
|
2020-05-22 19:24:56 +00:00
|
|
|
import { RECORDING_TYPES } from '../../react/features/recording/constants';
|
|
|
|
import { getActiveSession } from '../../react/features/recording/functions';
|
2020-05-20 10:57:03 +00:00
|
|
|
import { muteAllParticipants } from '../../react/features/remote-video-menu/actions';
|
2019-05-18 20:40:58 +00:00
|
|
|
import { toggleTileView } from '../../react/features/video-layout';
|
2020-05-07 18:26:10 +00:00
|
|
|
import { setVideoQuality } from '../../react/features/video-quality';
|
2017-04-28 20:24:20 +00:00
|
|
|
import { getJitsiMeetTransport } from '../transport';
|
2020-05-20 10:57:03 +00:00
|
|
|
|
2020-03-20 11:51:26 +00:00
|
|
|
import { API_ID, ENDPOINT_TEXT_MESSAGE_NAME } from './constants';
|
2016-06-13 21:11:44 +00:00
|
|
|
|
2020-05-20 10:57:03 +00:00
|
|
|
const logger = Logger.getLogger(__filename);
|
2017-10-09 21:40:38 +00:00
|
|
|
|
2017-04-17 15:52:31 +00:00
|
|
|
declare var APP: Object;
|
2017-04-06 22:09:55 +00:00
|
|
|
|
2015-01-09 13:39:32 +00:00
|
|
|
/**
|
|
|
|
* List of the available commands.
|
|
|
|
*/
|
2016-06-13 21:11:44 +00:00
|
|
|
let commands = {};
|
|
|
|
|
|
|
|
/**
|
2017-04-28 20:24:20 +00:00
|
|
|
* The transport instance used for communication with external apps.
|
|
|
|
*
|
|
|
|
* @type {Transport}
|
2016-06-13 21:11:44 +00:00
|
|
|
*/
|
2017-04-28 20:24:20 +00:00
|
|
|
const transport = getJitsiMeetTransport();
|
2017-04-06 22:09:55 +00:00
|
|
|
|
2017-08-04 08:15:11 +00:00
|
|
|
/**
|
|
|
|
* The current audio availability.
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
let audioAvailable = true;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current video availability.
|
|
|
|
*
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
let videoAvailable = true;
|
|
|
|
|
2017-04-11 18:02:59 +00:00
|
|
|
/**
|
|
|
|
* Initializes supported commands.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2015-07-02 21:33:06 +00:00
|
|
|
function initCommands() {
|
2015-07-28 18:22:11 +00:00
|
|
|
commands = {
|
2018-01-03 21:24:07 +00:00
|
|
|
'display-name': displayName => {
|
|
|
|
sendAnalytics(createApiEvent('display.name.changed'));
|
|
|
|
APP.conference.changeLocalDisplayName(displayName);
|
|
|
|
},
|
2020-05-19 06:50:21 +00:00
|
|
|
'mute-everyone': () => {
|
|
|
|
sendAnalytics(createApiEvent('muted-everyone'));
|
|
|
|
const participants = APP.store.getState()['features/base/participants'];
|
|
|
|
const localIds = participants
|
|
|
|
.filter(participant => participant.local)
|
|
|
|
.filter(participant => participant.role === 'moderator')
|
|
|
|
.map(participant => participant.id);
|
|
|
|
|
|
|
|
APP.store.dispatch(muteAllParticipants(localIds));
|
|
|
|
},
|
2020-07-23 14:03:53 +00:00
|
|
|
'toggle-lobby': isLobbyEnabled => {
|
|
|
|
APP.store.dispatch(toggleLobbyMode(isLobbyEnabled));
|
|
|
|
},
|
2019-06-08 17:35:11 +00:00
|
|
|
'password': password => {
|
|
|
|
const { conference, passwordRequired }
|
|
|
|
= APP.store.getState()['features/base/conference'];
|
|
|
|
|
|
|
|
if (passwordRequired) {
|
|
|
|
sendAnalytics(createApiEvent('submit.password'));
|
|
|
|
|
|
|
|
APP.store.dispatch(setPassword(
|
|
|
|
passwordRequired,
|
|
|
|
passwordRequired.join,
|
|
|
|
password
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
sendAnalytics(createApiEvent('password.changed'));
|
|
|
|
|
|
|
|
APP.store.dispatch(setPassword(
|
|
|
|
conference,
|
|
|
|
conference.lock,
|
|
|
|
password
|
|
|
|
));
|
|
|
|
}
|
|
|
|
},
|
2020-09-22 16:25:13 +00:00
|
|
|
'pin-participant': id => {
|
|
|
|
logger.debug('Pin participant command received');
|
|
|
|
sendAnalytics(createApiEvent('participant.pinned'));
|
|
|
|
APP.store.dispatch(pinParticipant(id));
|
|
|
|
},
|
2019-01-26 20:53:11 +00:00
|
|
|
'proxy-connection-event': event => {
|
|
|
|
APP.conference.onProxyConnectionEvent(event);
|
|
|
|
},
|
2020-09-16 23:16:32 +00:00
|
|
|
'resize-large-video': (width, height) => {
|
|
|
|
logger.debug('Resize large video command received');
|
|
|
|
sendAnalytics(createApiEvent('largevideo.resized'));
|
|
|
|
APP.store.dispatch(resizeLargeVideo(width, height));
|
|
|
|
},
|
2019-08-30 21:17:22 +00:00
|
|
|
'send-tones': (options = {}) => {
|
|
|
|
const { duration, tones, pause } = options;
|
|
|
|
|
|
|
|
APP.store.dispatch(sendTones(tones, duration, pause));
|
|
|
|
},
|
2020-09-14 20:01:46 +00:00
|
|
|
'set-large-video-participant': participantId => {
|
|
|
|
logger.debug('Set large video participant command received');
|
2020-09-14 21:26:32 +00:00
|
|
|
sendAnalytics(createApiEvent('largevideo.participant.set'));
|
2020-09-14 20:01:46 +00:00
|
|
|
APP.store.dispatch(selectParticipantInLargeVideo(participantId));
|
|
|
|
},
|
2019-02-17 14:40:24 +00:00
|
|
|
'subject': subject => {
|
|
|
|
sendAnalytics(createApiEvent('subject.changed'));
|
2019-03-12 17:45:53 +00:00
|
|
|
APP.store.dispatch(setSubject(subject));
|
2019-02-17 14:40:24 +00:00
|
|
|
},
|
2018-01-19 22:19:55 +00:00
|
|
|
'submit-feedback': feedback => {
|
|
|
|
sendAnalytics(createApiEvent('submit.feedback'));
|
|
|
|
APP.conference.submitFeedback(feedback.score, feedback.message);
|
|
|
|
},
|
2017-07-25 10:05:08 +00:00
|
|
|
'toggle-audio': () => {
|
2018-01-03 21:24:07 +00:00
|
|
|
sendAnalytics(createApiEvent('toggle-audio'));
|
2017-10-09 21:40:38 +00:00
|
|
|
logger.log('Audio toggle: API command received');
|
2017-07-25 10:05:08 +00:00
|
|
|
APP.conference.toggleAudioMuted(false /* no UI */);
|
|
|
|
},
|
2017-07-20 12:29:15 +00:00
|
|
|
'toggle-video': () => {
|
2018-01-03 21:24:07 +00:00
|
|
|
sendAnalytics(createApiEvent('toggle-video'));
|
2017-10-09 21:40:38 +00:00
|
|
|
logger.log('Video toggle: API command received');
|
2017-07-20 12:29:15 +00:00
|
|
|
APP.conference.toggleVideoMuted(false /* no UI */);
|
|
|
|
},
|
2018-01-03 21:24:07 +00:00
|
|
|
'toggle-film-strip': () => {
|
|
|
|
sendAnalytics(createApiEvent('film.strip.toggled'));
|
|
|
|
APP.UI.toggleFilmstrip();
|
|
|
|
},
|
|
|
|
'toggle-chat': () => {
|
|
|
|
sendAnalytics(createApiEvent('chat.toggled'));
|
|
|
|
APP.UI.toggleChat();
|
|
|
|
},
|
2019-08-23 20:16:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to invoke when the "toggle-share-screen" command is received.
|
|
|
|
*
|
|
|
|
* @param {Object} options - Additional details of how to perform
|
|
|
|
* the action. Note this parameter is undocumented and experimental.
|
|
|
|
* @param {boolean} options.enable - Whether trying to enable screen
|
|
|
|
* sharing or to turn it off.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
'toggle-share-screen': (options = {}) => {
|
2018-01-03 21:24:07 +00:00
|
|
|
sendAnalytics(createApiEvent('screen.sharing.toggled'));
|
2019-08-23 20:16:52 +00:00
|
|
|
toggleScreenSharing(options.enable);
|
2018-01-03 21:24:07 +00:00
|
|
|
},
|
2019-05-18 20:40:58 +00:00
|
|
|
'toggle-tile-view': () => {
|
|
|
|
sendAnalytics(createApiEvent('tile-view.toggled'));
|
|
|
|
|
|
|
|
APP.store.dispatch(toggleTileView());
|
|
|
|
},
|
2019-05-30 13:28:32 +00:00
|
|
|
'video-hangup': (showFeedbackDialog = true) => {
|
2018-01-03 21:24:07 +00:00
|
|
|
sendAnalytics(createApiEvent('video.hangup'));
|
2019-05-30 13:28:32 +00:00
|
|
|
APP.conference.hangup(showFeedbackDialog);
|
2018-01-03 21:24:07 +00:00
|
|
|
},
|
|
|
|
'email': email => {
|
|
|
|
sendAnalytics(createApiEvent('email.changed'));
|
|
|
|
APP.conference.changeLocalEmail(email);
|
|
|
|
},
|
|
|
|
'avatar-url': avatarUrl => {
|
|
|
|
sendAnalytics(createApiEvent('avatar.url.changed'));
|
|
|
|
APP.conference.changeLocalAvatarUrl(avatarUrl);
|
2020-03-20 11:51:26 +00:00
|
|
|
},
|
|
|
|
'send-endpoint-text-message': (to, text) => {
|
|
|
|
logger.debug('Send endpoint message command received');
|
|
|
|
try {
|
|
|
|
APP.conference.sendEndpointMessage(to, {
|
|
|
|
name: ENDPOINT_TEXT_MESSAGE_NAME,
|
|
|
|
text
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Failed sending endpoint text message', err);
|
|
|
|
}
|
2020-04-16 13:26:45 +00:00
|
|
|
},
|
2020-05-07 09:54:02 +00:00
|
|
|
'toggle-e2ee': enabled => {
|
|
|
|
logger.debug('Toggle E2EE key command received');
|
|
|
|
APP.store.dispatch(toggleE2EE(enabled));
|
2020-05-07 18:26:10 +00:00
|
|
|
},
|
|
|
|
'set-video-quality': frameHeight => {
|
|
|
|
logger.debug('Set video quality command received');
|
|
|
|
sendAnalytics(createApiEvent('set.video.quality'));
|
|
|
|
APP.store.dispatch(setVideoQuality(frameHeight));
|
2020-05-22 19:24:56 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2020-10-20 18:44:44 +00:00
|
|
|
* Starts a file recording or streaming session depending on the passed on params.
|
|
|
|
* For RTMP streams, `rtmpStreamKey` must be passed on. `rtmpBroadcastID` is optional.
|
2020-05-22 19:24:56 +00:00
|
|
|
* For youtube streams, `youtubeStreamKey` must be passed on. `youtubeBroadcastID` is optional.
|
|
|
|
* For dropbox recording, recording `mode` should be `file` and a dropbox oauth2 token must be provided.
|
|
|
|
* For file recording, recording `mode` should be `file` and optionally `shouldShare` could be passed on.
|
|
|
|
* No other params should be passed.
|
|
|
|
*
|
|
|
|
* @param { string } arg.mode - Recording mode, either `file` or `stream`.
|
|
|
|
* @param { string } arg.dropboxToken - Dropbox oauth2 token.
|
2020-10-20 18:44:44 +00:00
|
|
|
* @param { string } arg.rtmpStreamKey - The RTMP stream key.
|
|
|
|
* @param { string } arg.rtmpBroadcastID - The RTMP braodcast ID.
|
2020-05-22 19:24:56 +00:00
|
|
|
* @param { boolean } arg.shouldShare - Whether the recording should be shared with the participants or not.
|
|
|
|
* Only applies to certain jitsi meet deploys.
|
|
|
|
* @param { string } arg.youtubeStreamKey - The youtube stream key.
|
|
|
|
* @param { string } arg.youtubeBroadcastID - The youtube broacast ID.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2020-10-20 18:44:44 +00:00
|
|
|
'start-recording': ({
|
|
|
|
mode,
|
|
|
|
dropboxToken,
|
|
|
|
shouldShare,
|
|
|
|
rtmpStreamKey,
|
|
|
|
rtmpBroadcastID,
|
|
|
|
youtubeStreamKey,
|
|
|
|
youtubeBroadcastID
|
|
|
|
}) => {
|
2020-05-22 19:24:56 +00:00
|
|
|
const state = APP.store.getState();
|
|
|
|
const conference = getCurrentConference(state);
|
|
|
|
|
|
|
|
if (!conference) {
|
|
|
|
logger.error('Conference is not defined');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dropboxToken && !isDropboxEnabled(state)) {
|
|
|
|
logger.error('Failed starting recording: dropbox is not enabled on this deployment');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-20 18:44:44 +00:00
|
|
|
if (mode === JitsiRecordingConstants.mode.STREAM && !(youtubeStreamKey || rtmpStreamKey)) {
|
|
|
|
logger.error('Failed starting recording: missing youtube or RTMP stream key');
|
2020-05-22 19:24:56 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let recordingConfig;
|
|
|
|
|
|
|
|
if (mode === JitsiRecordingConstants.mode.FILE) {
|
|
|
|
if (dropboxToken) {
|
|
|
|
recordingConfig = {
|
|
|
|
mode: JitsiRecordingConstants.mode.FILE,
|
|
|
|
appData: JSON.stringify({
|
|
|
|
'file_recording_metadata': {
|
|
|
|
'upload_credentials': {
|
|
|
|
'service_name': RECORDING_TYPES.DROPBOX,
|
|
|
|
'token': dropboxToken
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
recordingConfig = {
|
|
|
|
mode: JitsiRecordingConstants.mode.FILE,
|
|
|
|
appData: JSON.stringify({
|
|
|
|
'file_recording_metadata': {
|
|
|
|
'share': shouldShare
|
|
|
|
}
|
|
|
|
})
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} else if (mode === JitsiRecordingConstants.mode.STREAM) {
|
|
|
|
recordingConfig = {
|
2020-10-20 18:44:44 +00:00
|
|
|
broadcastId: youtubeBroadcastID || rtmpBroadcastID,
|
2020-05-22 19:24:56 +00:00
|
|
|
mode: JitsiRecordingConstants.mode.STREAM,
|
2020-10-20 18:44:44 +00:00
|
|
|
streamId: youtubeStreamKey || rtmpStreamKey
|
2020-05-22 19:24:56 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
logger.error('Invalid recording mode provided');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
conference.startRecording(recordingConfig);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops a recording or streaming in progress.
|
|
|
|
*
|
|
|
|
* @param {string} mode - `file` or `stream`.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
'stop-recording': mode => {
|
|
|
|
const state = APP.store.getState();
|
|
|
|
const conference = getCurrentConference(state);
|
|
|
|
|
|
|
|
if (!conference) {
|
|
|
|
logger.error('Conference is not defined');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (![ JitsiRecordingConstants.mode.FILE, JitsiRecordingConstants.mode.STREAM ].includes(mode)) {
|
|
|
|
logger.error('Invalid recording mode provided!');
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const activeSession = getActiveSession(state, mode);
|
|
|
|
|
|
|
|
if (activeSession && activeSession.id) {
|
|
|
|
conference.stopRecording(activeSession.id);
|
|
|
|
} else {
|
|
|
|
logger.error('No recording or streaming session found');
|
|
|
|
}
|
2021-01-11 15:21:53 +00:00
|
|
|
},
|
|
|
|
'initiate-private-chat': participantId => {
|
|
|
|
const state = APP.store.getState();
|
|
|
|
const participant = getParticipantById(state, participantId);
|
|
|
|
|
|
|
|
if (participant) {
|
|
|
|
const { isOpen: isChatOpen } = state['features/chat'];
|
|
|
|
|
|
|
|
if (!isChatOpen) {
|
|
|
|
APP.UI.toggleChat();
|
|
|
|
}
|
|
|
|
APP.store.dispatch(setPrivateMessageRecipient(participant));
|
|
|
|
} else {
|
|
|
|
logger.error('No participant found for the given participantId');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'cancel-private-chat': () => {
|
|
|
|
APP.store.dispatch(setPrivateMessageRecipient());
|
2018-01-03 21:24:07 +00:00
|
|
|
}
|
2015-07-02 21:33:06 +00:00
|
|
|
};
|
2017-04-27 20:21:01 +00:00
|
|
|
transport.on('event', ({ data, name }) => {
|
2017-04-17 15:52:31 +00:00
|
|
|
if (name && commands[name]) {
|
|
|
|
commands[name](...data);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
2018-04-30 12:08:11 +00:00
|
|
|
transport.on('request', (request, callback) => {
|
2019-03-21 12:33:40 +00:00
|
|
|
const { dispatch, getState } = APP.store;
|
|
|
|
|
2019-03-28 16:29:30 +00:00
|
|
|
if (processExternalDeviceRequest(dispatch, getState, request, callback)) {
|
2019-03-21 12:33:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-30 12:08:11 +00:00
|
|
|
const { name } = request;
|
|
|
|
|
2017-08-04 08:15:11 +00:00
|
|
|
switch (name) {
|
2020-09-18 15:53:27 +00:00
|
|
|
case 'capture-largevideo-screenshot' :
|
|
|
|
APP.store.dispatch(captureLargeVideoScreenshot())
|
|
|
|
.then(dataURL => {
|
|
|
|
let error;
|
|
|
|
|
|
|
|
if (!dataURL) {
|
|
|
|
error = new Error('No large video found!');
|
|
|
|
}
|
|
|
|
|
|
|
|
callback({
|
|
|
|
error,
|
|
|
|
dataURL
|
|
|
|
});
|
|
|
|
});
|
|
|
|
break;
|
2018-10-02 13:03:23 +00:00
|
|
|
case 'invite': {
|
2018-08-03 17:06:06 +00:00
|
|
|
const { invitees } = request;
|
|
|
|
|
|
|
|
if (!Array.isArray(invitees) || invitees.length === 0) {
|
|
|
|
callback({
|
|
|
|
error: new Error('Unexpected format of invitees')
|
|
|
|
});
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-06-26 22:56:22 +00:00
|
|
|
// The store should be already available because API.init is called
|
|
|
|
// on appWillMount action.
|
2018-04-30 12:08:11 +00:00
|
|
|
APP.store.dispatch(
|
2018-08-03 17:06:06 +00:00
|
|
|
invite(invitees, true))
|
2018-05-03 01:20:31 +00:00
|
|
|
.then(failedInvitees => {
|
|
|
|
let error;
|
|
|
|
let result;
|
|
|
|
|
|
|
|
if (failedInvitees.length) {
|
|
|
|
error = new Error('One or more invites failed!');
|
|
|
|
} else {
|
|
|
|
result = true;
|
|
|
|
}
|
2018-04-30 12:08:11 +00:00
|
|
|
|
|
|
|
callback({
|
2018-05-03 01:20:31 +00:00
|
|
|
error,
|
|
|
|
result
|
2018-04-30 12:08:11 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
break;
|
2018-10-02 13:03:23 +00:00
|
|
|
}
|
2017-08-04 08:15:11 +00:00
|
|
|
case 'is-audio-muted':
|
2017-08-28 21:56:27 +00:00
|
|
|
callback(APP.conference.isLocalAudioMuted());
|
2017-08-04 08:15:11 +00:00
|
|
|
break;
|
|
|
|
case 'is-video-muted':
|
2017-08-28 21:56:27 +00:00
|
|
|
callback(APP.conference.isLocalVideoMuted());
|
2017-08-04 08:15:11 +00:00
|
|
|
break;
|
|
|
|
case 'is-audio-available':
|
|
|
|
callback(audioAvailable);
|
|
|
|
break;
|
|
|
|
case 'is-video-available':
|
|
|
|
callback(videoAvailable);
|
|
|
|
break;
|
2020-05-20 00:21:03 +00:00
|
|
|
case 'is-sharing-screen':
|
|
|
|
callback(Boolean(APP.conference.isSharingScreen));
|
|
|
|
break;
|
2021-01-12 09:13:20 +00:00
|
|
|
case 'get-content-sharing-participants': {
|
|
|
|
const tracks = getState()['features/base/tracks'];
|
|
|
|
const sharingParticipantIds = tracks.filter(tr => tr.videoType === 'desktop').map(t => t.participantId);
|
|
|
|
|
|
|
|
callback({
|
|
|
|
sharingParticipantIds
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
2017-08-04 08:15:11 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
2015-07-02 21:33:06 +00:00
|
|
|
}
|
2015-01-09 13:39:32 +00:00
|
|
|
|
2016-01-14 15:05:54 +00:00
|
|
|
/**
|
|
|
|
* Check whether the API should be enabled or not.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
2016-01-14 15:05:54 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2017-04-11 18:02:59 +00:00
|
|
|
function shouldBeEnabled() {
|
2017-05-26 22:11:33 +00:00
|
|
|
return (
|
|
|
|
typeof API_ID === 'number'
|
|
|
|
|
|
|
|
// XXX Enable the API when a JSON Web Token (JWT) is specified in
|
|
|
|
// the location/URL because then it is very likely that the Jitsi
|
|
|
|
// Meet (Web) app is being used by an external/wrapping (Web) app
|
|
|
|
// and, consequently, the latter will need to communicate with the
|
|
|
|
// former. (The described logic is merely a heuristic though.)
|
|
|
|
|| parseJWTFromURLParams());
|
2015-01-23 15:36:17 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 15:05:54 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Executes on toggle-share-screen command.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
2019-08-23 20:16:52 +00:00
|
|
|
* @param {boolean} [enable] - Whether this toggle is to explicitly enable or
|
|
|
|
* disable screensharing. If not defined, the application will automatically
|
|
|
|
* attempt to toggle between enabled and disabled. This boolean is useful for
|
|
|
|
* explicitly setting desired screensharing state.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2016-01-14 15:05:54 +00:00
|
|
|
*/
|
2019-08-23 20:16:52 +00:00
|
|
|
function toggleScreenSharing(enable) {
|
2020-11-03 09:44:41 +00:00
|
|
|
if (JitsiMeetJS.isDesktopSharingEnabled()) {
|
|
|
|
APP.conference.toggleScreenSharing(enable).catch(() => {
|
|
|
|
logger.warn('Failed to toggle screen-sharing');
|
|
|
|
});
|
2016-01-14 15:05:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-11 18:02:59 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Implements API class that communicates with external API class and provides
|
|
|
|
* interface to access Jitsi Meet features by external applications that embed
|
|
|
|
* Jitsi Meet.
|
2017-04-11 18:02:59 +00:00
|
|
|
*/
|
2016-12-20 22:15:13 +00:00
|
|
|
class API {
|
2017-10-02 23:08:07 +00:00
|
|
|
_enabled: boolean;
|
|
|
|
|
2015-01-09 13:39:32 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Initializes the API. Setups message event listeners that will receive
|
|
|
|
* information from external applications that embed Jitsi Meet. It also
|
|
|
|
* sends a message to the external application that API is initialized.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @param {Object} options - Optional parameters.
|
|
|
|
* @returns {void}
|
2015-01-09 13:39:32 +00:00
|
|
|
*/
|
2017-05-26 22:11:33 +00:00
|
|
|
init() {
|
|
|
|
if (!shouldBeEnabled()) {
|
2016-01-14 15:05:54 +00:00
|
|
|
return;
|
2017-04-11 18:02:59 +00:00
|
|
|
}
|
2016-06-13 21:11:44 +00:00
|
|
|
|
2017-04-17 15:52:31 +00:00
|
|
|
/**
|
|
|
|
* Current status (enabled/disabled) of API.
|
2017-04-27 20:21:01 +00:00
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @type {boolean}
|
2017-04-17 15:52:31 +00:00
|
|
|
*/
|
2017-04-27 20:21:01 +00:00
|
|
|
this._enabled = true;
|
2017-04-17 15:52:31 +00:00
|
|
|
|
|
|
|
initCommands();
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
|
|
|
|
2017-12-05 03:27:17 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the large video
|
|
|
|
* visibility changed.
|
|
|
|
*
|
|
|
|
* @param {boolean} isHidden - True if the large video is hidden and false
|
|
|
|
* otherwise.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyLargeVideoVisibilityChanged(isHidden: boolean) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'large-video-visibility-changed',
|
|
|
|
isVisible: !isHidden
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-01-26 20:53:11 +00:00
|
|
|
/**
|
|
|
|
* Notifies the external application (spot) that the local jitsi-participant
|
|
|
|
* has a status update.
|
|
|
|
*
|
|
|
|
* @param {Object} event - The message to pass onto spot.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
sendProxyConnectionEvent(event: Object) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'proxy-connection-event',
|
|
|
|
...event
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-20 22:15:13 +00:00
|
|
|
/**
|
2017-05-01 20:59:18 +00:00
|
|
|
* Sends event to the external application.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
2017-05-01 20:59:18 +00:00
|
|
|
* @param {Object} event - The event to be sent.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2016-12-20 22:15:13 +00:00
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
_sendEvent(event: Object = {}) {
|
2017-04-27 20:21:01 +00:00
|
|
|
if (this._enabled) {
|
2017-05-01 20:59:18 +00:00
|
|
|
transport.sendEvent(event);
|
2017-04-11 18:02:59 +00:00
|
|
|
}
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-01-14 15:05:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that message was sent.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
2017-04-17 15:52:31 +00:00
|
|
|
* @param {string} message - Message body.
|
2020-04-01 08:21:18 +00:00
|
|
|
* @param {boolean} privateMessage - True if the message was a private message.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2016-01-14 15:05:54 +00:00
|
|
|
*/
|
2020-04-01 08:21:18 +00:00
|
|
|
notifySendingChatMessage(message: string, privateMessage: boolean) {
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'outgoing-message',
|
2020-04-01 08:21:18 +00:00
|
|
|
message,
|
|
|
|
privateMessage
|
2017-05-01 20:59:18 +00:00
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-06-13 21:11:44 +00:00
|
|
|
|
2020-09-03 22:40:54 +00:00
|
|
|
/**
|
|
|
|
* Notify external application that the video quality setting has changed.
|
|
|
|
*
|
|
|
|
* @param {number} videoQuality - The video quality. The number represents the maximum height of the video streams.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyVideoQualityChanged(videoQuality: number) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'video-quality-changed',
|
|
|
|
videoQuality
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-01-09 13:39:32 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Notify external application (if API is enabled) that message was
|
|
|
|
* received.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @param {Object} options - Object with the message properties.
|
|
|
|
* @returns {void}
|
2015-01-09 13:39:32 +00:00
|
|
|
*/
|
2017-10-03 19:24:00 +00:00
|
|
|
notifyReceivedChatMessage(
|
2021-01-13 11:02:58 +00:00
|
|
|
{ body, id, nick, privateMessage, ts }: {
|
|
|
|
body: *, id: string, nick: string, privateMessage: boolean, ts: *
|
2017-10-03 19:24:00 +00:00
|
|
|
} = {}) {
|
2016-01-14 15:05:54 +00:00
|
|
|
if (APP.conference.isLocalId(id)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'incoming-message',
|
2017-04-17 15:52:31 +00:00
|
|
|
from: id,
|
|
|
|
message: body,
|
2017-04-27 20:21:01 +00:00
|
|
|
nick,
|
2021-01-13 11:02:58 +00:00
|
|
|
privateMessage,
|
2017-04-17 15:52:31 +00:00
|
|
|
stamp: ts
|
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2015-01-09 13:39:32 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Notify external application (if API is enabled) that user joined the
|
|
|
|
* conference.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
2017-12-05 03:27:17 +00:00
|
|
|
* @param {Object} props - The display name of the user.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2015-01-09 13:39:32 +00:00
|
|
|
*/
|
2017-12-05 03:27:17 +00:00
|
|
|
notifyUserJoined(id: string, props: Object) {
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'participant-joined',
|
2017-12-05 03:27:17 +00:00
|
|
|
id,
|
|
|
|
...props
|
2017-05-01 20:59:18 +00:00
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-01-14 15:05:54 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Notify external application (if API is enabled) that user left the
|
|
|
|
* conference.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
|
|
|
* @returns {void}
|
2016-01-14 15:05:54 +00:00
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
notifyUserLeft(id: string) {
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'participant-left',
|
|
|
|
id
|
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-01-14 15:05:54 +00:00
|
|
|
|
2020-05-05 14:03:54 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the user role
|
|
|
|
* has changed.
|
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
|
|
|
* @param {string} role - The new user role.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyUserRoleChanged(id: string, role: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'participant-role-changed',
|
|
|
|
id,
|
|
|
|
role
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-05 03:27:17 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that user changed their
|
|
|
|
* avatar.
|
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
|
|
|
* @param {string} avatarURL - The new avatar URL of the participant.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyAvatarChanged(id: string, avatarURL: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'avatar-changed',
|
|
|
|
avatarURL,
|
|
|
|
id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-20 11:51:26 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that user received
|
|
|
|
* a text message through datachannels.
|
|
|
|
*
|
|
|
|
* @param {Object} data - The event data.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyEndpointTextMessageReceived(data: Object) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'endpoint-text-message-received',
|
|
|
|
data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-12 09:13:20 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the list of sharing participants changed.
|
|
|
|
*
|
|
|
|
* @param {Object} data - The event data.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifySharingParticipantsChanged(data: Object) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'content-sharing-participants-changed',
|
|
|
|
data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-28 12:21:38 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the device list has
|
|
|
|
* changed.
|
|
|
|
*
|
|
|
|
* @param {Object} devices - The new device list.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyDeviceListChanged(devices: Object) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'device-list-changed',
|
2020-05-22 19:24:56 +00:00
|
|
|
devices
|
|
|
|
});
|
2019-03-28 12:21:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 15:05:54 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Notify external application (if API is enabled) that user changed their
|
|
|
|
* nickname.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
2017-04-17 15:52:31 +00:00
|
|
|
* @param {string} displayname - User nickname.
|
2017-12-05 03:27:17 +00:00
|
|
|
* @param {string} formattedDisplayName - The display name shown in Jitsi
|
|
|
|
* meet's UI for the user.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2016-01-14 15:05:54 +00:00
|
|
|
*/
|
2017-12-05 03:27:17 +00:00
|
|
|
notifyDisplayNameChanged(
|
|
|
|
id: string,
|
|
|
|
{ displayName, formattedDisplayName }: Object) {
|
2017-05-02 22:39:36 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'display-name-change',
|
2017-12-05 03:27:17 +00:00
|
|
|
displayname: displayName,
|
|
|
|
formattedDisplayName,
|
2017-04-27 20:21:01 +00:00
|
|
|
id
|
2017-04-17 15:52:31 +00:00
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-06-17 20:35:40 +00:00
|
|
|
|
2018-06-18 09:19:07 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that user changed their
|
|
|
|
* email.
|
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
|
|
|
* @param {string} email - The new email of the participant.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyEmailChanged(
|
|
|
|
id: string,
|
|
|
|
{ email }: Object) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'email-change',
|
|
|
|
email,
|
|
|
|
id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-07-28 07:39:54 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the an error has been logged.
|
|
|
|
*
|
|
|
|
* @param {string} logLevel - The message log level.
|
|
|
|
* @param {Array} args - Array of strings composing the log message.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyLog(logLevel: string, args: Array<string>) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'log',
|
|
|
|
logLevel,
|
|
|
|
args
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-17 20:35:40 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Notify external application (if API is enabled) that the conference has
|
|
|
|
* been joined.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
2017-04-17 15:52:31 +00:00
|
|
|
* @param {string} roomName - The room name.
|
2017-12-05 03:27:17 +00:00
|
|
|
* @param {string} id - The id of the local user.
|
|
|
|
* @param {Object} props - The display name and avatar URL of the local
|
|
|
|
* user.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2016-06-17 20:35:40 +00:00
|
|
|
*/
|
2017-12-05 03:27:17 +00:00
|
|
|
notifyConferenceJoined(roomName: string, id: string, props: Object) {
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'video-conference-joined',
|
2017-12-05 03:27:17 +00:00
|
|
|
roomName,
|
|
|
|
id,
|
|
|
|
...props
|
2017-05-01 20:59:18 +00:00
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-06-17 20:35:40 +00:00
|
|
|
|
|
|
|
/**
|
2020-09-14 20:01:46 +00:00
|
|
|
* Notify external application (if API is enabled) that local user has left the conference.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
2017-04-17 15:52:31 +00:00
|
|
|
* @param {string} roomName - User id.
|
2017-04-11 18:02:59 +00:00
|
|
|
* @returns {void}
|
2016-06-17 20:35:40 +00:00
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
notifyConferenceLeft(roomName: string) {
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'video-conference-left',
|
|
|
|
roomName
|
|
|
|
});
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2015-01-09 13:39:32 +00:00
|
|
|
|
2016-10-05 21:33:09 +00:00
|
|
|
/**
|
2017-04-11 19:30:00 +00:00
|
|
|
* Notify external application (if API is enabled) that we are ready to be
|
|
|
|
* closed.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @returns {void}
|
2016-10-05 21:33:09 +00:00
|
|
|
*/
|
2017-04-11 18:02:59 +00:00
|
|
|
notifyReadyToClose() {
|
2017-05-01 20:59:18 +00:00
|
|
|
this._sendEvent({ name: 'video-ready-to-close' });
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
2016-10-05 21:33:09 +00:00
|
|
|
|
2019-06-26 14:20:51 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that a suspend event in host computer.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifySuspendDetected() {
|
|
|
|
this._sendEvent({ name: 'suspend-detected' });
|
|
|
|
}
|
|
|
|
|
2017-08-04 08:15:11 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) for audio muted status
|
|
|
|
* changed.
|
|
|
|
*
|
|
|
|
* @param {boolean} muted - The new muted status.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
notifyAudioMutedStatusChanged(muted: boolean) {
|
2017-08-04 08:15:11 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'audio-mute-status-changed',
|
|
|
|
muted
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) for video muted status
|
|
|
|
* changed.
|
|
|
|
*
|
|
|
|
* @param {boolean} muted - The new muted status.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
notifyVideoMutedStatusChanged(muted: boolean) {
|
2017-08-04 08:15:11 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'video-mute-status-changed',
|
|
|
|
muted
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) for audio availability
|
|
|
|
* changed.
|
|
|
|
*
|
|
|
|
* @param {boolean} available - True if available and false otherwise.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
notifyAudioAvailabilityChanged(available: boolean) {
|
2017-08-04 08:15:11 +00:00
|
|
|
audioAvailable = available;
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'audio-availability-changed',
|
|
|
|
available
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) for video available
|
|
|
|
* status changed.
|
|
|
|
*
|
|
|
|
* @param {boolean} available - True if available and false otherwise.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2017-10-02 23:08:07 +00:00
|
|
|
notifyVideoAvailabilityChanged(available: boolean) {
|
2017-08-04 08:15:11 +00:00
|
|
|
videoAvailable = available;
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'video-availability-changed',
|
|
|
|
available
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-12-05 03:27:17 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the on stage
|
|
|
|
* participant has changed.
|
|
|
|
*
|
|
|
|
* @param {string} id - User id of the new on stage participant.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyOnStageParticipantChanged(id: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'on-stage-participant-changed',
|
|
|
|
id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-05-29 21:17:07 +00:00
|
|
|
/**
|
|
|
|
* Notify external application of an unexpected camera-related error having
|
|
|
|
* occurred.
|
|
|
|
*
|
|
|
|
* @param {string} type - The type of the camera error.
|
|
|
|
* @param {string} message - Additional information about the error.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyOnCameraError(type: string, message: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'camera-error',
|
|
|
|
type,
|
|
|
|
message
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify external application of an unexpected mic-related error having
|
|
|
|
* occurred.
|
|
|
|
*
|
|
|
|
* @param {string} type - The type of the mic error.
|
|
|
|
* @param {string} message - Additional information about the error.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyOnMicError(type: string, message: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'mic-error',
|
|
|
|
type,
|
|
|
|
message
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-19 22:19:55 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that conference feedback
|
|
|
|
* has been submitted. Intended to be used in conjunction with the
|
|
|
|
* submit-feedback command to get notified if feedback was submitted.
|
|
|
|
*
|
2019-07-31 17:59:22 +00:00
|
|
|
* @param {string} error - A failure message, if any.
|
2018-01-19 22:19:55 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2019-07-31 17:59:22 +00:00
|
|
|
notifyFeedbackSubmitted(error: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'feedback-submitted',
|
|
|
|
error
|
|
|
|
});
|
2018-01-19 22:19:55 +00:00
|
|
|
}
|
2017-08-04 08:15:11 +00:00
|
|
|
|
2019-02-19 22:18:49 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the feedback prompt
|
|
|
|
* has been displayed.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyFeedbackPromptDisplayed() {
|
|
|
|
this._sendEvent({ name: 'feedback-prompt-displayed' });
|
|
|
|
}
|
|
|
|
|
2019-03-11 18:17:28 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the display
|
|
|
|
* configuration of the filmstrip has been changed.
|
|
|
|
*
|
|
|
|
* @param {boolean} visible - Whether or not the filmstrip has been set to
|
|
|
|
* be displayed or hidden.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyFilmstripDisplayChanged(visible: boolean) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'filmstrip-display-changed',
|
|
|
|
visible
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-28 22:22:43 +00:00
|
|
|
/**
|
|
|
|
* Notify external application of a participant, remote or local, being
|
|
|
|
* removed from the conference by another participant.
|
|
|
|
*
|
|
|
|
* @param {string} kicked - The ID of the participant removed from the
|
|
|
|
* conference.
|
|
|
|
* @param {string} kicker - The ID of the participant that removed the
|
|
|
|
* other participant.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyKickedOut(kicked: Object, kicker: Object) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'participant-kicked-out',
|
|
|
|
kicked,
|
|
|
|
kicker
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-08 17:35:11 +00:00
|
|
|
/**
|
|
|
|
* Notify external application of the current meeting requiring a password
|
|
|
|
* to join.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyOnPasswordRequired() {
|
|
|
|
this._sendEvent({ name: 'password-required' });
|
|
|
|
}
|
|
|
|
|
2018-01-30 13:43:06 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the screen sharing
|
|
|
|
* has been turned on/off.
|
|
|
|
*
|
|
|
|
* @param {boolean} on - True if screen sharing is enabled.
|
2019-03-07 05:46:17 +00:00
|
|
|
* @param {Object} details - Additional information about the screen
|
|
|
|
* sharing.
|
|
|
|
* @param {string} details.sourceType - Type of device or window the screen
|
|
|
|
* share is capturing.
|
2018-01-30 13:43:06 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2019-03-07 05:46:17 +00:00
|
|
|
notifyScreenSharingStatusChanged(on: boolean, details: Object) {
|
2018-01-30 13:43:06 +00:00
|
|
|
this._sendEvent({
|
|
|
|
name: 'screen-sharing-status-changed',
|
2019-03-07 05:46:17 +00:00
|
|
|
on,
|
|
|
|
details
|
2018-01-30 13:43:06 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-08-09 08:09:33 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the dominant speaker
|
|
|
|
* has been turned on/off.
|
|
|
|
*
|
|
|
|
* @param {string} id - Id of the dominant participant.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyDominantSpeakerChanged(id: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'dominant-speaker-changed',
|
|
|
|
id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-02-17 14:40:24 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the conference
|
|
|
|
* changed their subject.
|
|
|
|
*
|
|
|
|
* @param {string} subject - Conference subject.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifySubjectChanged(subject: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'subject-change',
|
|
|
|
subject
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-05-18 20:40:58 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that tile view has been
|
|
|
|
* entered or exited.
|
|
|
|
*
|
|
|
|
* @param {string} enabled - True if tile view is currently displayed, false
|
|
|
|
* otherwise.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyTileViewChanged(enabled: boolean) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'tile-view-changed',
|
|
|
|
enabled
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-09-25 22:51:54 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that the localStorage has changed.
|
|
|
|
*
|
|
|
|
* @param {string} localStorageContent - The new localStorageContent.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyLocalStorageChanged(localStorageContent: string) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'local-storage-changed',
|
|
|
|
localStorageContent
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-06 14:49:10 +00:00
|
|
|
/**
|
|
|
|
* Notify external application (if API is enabled) that user updated their hand raised.
|
|
|
|
*
|
|
|
|
* @param {string} id - User id.
|
|
|
|
* @param {boolean} handRaised - Whether user has raised hand.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
notifyRaiseHandUpdated(id: string, handRaised: boolean) {
|
|
|
|
this._sendEvent({
|
|
|
|
name: 'raise-hand-updated',
|
|
|
|
handRaised,
|
|
|
|
id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-09 23:15:04 +00:00
|
|
|
/**
|
2017-04-17 15:52:31 +00:00
|
|
|
* Disposes the allocated resources.
|
2017-04-11 18:02:59 +00:00
|
|
|
*
|
|
|
|
* @returns {void}
|
2015-01-09 13:39:32 +00:00
|
|
|
*/
|
2017-04-11 18:02:59 +00:00
|
|
|
dispose() {
|
2017-04-27 20:21:01 +00:00
|
|
|
if (this._enabled) {
|
|
|
|
this._enabled = false;
|
2017-04-06 22:09:55 +00:00
|
|
|
}
|
2015-01-09 13:39:32 +00:00
|
|
|
}
|
2016-12-20 22:15:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default new API();
|