1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543 |
- // @flow
-
- import Logger from 'jitsi-meet-logger';
-
- import {
- createApiEvent,
- sendAnalytics
- } from '../../react/features/analytics';
- import {
- approveParticipantAudio,
- approveParticipantVideo,
- rejectParticipantAudio,
- rejectParticipantVideo,
- requestDisableAudioModeration,
- requestDisableVideoModeration,
- requestEnableAudioModeration,
- requestEnableVideoModeration
- } from '../../react/features/av-moderation/actions';
- import { isEnabledFromState } from '../../react/features/av-moderation/functions';
- import {
- getCurrentConference,
- sendTones,
- setFollowMe,
- setPassword,
- setSubject
- } from '../../react/features/base/conference';
- import { overwriteConfig, getWhitelistedJSON } from '../../react/features/base/config';
- import { toggleDialog } from '../../react/features/base/dialog/actions';
- import { isSupportedBrowser } from '../../react/features/base/environment';
- import { parseJWTFromURLParams } from '../../react/features/base/jwt';
- import JitsiMeetJS, { JitsiRecordingConstants } from '../../react/features/base/lib-jitsi-meet';
- import { MEDIA_TYPE } from '../../react/features/base/media';
- import {
- getLocalParticipant,
- getParticipantById,
- pinParticipant,
- kickParticipant,
- raiseHand,
- isParticipantModerator,
- isLocalParticipantModerator,
- hasRaisedHand
- } from '../../react/features/base/participants';
- import { updateSettings } from '../../react/features/base/settings';
- import { isToggleCameraEnabled, toggleCamera } from '../../react/features/base/tracks';
- import {
- sendMessage,
- setPrivateMessageRecipient,
- toggleChat
- } from '../../react/features/chat/actions';
- import { openChat } from '../../react/features/chat/actions.web';
- import {
- processExternalDeviceRequest
- } from '../../react/features/device-selection/functions';
- import { isEnabled as isDropboxEnabled } from '../../react/features/dropbox';
- import { toggleE2EE } from '../../react/features/e2ee/actions';
- import { setVolume } from '../../react/features/filmstrip';
- import { invite } from '../../react/features/invite';
- import {
- selectParticipantInLargeVideo
- } from '../../react/features/large-video/actions.any';
- import {
- captureLargeVideoScreenshot,
- resizeLargeVideo
- } from '../../react/features/large-video/actions.web';
- import { toggleLobbyMode, setKnockingParticipantApproval } from '../../react/features/lobby/actions';
- import { isForceMuted } from '../../react/features/participants-pane/functions';
- import { RECORDING_TYPES } from '../../react/features/recording/constants';
- import { getActiveSession } from '../../react/features/recording/functions';
- import { isScreenAudioSupported } from '../../react/features/screen-share';
- import { startScreenShareFlow, startAudioScreenShareFlow } from '../../react/features/screen-share/actions';
- import { playSharedVideo, stopSharedVideo } from '../../react/features/shared-video/actions.any';
- import { toggleTileView, setTileView } from '../../react/features/video-layout';
- import { muteAllParticipants } from '../../react/features/video-menu/actions';
- import { setVideoQuality } from '../../react/features/video-quality';
- import VirtualBackgroundDialog from '../../react/features/virtual-background/components/VirtualBackgroundDialog';
- import { getJitsiMeetTransport } from '../transport';
-
- import { API_ID, ENDPOINT_TEXT_MESSAGE_NAME } from './constants';
-
- const logger = Logger.getLogger(__filename);
-
- declare var APP: Object;
-
- /**
- * List of the available commands.
- */
- let commands = {};
-
- /**
- * The transport instance used for communication with external apps.
- *
- * @type {Transport}
- */
- const transport = getJitsiMeetTransport();
-
- /**
- * The current audio availability.
- *
- * @type {boolean}
- */
- let audioAvailable = true;
-
- /**
- * The current video availability.
- *
- * @type {boolean}
- */
- let videoAvailable = true;
-
- /**
- * Initializes supported commands.
- *
- * @returns {void}
- */
- function initCommands() {
- commands = {
- 'answer-knocking-participant': (id, approved) => {
- APP.store.dispatch(setKnockingParticipantApproval(id, approved));
- },
- 'approve-video': participantId => {
- if (!isLocalParticipantModerator(APP.store.getState())) {
- return;
- }
-
- APP.store.dispatch(approveParticipantVideo(participantId));
- },
- 'ask-to-unmute': participantId => {
- if (!isLocalParticipantModerator(APP.store.getState())) {
- return;
- }
-
- APP.store.dispatch(approveParticipantAudio(participantId));
- },
- 'display-name': displayName => {
- sendAnalytics(createApiEvent('display.name.changed'));
- APP.conference.changeLocalDisplayName(displayName);
- },
- 'mute-everyone': mediaType => {
- const muteMediaType = mediaType ? mediaType : MEDIA_TYPE.AUDIO;
-
- sendAnalytics(createApiEvent('muted-everyone'));
- const localParticipant = getLocalParticipant(APP.store.getState());
- const exclude = [];
-
- if (localParticipant && isParticipantModerator(localParticipant)) {
- exclude.push(localParticipant.id);
- }
-
- APP.store.dispatch(muteAllParticipants(exclude, muteMediaType));
- },
- 'toggle-lobby': isLobbyEnabled => {
- APP.store.dispatch(toggleLobbyMode(isLobbyEnabled));
- },
- '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
- ));
- }
- },
- 'pin-participant': id => {
- logger.debug('Pin participant command received');
- sendAnalytics(createApiEvent('participant.pinned'));
- APP.store.dispatch(pinParticipant(id));
- },
- 'proxy-connection-event': event => {
- APP.conference.onProxyConnectionEvent(event);
- },
- 'reject-participant': (participantId, mediaType) => {
- if (!isLocalParticipantModerator(APP.store.getState())) {
- return;
- }
-
- const reject = mediaType === MEDIA_TYPE.VIDEO ? rejectParticipantVideo : rejectParticipantAudio;
-
- APP.store.dispatch(reject(participantId));
- },
- 'resize-large-video': (width, height) => {
- logger.debug('Resize large video command received');
- sendAnalytics(createApiEvent('largevideo.resized'));
- APP.store.dispatch(resizeLargeVideo(width, height));
- },
- 'send-tones': (options = {}) => {
- const { duration, tones, pause } = options;
-
- APP.store.dispatch(sendTones(tones, duration, pause));
- },
- 'set-follow-me': value => {
- logger.debug('Set follow me command received');
-
- if (value) {
- sendAnalytics(createApiEvent('follow.me.set'));
- } else {
- sendAnalytics(createApiEvent('follow.me.unset'));
- }
-
- APP.store.dispatch(setFollowMe(value));
- },
- 'set-large-video-participant': participantId => {
- logger.debug('Set large video participant command received');
- sendAnalytics(createApiEvent('largevideo.participant.set'));
- APP.store.dispatch(selectParticipantInLargeVideo(participantId));
- },
- 'set-participant-volume': (participantId, volume) => {
- APP.store.dispatch(setVolume(participantId, volume));
- },
- 'subject': subject => {
- sendAnalytics(createApiEvent('subject.changed'));
- APP.store.dispatch(setSubject(subject));
- },
- 'submit-feedback': feedback => {
- sendAnalytics(createApiEvent('submit.feedback'));
- APP.conference.submitFeedback(feedback.score, feedback.message);
- },
- 'toggle-audio': () => {
- sendAnalytics(createApiEvent('toggle-audio'));
- logger.log('Audio toggle: API command received');
- APP.conference.toggleAudioMuted(false /* no UI */);
- },
- 'toggle-video': () => {
- sendAnalytics(createApiEvent('toggle-video'));
- logger.log('Video toggle: API command received');
- APP.conference.toggleVideoMuted(false /* no UI */);
- },
- 'toggle-film-strip': () => {
- sendAnalytics(createApiEvent('film.strip.toggled'));
- APP.UI.toggleFilmstrip();
- },
- 'toggle-camera': () => {
- if (!isToggleCameraEnabled(APP.store.getState())) {
- return;
- }
-
- APP.store.dispatch(toggleCamera());
- },
- 'toggle-camera-mirror': () => {
- const state = APP.store.getState();
- const { localFlipX: currentFlipX } = state['features/base/settings'];
-
- APP.store.dispatch(updateSettings({ localFlipX: !currentFlipX }));
- },
- 'toggle-chat': () => {
- sendAnalytics(createApiEvent('chat.toggled'));
- APP.store.dispatch(toggleChat());
- },
- 'toggle-moderation': (enabled, mediaType) => {
- const state = APP.store.getState();
-
- if (!isLocalParticipantModerator(state)) {
- return;
- }
-
- const enable = mediaType === MEDIA_TYPE.VIDEO
- ? requestEnableVideoModeration : requestEnableAudioModeration;
- const disable = mediaType === MEDIA_TYPE.VIDEO
- ? requestDisableVideoModeration : requestDisableAudioModeration;
-
- if (enabled) {
- APP.store.dispatch(enable());
- } else {
- APP.store.dispatch(disable());
- }
- },
- 'toggle-raise-hand': () => {
- const localParticipant = getLocalParticipant(APP.store.getState());
-
- if (!localParticipant) {
- return;
- }
- const raisedHand = hasRaisedHand(localParticipant);
-
- sendAnalytics(createApiEvent('raise-hand.toggled'));
- APP.store.dispatch(raiseHand(!raisedHand));
- },
- 'toggle-share-audio': () => {
- sendAnalytics(createApiEvent('audio.screen.sharing.toggled'));
- if (isScreenAudioSupported()) {
- APP.store.dispatch(startAudioScreenShareFlow());
-
- return;
- }
-
- logger.error('Audio screen sharing is not supported by the current platform!');
- },
-
- /**
- * 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 = {}) => {
- sendAnalytics(createApiEvent('screen.sharing.toggled'));
- toggleScreenSharing(options.enable);
- },
- 'toggle-tile-view': () => {
- sendAnalytics(createApiEvent('tile-view.toggled'));
-
- APP.store.dispatch(toggleTileView());
- },
- 'set-tile-view': enabled => {
- APP.store.dispatch(setTileView(enabled));
- },
- 'video-hangup': (showFeedbackDialog = true) => {
- sendAnalytics(createApiEvent('video.hangup'));
- APP.conference.hangup(showFeedbackDialog);
- },
- 'email': email => {
- sendAnalytics(createApiEvent('email.changed'));
- APP.conference.changeLocalEmail(email);
- },
- 'avatar-url': avatarUrl => {
- sendAnalytics(createApiEvent('avatar.url.changed'));
- APP.conference.changeLocalAvatarUrl(avatarUrl);
- },
- 'send-chat-message': (message, to, ignorePrivacy = false) => {
- logger.debug('Send chat message command received');
- if (to) {
- const participant = getParticipantById(APP.store.getState(), to);
-
- if (participant) {
- APP.store.dispatch(setPrivateMessageRecipient(participant));
- } else {
- logger.error(`Participant with id ${to} not found!`);
-
- return;
- }
- } else {
- APP.store.dispatch(setPrivateMessageRecipient());
- }
-
- APP.store.dispatch(sendMessage(message, ignorePrivacy));
- },
- '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);
- }
- },
- 'toggle-e2ee': enabled => {
- logger.debug('Toggle E2EE key command received');
- APP.store.dispatch(toggleE2EE(enabled));
- },
- 'set-video-quality': frameHeight => {
- logger.debug('Set video quality command received');
- sendAnalytics(createApiEvent('set.video.quality'));
- APP.store.dispatch(setVideoQuality(frameHeight));
- },
-
- 'start-share-video': url => {
- logger.debug('Share video command received');
- sendAnalytics(createApiEvent('share.video.start'));
- APP.store.dispatch(playSharedVideo(url));
- },
-
- 'stop-share-video': () => {
- logger.debug('Share video command received');
- sendAnalytics(createApiEvent('share.video.stop'));
- APP.store.dispatch(stopSharedVideo());
- },
-
- /**
- * Starts a file recording or streaming session depending on the passed on params.
- * For RTMP streams, `rtmpStreamKey` must be passed on. `rtmpBroadcastID` is optional.
- * 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.
- * @param { string } arg.rtmpStreamKey - The RTMP stream key.
- * @param { string } arg.rtmpBroadcastID - The RTMP braodcast ID.
- * @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}
- */
- 'start-recording': ({
- mode,
- dropboxToken,
- shouldShare,
- rtmpStreamKey,
- rtmpBroadcastID,
- youtubeStreamKey,
- youtubeBroadcastID
- }) => {
- 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;
- }
-
- if (mode === JitsiRecordingConstants.mode.STREAM && !(youtubeStreamKey || rtmpStreamKey)) {
- logger.error('Failed starting recording: missing youtube or RTMP stream key');
-
- 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 = {
- broadcastId: youtubeBroadcastID || rtmpBroadcastID,
- mode: JitsiRecordingConstants.mode.STREAM,
- streamId: youtubeStreamKey || rtmpStreamKey
- };
- } 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');
- }
- },
- '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.store.dispatch(toggleChat());
- }
- APP.store.dispatch(openChat(participant));
- } else {
- logger.error('No participant found for the given participantId');
- }
- },
- 'cancel-private-chat': () => {
- APP.store.dispatch(setPrivateMessageRecipient());
- },
- 'kick-participant': participantId => {
- APP.store.dispatch(kickParticipant(participantId));
- },
- 'overwrite-config': config => {
- const whitelistedConfig = getWhitelistedJSON('config', config);
-
- APP.store.dispatch(overwriteConfig(whitelistedConfig));
- },
- 'toggle-virtual-background': () => {
- APP.store.dispatch(toggleDialog(VirtualBackgroundDialog));
- }
- };
- transport.on('event', ({ data, name }) => {
- if (name && commands[name]) {
- commands[name](...data);
-
- return true;
- }
-
- return false;
- });
- transport.on('request', (request, callback) => {
- const { dispatch, getState } = APP.store;
-
- if (processExternalDeviceRequest(dispatch, getState, request, callback)) {
- return true;
- }
-
- const { name } = request;
-
- switch (name) {
- 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;
- case 'deployment-info':
- callback(APP.store.getState()['features/base/config'].deploymentInfo);
- break;
- case 'invite': {
- const { invitees } = request;
-
- if (!Array.isArray(invitees) || invitees.length === 0) {
- callback({
- error: new Error('Unexpected format of invitees')
- });
-
- break;
- }
-
- // The store should be already available because API.init is called
- // on appWillMount action.
- APP.store.dispatch(
- invite(invitees, true))
- .then(failedInvitees => {
- let error;
- let result;
-
- if (failedInvitees.length) {
- error = new Error('One or more invites failed!');
- } else {
- result = true;
- }
-
- callback({
- error,
- result
- });
- });
- break;
- }
- case 'is-audio-muted':
- callback(APP.conference.isLocalAudioMuted());
- break;
- case 'is-moderation-on': {
- const { mediaType } = request;
- const type = mediaType || MEDIA_TYPE.AUDIO;
-
- callback(isEnabledFromState(type, APP.store.getState()));
- break;
- }
- case 'is-participant-force-muted': {
- const state = APP.store.getState();
- const { participantId, mediaType } = request;
- const type = mediaType || MEDIA_TYPE.AUDIO;
- const participant = getParticipantById(state, participantId);
-
- callback(isForceMuted(participant, type, state));
- break;
- }
- case 'is-video-muted':
- callback(APP.conference.isLocalVideoMuted());
- break;
- case 'is-audio-available':
- callback(audioAvailable);
- break;
- case 'is-video-available':
- callback(videoAvailable);
- break;
- case 'is-sharing-screen':
- callback(Boolean(APP.conference.isSharingScreen));
- break;
- 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;
- }
- case 'get-livestream-url': {
- const state = APP.store.getState();
- const conference = getCurrentConference(state);
- let livestreamUrl;
-
- if (conference) {
- const activeSession = getActiveSession(state, JitsiRecordingConstants.mode.STREAM);
-
- livestreamUrl = activeSession?.liveStreamViewURL;
- } else {
- logger.error('Conference is not defined');
- }
- callback({
- livestreamUrl
- });
- break;
- }
- case 'get-custom-avatar-backgrounds' : {
- callback({
- avatarBackgrounds: APP.store.getState()['features/dynamic-branding'].avatarBackgrounds
- });
- break;
- }
- default:
- return false;
- }
-
- return true;
- });
- }
-
- /**
- * Check whether the API should be enabled or not.
- *
- * @returns {boolean}
- */
- function shouldBeEnabled() {
- 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());
- }
-
- /**
- * Executes on toggle-share-screen command.
- *
- * @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.
- * @returns {void}
- */
- function toggleScreenSharing(enable) {
- if (JitsiMeetJS.isDesktopSharingEnabled()) {
- APP.store.dispatch(startScreenShareFlow(enable));
- }
- }
-
- /**
- * Removes sensitive data from a mouse event.
- *
- * @param {MouseEvent} event - The mouse event to sanitize.
- * @returns {Object}
- */
- function sanitizeMouseEvent(event: MouseEvent) {
- const {
- clientX,
- clientY,
- movementX,
- movementY,
- offsetX,
- offsetY,
- pageX,
- pageY,
- x,
- y,
- screenX,
- screenY
- } = event;
-
- return {
- clientX,
- clientY,
- movementX,
- movementY,
- offsetX,
- offsetY,
- pageX,
- pageY,
- x,
- y,
- screenX,
- screenY
- };
- }
-
- /**
- * Implements API class that communicates with external API class and provides
- * interface to access Jitsi Meet features by external applications that embed
- * Jitsi Meet.
- */
- class API {
- _enabled: boolean;
-
- /**
- * 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.
- *
- * @param {Object} options - Optional parameters.
- * @returns {void}
- */
- init() {
- if (!shouldBeEnabled()) {
- return;
- }
-
- /**
- * Current status (enabled/disabled) of API.
- *
- * @private
- * @type {boolean}
- */
- this._enabled = true;
-
- initCommands();
- this.notifyBrowserSupport(isSupportedBrowser());
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * Sends event to the external application.
- *
- * @param {Object} event - The event to be sent.
- * @returns {void}
- */
- _sendEvent(event: Object = {}) {
- if (this._enabled) {
- transport.sendEvent(event);
- }
- }
-
- /**
- * Notify external application (if API is enabled) that the chat state has been updated.
- *
- * @param {number} unreadCount - The unread messages counter.
- * @param {boolean} isOpen - True if the chat panel is open.
- * @returns {void}
- */
- notifyChatUpdated(unreadCount: number, isOpen: boolean) {
- this._sendEvent({
- name: 'chat-updated',
- unreadCount,
- isOpen
- });
- }
-
- /**
- * Notify external application (if API is enabled) that message was sent.
- *
- * @param {string} message - Message body.
- * @param {boolean} privateMessage - True if the message was a private message.
- * @returns {void}
- */
- notifySendingChatMessage(message: string, privateMessage: boolean) {
- this._sendEvent({
- name: 'outgoing-message',
- message,
- privateMessage
- });
- }
-
- /**
- * Notify external application (if API is enabled) that the mouse has entered inside the iframe.
- *
- * @param {MouseEvent} event - The mousemove event.
- * @returns {void}
- */
- notifyMouseEnter(event: MouseEvent) {
- this._sendEvent({
- name: 'mouse-enter',
- event: sanitizeMouseEvent(event)
- });
- }
-
- /**
- * Notify external application (if API is enabled) that the mouse has entered inside the iframe.
- *
- * @param {MouseEvent} event - The mousemove event.
- * @returns {void}
- */
- notifyMouseLeave(event: MouseEvent) {
- this._sendEvent({
- name: 'mouse-leave',
- event: sanitizeMouseEvent(event)
- });
- }
-
- /**
- * Notify external application (if API is enabled) that the mouse has moved inside the iframe.
- *
- * @param {MouseEvent} event - The mousemove event.
- * @returns {void}
- */
- notifyMouseMove(event: MouseEvent) {
- this._sendEvent({
- name: 'mouse-move',
- event: sanitizeMouseEvent(event)
- });
- }
-
- /**
- * Notify the external application that the moderation status has changed.
- *
- * @param {string} mediaType - Media type for which the moderation changed.
- * @param {boolean} enabled - Whether or not the new moderation status is enabled.
- * @returns {void}
- */
- notifyModerationChanged(mediaType: string, enabled: boolean) {
- this._sendEvent({
- name: 'moderation-status-changed',
- mediaType,
- enabled
- });
- }
-
- /**
- * Notify the external application that a participant was approved on moderation.
- *
- * @param {string} participantId - The ID of the participant that got approved.
- * @param {string} mediaType - Media type for which the participant was approved.
- * @returns {void}
- */
- notifyParticipantApproved(participantId: string, mediaType: string) {
- this._sendEvent({
- name: 'moderation-participant-approved',
- id: participantId,
- mediaType
- });
- }
-
- /**
- * Notify the external application that a participant was rejected on moderation.
- *
- * @param {string} participantId - The ID of the participant that got rejected.
- * @param {string} mediaType - Media type for which the participant was rejected.
- * @returns {void}
- */
- notifyParticipantRejected(participantId: string, mediaType: string) {
- this._sendEvent({
- name: 'moderation-participant-rejected',
- id: participantId,
- mediaType
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * Notify external application (if API is enabled) that message was
- * received.
- *
- * @param {Object} options - Object with the message properties.
- * @returns {void}
- */
- notifyReceivedChatMessage(
- { body, id, nick, privateMessage, ts }: {
- body: *, id: string, nick: string, privateMessage: boolean, ts: *
- } = {}) {
- if (APP.conference.isLocalId(id)) {
- return;
- }
-
- this._sendEvent({
- name: 'incoming-message',
- from: id,
- message: body,
- nick,
- privateMessage,
- stamp: ts
- });
- }
-
- /**
- * Notify external application (if API is enabled) that user joined the
- * conference.
- *
- * @param {string} id - User id.
- * @param {Object} props - The display name of the user.
- * @returns {void}
- */
- notifyUserJoined(id: string, props: Object) {
- this._sendEvent({
- name: 'participant-joined',
- id,
- ...props
- });
- }
-
- /**
- * Notify external application (if API is enabled) that user left the
- * conference.
- *
- * @param {string} id - User id.
- * @returns {void}
- */
- notifyUserLeft(id: string) {
- this._sendEvent({
- name: 'participant-left',
- id
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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',
- devices
- });
- }
-
- /**
- * Notify external application (if API is enabled) that user changed their
- * nickname.
- *
- * @param {string} id - User id.
- * @param {string} displayname - User nickname.
- * @param {string} formattedDisplayName - The display name shown in Jitsi
- * meet's UI for the user.
- * @returns {void}
- */
- notifyDisplayNameChanged(
- id: string,
- { displayName, formattedDisplayName }: Object) {
- this._sendEvent({
- name: 'display-name-change',
- displayname: displayName,
- formattedDisplayName,
- id
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * Notify external application (if API is enabled) that the conference has
- * been joined.
- *
- * @param {string} roomName - The room name.
- * @param {string} id - The id of the local user.
- * @param {Object} props - The display name and avatar URL of the local
- * user.
- * @returns {void}
- */
- notifyConferenceJoined(roomName: string, id: string, props: Object) {
- this._sendEvent({
- name: 'video-conference-joined',
- roomName,
- id,
- ...props
- });
- }
-
- /**
- * Notify external application (if API is enabled) that local user has left the conference.
- *
- * @param {string} roomName - User id.
- * @returns {void}
- */
- notifyConferenceLeft(roomName: string) {
- this._sendEvent({
- name: 'video-conference-left',
- roomName
- });
- }
-
- /**
- * Notify external application that the data channel has been opened.
- *
- * @returns {void}
- */
- notifyDataChannelOpened() {
- this._sendEvent({ name: 'data-channel-opened' });
- }
-
- /**
- * Notify external application (if API is enabled) that we are ready to be
- * closed.
- *
- * @returns {void}
- */
- notifyReadyToClose() {
- this._sendEvent({ name: 'video-ready-to-close' });
- }
-
- /**
- * Notify external application (if API is enabled) that a suspend event in host computer.
- *
- * @returns {void}
- */
- notifySuspendDetected() {
- this._sendEvent({ name: 'suspend-detected' });
- }
-
- /**
- * Notify external application (if API is enabled) for audio muted status
- * changed.
- *
- * @param {boolean} muted - The new muted status.
- * @returns {void}
- */
- notifyAudioMutedStatusChanged(muted: boolean) {
- 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}
- */
- notifyVideoMutedStatusChanged(muted: boolean) {
- 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}
- */
- notifyAudioAvailabilityChanged(available: boolean) {
- 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}
- */
- notifyVideoAvailabilityChanged(available: boolean) {
- videoAvailable = available;
- this._sendEvent({
- name: 'video-availability-changed',
- available
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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.
- *
- * @param {string} error - A failure message, if any.
- * @returns {void}
- */
- notifyFeedbackSubmitted(error: string) {
- this._sendEvent({
- name: 'feedback-submitted',
- error
- });
- }
-
- /**
- * Notify external application (if API is enabled) that the feedback prompt
- * has been displayed.
- *
- * @returns {void}
- */
- notifyFeedbackPromptDisplayed() {
- this._sendEvent({ name: 'feedback-prompt-displayed' });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * Notify external application of the current meeting requiring a password
- * to join.
- *
- * @returns {void}
- */
- notifyOnPasswordRequired() {
- this._sendEvent({ name: 'password-required' });
- }
-
- /**
- * 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.
- * @param {Object} details - Additional information about the screen
- * sharing.
- * @param {string} details.sourceType - Type of device or window the screen
- * share is capturing.
- * @returns {void}
- */
- notifyScreenSharingStatusChanged(on: boolean, details: Object) {
- this._sendEvent({
- name: 'screen-sharing-status-changed',
- on,
- details
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * 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
- });
- }
-
- /**
- * Notify external application (if API is enabled) that recording has started or stopped.
- *
- * @param {boolean} on - True if recording is on, false otherwise.
- * @param {string} mode - Stream or file.
- * @param {string} error - Error type or null if success.
- * @returns {void}
- */
- notifyRecordingStatusChanged(on: boolean, mode: string, error?: string) {
- this._sendEvent({
- name: 'recording-status-changed',
- on,
- mode,
- error
- });
- }
-
- /**
- * Notify external application (if API is enabled) that the current recording link is
- * available.
- *
- * @param {string} link - The recording download link.
- * @returns {void}
- */
- notifyRecordingLinkAvailable(link: string) {
- this._sendEvent({
- name: 'recording-link-available',
- link
- });
- }
-
- /**
- * Notify external application (if API is enabled) that a participant is knocking in the lobby.
- *
- * @param {Object} participant - Participant data such as id and name.
- * @returns {void}
- */
- notifyKnockingParticipant(participant: Object) {
- this._sendEvent({
- name: 'knocking-participant',
- participant
- });
- }
-
- /**
- * Notify external application (if API is enabled) that an error occured.
- *
- * @param {Object} error - The error.
- * @returns {void}
- */
- notifyError(error: Object) {
- this._sendEvent({
- name: 'error-occurred',
- error
- });
- }
-
- /**
- * Notify external application ( if API is enabled) that a toolbar button was clicked.
- *
- * @param {string} key - The key of the toolbar button.
- * @returns {void}
- */
- notifyToolbarButtonClicked(key: string) {
- this._sendEvent({
- name: 'toolbar-button-clicked',
- key
- });
- }
-
- /**
- * Notify external application (if API is enabled) wether the used browser is supported or not.
- *
- * @param {boolean} supported - If browser is supported or not.
- * @returns {void}
- */
- notifyBrowserSupport(supported: boolean) {
- this._sendEvent({
- name: 'browser-support',
- supported
- });
- }
-
- /**
- * Disposes the allocated resources.
- *
- * @returns {void}
- */
- dispose() {
- if (this._enabled) {
- this._enabled = false;
- }
- }
- }
-
- export default new API();
|