2016-01-06 22:39:13 +00:00
|
|
|
/* global $, APP, JitsiMeetJS, config, interfaceConfig */
|
2016-11-11 15:00:54 +00:00
|
|
|
const logger = require("jitsi-meet-logger").getLogger(__filename);
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
import {openConnection} from './connection';
|
2016-10-12 00:08:24 +00:00
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
import AuthHandler from './modules/UI/authentication/AuthHandler';
|
2016-05-05 16:14:27 +00:00
|
|
|
import Recorder from './modules/recorder/Recorder';
|
|
|
|
|
2016-06-13 11:49:00 +00:00
|
|
|
import mediaDeviceHelper from './modules/devices/mediaDeviceHelper';
|
|
|
|
|
2017-02-05 03:51:41 +00:00
|
|
|
import { reload, reportError } from './modules/util/helpers';
|
2016-07-25 22:04:39 +00:00
|
|
|
|
2017-08-17 16:43:22 +00:00
|
|
|
import * as RemoteControlEvents
|
|
|
|
from './service/remotecontrol/RemoteControlEvents';
|
2016-10-26 19:29:40 +00:00
|
|
|
import UIEvents from './service/UI/UIEvents';
|
2016-09-09 01:19:18 +00:00
|
|
|
import UIUtil from './modules/UI/util/UIUtil';
|
2017-01-23 18:07:08 +00:00
|
|
|
import * as JitsiMeetConferenceEvents from './ConferenceEvents';
|
2016-08-26 16:41:57 +00:00
|
|
|
|
2017-09-01 19:14:03 +00:00
|
|
|
import { initAnalytics } from './react/features/analytics';
|
2016-11-16 21:02:32 +00:00
|
|
|
|
2017-01-23 18:07:08 +00:00
|
|
|
import EventEmitter from "events";
|
2016-12-09 23:15:04 +00:00
|
|
|
|
2017-02-27 21:42:28 +00:00
|
|
|
import {
|
2017-02-28 23:12:02 +00:00
|
|
|
AVATAR_ID_COMMAND,
|
|
|
|
AVATAR_URL_COMMAND,
|
2017-02-27 21:42:28 +00:00
|
|
|
conferenceFailed,
|
2017-02-28 23:12:02 +00:00
|
|
|
conferenceJoined,
|
|
|
|
conferenceLeft,
|
2017-08-09 19:40:03 +00:00
|
|
|
dataChannelOpened,
|
2017-07-11 13:06:58 +00:00
|
|
|
toggleAudioOnly,
|
2017-04-13 00:23:43 +00:00
|
|
|
EMAIL_COMMAND,
|
2017-08-09 19:40:03 +00:00
|
|
|
lockStateChanged,
|
|
|
|
p2pStatusChanged
|
2017-02-27 21:42:28 +00:00
|
|
|
} from './react/features/base/conference';
|
2017-07-16 08:44:07 +00:00
|
|
|
import { updateDeviceList } from './react/features/base/devices';
|
2017-02-19 00:42:11 +00:00
|
|
|
import {
|
2017-09-01 19:14:03 +00:00
|
|
|
isAnalyticsEnabled,
|
2017-02-19 00:42:11 +00:00
|
|
|
isFatalJitsiConnectionError
|
|
|
|
} from './react/features/base/lib-jitsi-meet';
|
2017-07-24 13:56:57 +00:00
|
|
|
import {
|
2017-08-18 11:30:30 +00:00
|
|
|
isVideoMutedByUser,
|
|
|
|
MEDIA_TYPE,
|
2017-07-24 13:56:57 +00:00
|
|
|
setAudioAvailable,
|
2017-08-18 11:30:30 +00:00
|
|
|
setAudioMuted,
|
|
|
|
setVideoAvailable,
|
|
|
|
setVideoMuted
|
2017-07-24 13:56:57 +00:00
|
|
|
} from './react/features/base/media';
|
2017-02-27 21:42:28 +00:00
|
|
|
import {
|
2017-07-13 00:26:10 +00:00
|
|
|
localParticipantConnectionStatusChanged,
|
2017-04-10 21:53:30 +00:00
|
|
|
localParticipantRoleChanged,
|
2017-06-29 03:35:43 +00:00
|
|
|
MAX_DISPLAY_NAME_LENGTH,
|
2017-07-13 00:26:10 +00:00
|
|
|
participantConnectionStatusChanged,
|
2017-02-27 21:42:28 +00:00
|
|
|
participantJoined,
|
|
|
|
participantLeft,
|
2017-07-31 23:33:22 +00:00
|
|
|
participantPresenceChanged,
|
2017-03-23 18:01:33 +00:00
|
|
|
participantRoleChanged,
|
|
|
|
participantUpdated
|
2017-02-27 21:42:28 +00:00
|
|
|
} from './react/features/base/participants';
|
2017-06-20 20:09:34 +00:00
|
|
|
import {
|
2017-08-14 13:25:37 +00:00
|
|
|
createLocalTracksF,
|
2017-08-18 11:30:30 +00:00
|
|
|
isLocalTrackMuted,
|
2017-06-20 20:09:34 +00:00
|
|
|
replaceLocalTrack,
|
|
|
|
trackAdded,
|
|
|
|
trackRemoved
|
|
|
|
} from './react/features/base/tracks';
|
2017-07-21 21:12:02 +00:00
|
|
|
import { getLocationContextRoot } from './react/features/base/util';
|
2017-07-05 18:17:30 +00:00
|
|
|
import { statsEmitter } from './react/features/connection-indicator';
|
2017-07-16 08:44:07 +00:00
|
|
|
import { showDesktopPicker } from './react/features/desktop-picker';
|
2017-08-07 16:20:44 +00:00
|
|
|
import { maybeOpenFeedbackDialog } from './react/features/feedback';
|
2017-03-07 16:50:17 +00:00
|
|
|
import {
|
|
|
|
mediaPermissionPromptVisibilityChanged,
|
|
|
|
suspendDetected
|
|
|
|
} from './react/features/overlay';
|
2017-08-30 23:17:55 +00:00
|
|
|
import { showDesktopSharingButton } from './react/features/toolbox';
|
2017-02-27 21:42:28 +00:00
|
|
|
|
2017-07-13 00:26:10 +00:00
|
|
|
const { participantConnectionStatus } = JitsiMeetJS.constants;
|
|
|
|
|
2016-10-25 20:37:22 +00:00
|
|
|
const ConnectionEvents = JitsiMeetJS.events.connection;
|
2016-01-06 22:39:13 +00:00
|
|
|
const ConnectionErrors = JitsiMeetJS.errors.connection;
|
|
|
|
|
|
|
|
const ConferenceEvents = JitsiMeetJS.events.conference;
|
|
|
|
const ConferenceErrors = JitsiMeetJS.errors.conference;
|
|
|
|
|
2016-01-29 22:06:54 +00:00
|
|
|
const TrackEvents = JitsiMeetJS.events.track;
|
2016-02-04 15:25:11 +00:00
|
|
|
const TrackErrors = JitsiMeetJS.errors.track;
|
2016-01-29 22:06:54 +00:00
|
|
|
|
2017-01-23 18:07:08 +00:00
|
|
|
const eventEmitter = new EventEmitter();
|
|
|
|
|
2017-04-11 19:40:03 +00:00
|
|
|
let room;
|
|
|
|
let connection;
|
2016-07-22 18:42:41 +00:00
|
|
|
|
2017-03-30 16:58:31 +00:00
|
|
|
/*
|
|
|
|
* Logic to open a desktop picker put on the window global for
|
|
|
|
* lib-jitsi-meet to detect and invoke
|
|
|
|
*/
|
|
|
|
window.JitsiMeetScreenObtainer = {
|
2017-07-09 21:34:08 +00:00
|
|
|
openDesktopPicker(options, onSourceChoose) {
|
|
|
|
APP.store.dispatch(showDesktopPicker(options, onSourceChoose));
|
2017-03-30 16:58:31 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
/**
|
|
|
|
* Known custom conference commands.
|
|
|
|
*/
|
|
|
|
const commands = {
|
2017-02-28 23:12:02 +00:00
|
|
|
AVATAR_ID: AVATAR_ID_COMMAND,
|
|
|
|
AVATAR_URL: AVATAR_URL_COMMAND,
|
|
|
|
CUSTOM_ROLE: "custom-role",
|
|
|
|
EMAIL: EMAIL_COMMAND,
|
2016-06-13 21:11:44 +00:00
|
|
|
ETHERPAD: "etherpad",
|
2017-02-28 23:12:02 +00:00
|
|
|
SHARED_VIDEO: "shared-video"
|
2016-06-13 21:11:44 +00:00
|
|
|
};
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Open Connection. When authentication failed it shows auth dialog.
|
2016-02-09 23:44:41 +00:00
|
|
|
* @param roomName the room name to use
|
2016-01-15 14:59:35 +00:00
|
|
|
* @returns Promise<JitsiConnection>
|
|
|
|
*/
|
2016-02-09 23:44:41 +00:00
|
|
|
function connect(roomName) {
|
|
|
|
return openConnection({retry: true, roomName: roomName})
|
|
|
|
.catch(function (err) {
|
2016-01-06 22:39:13 +00:00
|
|
|
if (err === ConnectionErrors.PASSWORD_REQUIRED) {
|
|
|
|
APP.UI.notifyTokenAuthFailed();
|
|
|
|
} else {
|
|
|
|
APP.UI.notifyConnectionFailed(err);
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
2016-06-13 21:11:44 +00:00
|
|
|
* Share data to other users.
|
|
|
|
* @param command the command
|
|
|
|
* @param {string} value new value
|
2016-01-15 14:59:35 +00:00
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
function sendData(command, value) {
|
2017-08-18 11:30:30 +00:00
|
|
|
if (!room) {
|
2017-03-23 18:01:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
room.removeCommand(command);
|
|
|
|
room.sendCommand(command, {value: value});
|
2016-01-15 14:59:35 +00:00
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2017-02-27 21:42:28 +00:00
|
|
|
/**
|
2017-03-07 16:50:17 +00:00
|
|
|
* Sets up initially the properties of the local participant - email, avatarID,
|
|
|
|
* avatarURL, displayName, etc.
|
2017-02-27 21:42:28 +00:00
|
|
|
*/
|
|
|
|
function _setupLocalParticipantProperties() {
|
|
|
|
const email = APP.settings.getEmail();
|
|
|
|
email && sendData(commands.EMAIL, email);
|
|
|
|
|
|
|
|
const avatarUrl = APP.settings.getAvatarUrl();
|
|
|
|
avatarUrl && sendData(commands.AVATAR_URL, avatarUrl);
|
|
|
|
|
2017-03-07 16:50:17 +00:00
|
|
|
if (!email && !avatarUrl) {
|
2017-02-27 21:42:28 +00:00
|
|
|
sendData(commands.AVATAR_ID, APP.settings.getAvatarId());
|
|
|
|
}
|
|
|
|
|
|
|
|
let nick = APP.settings.getDisplayName();
|
|
|
|
if (config.useNicks && !nick) {
|
|
|
|
nick = APP.UI.askForNickname();
|
|
|
|
APP.settings.setDisplayName(nick);
|
|
|
|
}
|
|
|
|
nick && room.setDisplayName(nick);
|
|
|
|
}
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Get user nickname by user id.
|
|
|
|
* @param {string} id user id
|
|
|
|
* @returns {string?} user nickname or undefined if user is unknown.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
function getDisplayName(id) {
|
2016-01-06 22:39:13 +00:00
|
|
|
if (APP.conference.isLocalId(id)) {
|
|
|
|
return APP.settings.getDisplayName();
|
|
|
|
}
|
|
|
|
|
|
|
|
let participant = room.getParticipantById(id);
|
|
|
|
if (participant && participant.getDisplayName()) {
|
|
|
|
return participant.getDisplayName();
|
|
|
|
}
|
2016-01-15 14:59:35 +00:00
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2016-02-03 14:44:10 +00:00
|
|
|
/**
|
|
|
|
* Mute or unmute local audio stream if it exists.
|
2016-10-03 16:12:04 +00:00
|
|
|
* @param {boolean} muted - if audio stream should be muted or unmuted.
|
2016-02-03 14:44:10 +00:00
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
function muteLocalAudio(muted) {
|
2017-08-18 11:30:30 +00:00
|
|
|
APP.store.dispatch(setAudioMuted(muted));
|
2016-02-03 14:44:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mute or unmute local video stream if it exists.
|
|
|
|
* @param {boolean} muted if video stream should be muted or unmuted.
|
2017-07-24 09:20:32 +00:00
|
|
|
*
|
2016-02-03 14:44:10 +00:00
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
function muteLocalVideo(muted) {
|
2017-08-18 11:30:30 +00:00
|
|
|
APP.store.dispatch(setVideoMuted(muted));
|
2016-02-03 14:44:10 +00:00
|
|
|
}
|
|
|
|
|
2016-05-05 16:11:05 +00:00
|
|
|
/**
|
|
|
|
* Check if the welcome page is enabled and redirects to it.
|
2016-09-22 19:03:01 +00:00
|
|
|
* If requested show a thank you dialog before that.
|
2016-09-22 19:19:50 +00:00
|
|
|
* If we have a close page enabled, redirect to it without
|
|
|
|
* showing any other dialog.
|
2016-11-01 18:14:21 +00:00
|
|
|
*
|
2016-11-01 20:34:21 +00:00
|
|
|
* @param {object} options used to decide which particular close page to show
|
|
|
|
* or if close page is disabled, whether we should show the thankyou dialog
|
2016-11-01 19:46:47 +00:00
|
|
|
* @param {boolean} options.thankYouDialogVisible - whether we should
|
|
|
|
* show thank you dialog
|
|
|
|
* @param {boolean} options.feedbackSubmitted - whether feedback was submitted
|
2016-05-05 16:11:05 +00:00
|
|
|
*/
|
2016-11-01 19:46:47 +00:00
|
|
|
function maybeRedirectToWelcomePage(options) {
|
2016-09-22 19:19:50 +00:00
|
|
|
// if close page is enabled redirect to it, without further action
|
|
|
|
if (config.enableClosePage) {
|
2017-04-21 10:00:50 +00:00
|
|
|
const { isGuest } = APP.store.getState()['features/jwt'];
|
|
|
|
|
2017-01-03 20:15:32 +00:00
|
|
|
// save whether current user is guest or not, before navigating
|
|
|
|
// to close page
|
2017-04-21 10:00:50 +00:00
|
|
|
window.sessionStorage.setItem('guest', isGuest);
|
2017-03-20 21:05:11 +00:00
|
|
|
assignWindowLocationPathname('static/'
|
|
|
|
+ (options.feedbackSubmitted ? "close.html" : "close2.html"));
|
2016-09-22 19:19:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-01 18:14:21 +00:00
|
|
|
// else: show thankYou dialog only if there is no feedback
|
2016-11-01 19:46:47 +00:00
|
|
|
if (options.thankYouDialogVisible)
|
2016-10-22 03:10:33 +00:00
|
|
|
APP.UI.messageHandler.openMessageDialog(
|
|
|
|
null, "dialog.thankYou", {appName:interfaceConfig.APP_NAME});
|
2016-09-22 19:03:01 +00:00
|
|
|
|
2016-11-01 18:14:21 +00:00
|
|
|
// if Welcome page is enabled redirect to welcome page after 3 sec.
|
|
|
|
if (config.enableWelcomePage) {
|
|
|
|
setTimeout(() => {
|
|
|
|
APP.settings.setWelcomePageEnabled(true);
|
2017-02-05 02:29:24 +00:00
|
|
|
assignWindowLocationPathname('./');
|
2016-11-01 18:14:21 +00:00
|
|
|
}, 3000);
|
2016-05-05 16:11:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-05 02:29:24 +00:00
|
|
|
/**
|
|
|
|
* Assigns a specific pathname to window.location.pathname taking into account
|
|
|
|
* the context root of the Web app.
|
|
|
|
*
|
|
|
|
* @param {string} pathname - The pathname to assign to
|
|
|
|
* window.location.pathname. If the specified pathname is relative, the context
|
|
|
|
* root of the Web app will be prepended to the specified pathname before
|
|
|
|
* assigning it to window.location.pathname.
|
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
function assignWindowLocationPathname(pathname) {
|
|
|
|
const windowLocation = window.location;
|
|
|
|
|
|
|
|
if (!pathname.startsWith('/')) {
|
|
|
|
// A pathname equal to ./ specifies the current directory. It will be
|
|
|
|
// fine but pointless to include it because contextRoot is the current
|
|
|
|
// directory.
|
|
|
|
pathname.startsWith('./') && (pathname = pathname.substring(2));
|
2017-05-09 05:15:43 +00:00
|
|
|
pathname = getLocationContextRoot(windowLocation) + pathname;
|
2017-02-05 02:29:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
windowLocation.pathname = pathname;
|
|
|
|
}
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
class ConferenceConnector {
|
2017-04-13 00:23:43 +00:00
|
|
|
constructor(resolve, reject) {
|
2016-01-06 22:39:13 +00:00
|
|
|
this._resolve = resolve;
|
|
|
|
this._reject = reject;
|
|
|
|
this.reconnectTimeout = null;
|
|
|
|
room.on(ConferenceEvents.CONFERENCE_JOINED,
|
|
|
|
this._handleConferenceJoined.bind(this));
|
|
|
|
room.on(ConferenceEvents.CONFERENCE_FAILED,
|
|
|
|
this._onConferenceFailed.bind(this));
|
2016-01-25 22:39:05 +00:00
|
|
|
room.on(ConferenceEvents.CONFERENCE_ERROR,
|
|
|
|
this._onConferenceError.bind(this));
|
2016-01-06 22:39:13 +00:00
|
|
|
}
|
2016-10-03 16:12:04 +00:00
|
|
|
_handleConferenceFailed(err) {
|
2016-01-06 22:39:13 +00:00
|
|
|
this._unsubscribe();
|
|
|
|
this._reject(err);
|
|
|
|
}
|
2016-01-25 22:39:05 +00:00
|
|
|
_onConferenceFailed(err, ...params) {
|
2017-01-31 20:58:48 +00:00
|
|
|
APP.store.dispatch(conferenceFailed(room, err, ...params));
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.error('CONFERENCE FAILED:', err, ...params);
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2017-06-05 18:19:25 +00:00
|
|
|
switch (err) {
|
2016-01-06 22:39:13 +00:00
|
|
|
case ConferenceErrors.CONNECTION_ERROR:
|
2016-01-25 22:39:05 +00:00
|
|
|
{
|
|
|
|
let [msg] = params;
|
|
|
|
APP.UI.notifyConnectionFailed(msg);
|
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
break;
|
|
|
|
|
2016-09-27 22:26:38 +00:00
|
|
|
case ConferenceErrors.NOT_ALLOWED_ERROR:
|
|
|
|
{
|
|
|
|
// let's show some auth not allowed page
|
2017-03-20 21:05:11 +00:00
|
|
|
assignWindowLocationPathname('static/authError.html');
|
2016-09-27 22:26:38 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
// not enough rights to create conference
|
2017-04-18 21:49:52 +00:00
|
|
|
case ConferenceErrors.AUTHENTICATION_REQUIRED: {
|
|
|
|
// Schedule reconnect to check if someone else created the room.
|
|
|
|
this.reconnectTimeout = setTimeout(() => room.join(), 5000);
|
2017-04-13 00:23:43 +00:00
|
|
|
|
|
|
|
const { password }
|
|
|
|
= APP.store.getState()['features/base/conference'];
|
|
|
|
|
|
|
|
AuthHandler.requireAuth(room, password);
|
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
break;
|
|
|
|
|
2016-01-25 22:39:05 +00:00
|
|
|
case ConferenceErrors.RESERVATION_ERROR:
|
|
|
|
{
|
|
|
|
let [code, msg] = params;
|
|
|
|
APP.UI.notifyReservationError(code, msg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ConferenceErrors.GRACEFUL_SHUTDOWN:
|
2016-02-05 15:04:48 +00:00
|
|
|
APP.UI.notifyGracefulShutdown();
|
2016-01-25 22:39:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ConferenceErrors.JINGLE_FATAL_ERROR:
|
|
|
|
APP.UI.notifyInternalError();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ConferenceErrors.CONFERENCE_DESTROYED:
|
|
|
|
{
|
|
|
|
let [reason] = params;
|
2016-01-29 15:33:16 +00:00
|
|
|
APP.UI.hideStats();
|
2016-01-25 22:39:05 +00:00
|
|
|
APP.UI.notifyConferenceDestroyed(reason);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-10-06 18:30:00 +00:00
|
|
|
// FIXME FOCUS_DISCONNECTED is confusing event name.
|
|
|
|
// What really happens there is that the library is not ready yet,
|
|
|
|
// because Jicofo is not available, but it is going to give
|
|
|
|
// it another try.
|
2016-01-25 22:39:05 +00:00
|
|
|
case ConferenceErrors.FOCUS_DISCONNECTED:
|
|
|
|
{
|
|
|
|
let [focus, retrySec] = params;
|
|
|
|
APP.UI.notifyFocusDisconnected(focus, retrySec);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-02-05 15:04:48 +00:00
|
|
|
case ConferenceErrors.FOCUS_LEFT:
|
2016-10-06 18:30:00 +00:00
|
|
|
case ConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE:
|
|
|
|
// FIXME the conference should be stopped by the library and not by
|
|
|
|
// the app. Both the errors above are unrecoverable from the library
|
|
|
|
// perspective.
|
2016-02-22 14:57:36 +00:00
|
|
|
room.leave().then(() => connection.disconnect());
|
2016-02-05 15:04:48 +00:00
|
|
|
break;
|
|
|
|
|
2016-03-15 19:08:01 +00:00
|
|
|
case ConferenceErrors.CONFERENCE_MAX_USERS:
|
|
|
|
connection.disconnect();
|
|
|
|
APP.UI.notifyMaxUsersLimitReached();
|
|
|
|
break;
|
2016-07-08 01:44:04 +00:00
|
|
|
case ConferenceErrors.INCOMPATIBLE_SERVER_VERSIONS:
|
2017-02-05 03:51:41 +00:00
|
|
|
reload();
|
2016-07-08 01:44:04 +00:00
|
|
|
break;
|
2016-01-06 22:39:13 +00:00
|
|
|
default:
|
2016-01-25 22:39:05 +00:00
|
|
|
this._handleConferenceFailed(err, ...params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_onConferenceError(err, ...params) {
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.error('CONFERENCE Error:', err, params);
|
2016-01-25 22:39:05 +00:00
|
|
|
switch (err) {
|
|
|
|
case ConferenceErrors.CHAT_ERROR:
|
|
|
|
{
|
|
|
|
let [code, msg] = params;
|
|
|
|
APP.UI.showChatError(code, msg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.error("Unknown error.", err);
|
2016-01-06 22:39:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_unsubscribe() {
|
|
|
|
room.off(
|
|
|
|
ConferenceEvents.CONFERENCE_JOINED, this._handleConferenceJoined);
|
|
|
|
room.off(
|
|
|
|
ConferenceEvents.CONFERENCE_FAILED, this._onConferenceFailed);
|
|
|
|
if (this.reconnectTimeout !== null) {
|
|
|
|
clearTimeout(this.reconnectTimeout);
|
|
|
|
}
|
|
|
|
AuthHandler.closeAuth();
|
|
|
|
}
|
|
|
|
_handleConferenceJoined() {
|
|
|
|
this._unsubscribe();
|
|
|
|
this._resolve();
|
|
|
|
}
|
|
|
|
connect() {
|
|
|
|
room.join();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-12 21:30:44 +00:00
|
|
|
/**
|
|
|
|
* Disconnects the connection.
|
|
|
|
* @returns resolved Promise. We need this in order to make the Promise.all
|
|
|
|
* call in hangup() to resolve when all operations are finished.
|
|
|
|
*/
|
|
|
|
function disconnect() {
|
|
|
|
connection.disconnect();
|
|
|
|
APP.API.notifyConferenceLeft(APP.conference.roomName);
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2017-01-31 20:58:48 +00:00
|
|
|
/**
|
|
|
|
* Handles CONNECTION_FAILED events from lib-jitsi-meet.
|
2017-02-19 00:42:11 +00:00
|
|
|
*
|
|
|
|
* @param {JitsiMeetJS.connection.error} error - The reported error.
|
2017-01-31 20:58:48 +00:00
|
|
|
* @returns {void}
|
|
|
|
* @private
|
|
|
|
*/
|
2017-02-19 00:42:11 +00:00
|
|
|
function _connectionFailedHandler(error) {
|
|
|
|
if (isFatalJitsiConnectionError(error)) {
|
|
|
|
APP.connection.removeEventListener(
|
|
|
|
ConnectionEvents.CONNECTION_FAILED,
|
2017-01-31 20:58:48 +00:00
|
|
|
_connectionFailedHandler);
|
|
|
|
if (room)
|
|
|
|
room.leave();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
export default {
|
2017-07-21 09:12:33 +00:00
|
|
|
/**
|
|
|
|
* Flag used to delay modification of the muted status of local media tracks
|
|
|
|
* until those are created (or not, but at that point it's certain that
|
|
|
|
* the tracks won't exist).
|
|
|
|
*/
|
|
|
|
_localTracksInitialized: false,
|
2016-01-06 22:39:13 +00:00
|
|
|
isModerator: false,
|
2016-02-04 15:25:11 +00:00
|
|
|
isSharingScreen: false,
|
2017-07-14 09:25:28 +00:00
|
|
|
/**
|
|
|
|
* Indicates if the desktop sharing functionality has been enabled.
|
|
|
|
* It takes into consideration {@link isDesktopSharingDisabledByConfig}
|
|
|
|
* as well as the status returned by
|
|
|
|
* {@link JitsiMeetJS.isDesktopSharingEnabled()}. The latter can be false
|
|
|
|
* either if the desktop sharing is not supported by the current browser
|
|
|
|
* or if it was disabled through lib-jitsi-meet specific options (check
|
|
|
|
* config.js for listed options).
|
|
|
|
*/
|
2016-02-04 15:25:11 +00:00
|
|
|
isDesktopSharingEnabled: false,
|
2017-07-14 09:25:28 +00:00
|
|
|
/**
|
|
|
|
* Set to <tt>true</tt> if the desktop sharing functionality has been
|
|
|
|
* explicitly disabled in the config.
|
|
|
|
*/
|
|
|
|
isDesktopSharingDisabledByConfig: false,
|
|
|
|
/**
|
|
|
|
* The text displayed when the desktop sharing button is disabled through
|
|
|
|
* the config. The value is set through
|
|
|
|
* {@link interfaceConfig.DESKTOP_SHARING_BUTTON_DISABLED_TOOLTIP}.
|
|
|
|
*/
|
|
|
|
desktopSharingDisabledTooltip: null,
|
2016-06-20 21:13:17 +00:00
|
|
|
/*
|
|
|
|
* Whether the local "raisedHand" flag is on.
|
|
|
|
*/
|
|
|
|
isHandRaised: false,
|
|
|
|
/*
|
|
|
|
* Whether the local participant is the dominant speaker in the conference.
|
|
|
|
*/
|
|
|
|
isDominantSpeaker: false,
|
2017-07-17 11:38:46 +00:00
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
/**
|
|
|
|
* The local audio track (if any).
|
|
|
|
* FIXME tracks from redux store should be the single source of truth
|
|
|
|
* @type {JitsiLocalTrack|null}
|
|
|
|
*/
|
|
|
|
localAudio: null,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The local video track (if any).
|
|
|
|
* FIXME tracks from redux store should be the single source of truth, but
|
|
|
|
* more refactoring is required around screen sharing ('localVideo' usages).
|
|
|
|
* @type {JitsiLocalTrack|null}
|
|
|
|
*/
|
|
|
|
localVideo: null,
|
|
|
|
|
2017-07-17 11:38:46 +00:00
|
|
|
/**
|
|
|
|
* Creates local media tracks and connects to a room. Will show error
|
|
|
|
* dialogs in case accessing the local microphone and/or camera failed. Will
|
|
|
|
* show guidance overlay for users on how to give access to camera and/or
|
2017-07-11 13:06:58 +00:00
|
|
|
* microphone.
|
2017-07-17 11:38:46 +00:00
|
|
|
* @param {string} roomName
|
2017-07-18 10:25:37 +00:00
|
|
|
* @param {object} options
|
2017-07-11 13:06:58 +00:00
|
|
|
* @param {boolean} options.startAudioOnly=false - if <tt>true</tt> then
|
|
|
|
* only audio track will be created and the audio only mode will be turned
|
|
|
|
* on.
|
|
|
|
* @param {boolean} options.startScreenSharing=false - if <tt>true</tt>
|
|
|
|
* should start with screensharing instead of camera video.
|
2017-07-24 16:10:31 +00:00
|
|
|
* @param {boolean} options.startWithAudioMuted - will start the conference
|
|
|
|
* without any audio tracks.
|
|
|
|
* @param {boolean} options.startWithVideoMuted - will start the conference
|
|
|
|
* without any video tracks.
|
2017-07-17 11:38:46 +00:00
|
|
|
* @returns {Promise.<JitsiLocalTrack[], JitsiConnection>}
|
|
|
|
*/
|
2017-07-18 10:25:37 +00:00
|
|
|
createInitialLocalTracksAndConnect(roomName, options = {}) {
|
2017-07-17 11:38:46 +00:00
|
|
|
let audioAndVideoError,
|
|
|
|
audioOnlyError,
|
2017-06-29 17:43:35 +00:00
|
|
|
screenSharingError,
|
2017-07-17 11:38:46 +00:00
|
|
|
videoOnlyError;
|
2017-07-24 16:10:31 +00:00
|
|
|
const initialDevices = [];
|
|
|
|
let requestedAudio = false;
|
|
|
|
let requestedVideo = false;
|
|
|
|
|
|
|
|
if (!options.startWithAudioMuted) {
|
|
|
|
initialDevices.push('audio');
|
|
|
|
requestedAudio = true;
|
|
|
|
}
|
|
|
|
if (!options.startWithVideoMuted
|
|
|
|
&& !options.startAudioOnly
|
|
|
|
&& !options.startScreenSharing) {
|
|
|
|
initialDevices.push('video');
|
|
|
|
requestedVideo = true;
|
|
|
|
}
|
2017-07-17 11:38:46 +00:00
|
|
|
|
|
|
|
JitsiMeetJS.mediaDevices.addEventListener(
|
|
|
|
JitsiMeetJS.events.mediaDevices.PERMISSION_PROMPT_IS_SHOWN,
|
|
|
|
browser =>
|
|
|
|
APP.store.dispatch(
|
|
|
|
mediaPermissionPromptVisibilityChanged(true, browser))
|
|
|
|
);
|
|
|
|
|
2017-06-29 17:43:35 +00:00
|
|
|
let tryCreateLocalTracks;
|
|
|
|
|
2017-07-24 16:10:31 +00:00
|
|
|
// Enable audio only mode
|
|
|
|
if (config.startAudioOnly) {
|
|
|
|
APP.store.dispatch(toggleAudioOnly());
|
|
|
|
}
|
2017-07-20 12:29:15 +00:00
|
|
|
|
2017-07-24 16:10:31 +00:00
|
|
|
// FIXME is there any simpler way to rewrite this spaghetti below ?
|
|
|
|
if (options.startScreenSharing) {
|
2017-06-29 17:43:35 +00:00
|
|
|
tryCreateLocalTracks = this._createDesktopTrack()
|
|
|
|
.then(desktopStream => {
|
2017-07-24 16:10:31 +00:00
|
|
|
if (!requestedAudio) {
|
|
|
|
return [desktopStream];
|
|
|
|
}
|
|
|
|
|
2017-08-14 13:25:37 +00:00
|
|
|
return createLocalTracksF({ devices: ['audio'] }, true)
|
2017-06-29 17:43:35 +00:00
|
|
|
.then(([audioStream]) => {
|
|
|
|
return [desktopStream, audioStream];
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
audioOnlyError = error;
|
|
|
|
return [desktopStream];
|
|
|
|
});
|
|
|
|
}).catch(error => {
|
|
|
|
logger.error('Failed to obtain desktop stream', error);
|
|
|
|
screenSharingError = error;
|
2017-07-24 16:10:31 +00:00
|
|
|
return requestedAudio
|
2017-08-14 13:25:37 +00:00
|
|
|
? createLocalTracksF({ devices: ['audio'] }, true)
|
2017-07-24 16:10:31 +00:00
|
|
|
: [];
|
2017-06-29 17:43:35 +00:00
|
|
|
}).catch(error => {
|
|
|
|
audioOnlyError = error;
|
|
|
|
return [];
|
|
|
|
});
|
2017-07-24 16:10:31 +00:00
|
|
|
} else if (!requestedAudio && !requestedVideo) {
|
|
|
|
// Resolve with no tracks
|
|
|
|
tryCreateLocalTracks = Promise.resolve([]);
|
2017-06-29 17:43:35 +00:00
|
|
|
} else {
|
2017-08-14 13:25:37 +00:00
|
|
|
tryCreateLocalTracks = createLocalTracksF(
|
2017-07-24 16:10:31 +00:00
|
|
|
{ devices: initialDevices }, true)
|
2017-06-29 17:43:35 +00:00
|
|
|
.catch(err => {
|
2017-07-24 16:10:31 +00:00
|
|
|
if (requestedAudio && requestedVideo) {
|
|
|
|
|
|
|
|
// Try audio only...
|
|
|
|
audioAndVideoError = err;
|
|
|
|
|
2017-08-14 13:25:37 +00:00
|
|
|
return createLocalTracksF({devices: ['audio']}, true);
|
2017-07-24 16:10:31 +00:00
|
|
|
} else if (requestedAudio && !requestedVideo) {
|
|
|
|
audioOnlyError = err;
|
|
|
|
|
|
|
|
return [];
|
|
|
|
} else if (requestedVideo && !requestedAudio) {
|
|
|
|
videoOnlyError = err;
|
|
|
|
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
logger.error('Should never happen');
|
|
|
|
}).catch(err => {
|
|
|
|
// Log this just in case...
|
|
|
|
if (!requestedAudio) {
|
|
|
|
logger.error('The impossible just happened', err);
|
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
audioOnlyError = err;
|
|
|
|
|
|
|
|
// Try video only...
|
2017-07-24 16:10:31 +00:00
|
|
|
return requestedVideo
|
2017-08-14 13:25:37 +00:00
|
|
|
? createLocalTracksF({devices: ['video']}, true)
|
2017-07-24 16:10:31 +00:00
|
|
|
: [];
|
2017-06-29 17:43:35 +00:00
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-24 16:10:31 +00:00
|
|
|
// Log this just in case...
|
|
|
|
if (!requestedVideo) {
|
|
|
|
logger.error('The impossible just happened', err);
|
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
videoOnlyError = err;
|
|
|
|
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
}
|
2017-07-17 11:38:46 +00:00
|
|
|
|
|
|
|
return Promise.all([ tryCreateLocalTracks, connect(roomName) ])
|
|
|
|
.then(([tracks, con]) => {
|
|
|
|
APP.store.dispatch(
|
|
|
|
mediaPermissionPromptVisibilityChanged(false));
|
2017-06-29 18:49:00 +00:00
|
|
|
// FIXME If there will be microphone error it will cover any
|
|
|
|
// screensharing dialog, but it's still better than in
|
|
|
|
// the reverse order where the screensharing dialog will
|
2017-07-18 10:28:27 +00:00
|
|
|
// sometimes be closing the microphone alert ($.prompt.close();
|
2017-06-29 18:49:00 +00:00
|
|
|
// is called). Need to figure out dialogs chaining to fix that.
|
|
|
|
if (screenSharingError) {
|
|
|
|
this._handleScreenSharingError(screenSharingError);
|
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
if (audioAndVideoError || audioOnlyError) {
|
|
|
|
if (audioOnlyError || videoOnlyError) {
|
2017-07-17 11:38:46 +00:00
|
|
|
// If both requests for 'audio' + 'video' and 'audio'
|
2017-07-18 10:28:27 +00:00
|
|
|
// only failed, we assume that there are some problems
|
2017-07-17 11:38:46 +00:00
|
|
|
// with user's microphone and show corresponding dialog.
|
2017-07-31 18:36:41 +00:00
|
|
|
APP.UI.showMicErrorNotification(audioOnlyError);
|
|
|
|
APP.UI.showCameraErrorNotification(videoOnlyError);
|
2017-07-17 11:38:46 +00:00
|
|
|
} else {
|
|
|
|
// If request for 'audio' + 'video' failed, but request
|
|
|
|
// for 'audio' only was OK, we assume that we had
|
|
|
|
// problems with camera and show corresponding dialog.
|
2017-07-31 18:36:41 +00:00
|
|
|
APP.UI.showCameraErrorNotification(audioAndVideoError);
|
2017-07-17 11:38:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [tracks, con];
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Open new connection and join to the conference.
|
|
|
|
* @param {object} options
|
|
|
|
* @param {string} roomName name of the conference
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
2016-01-06 22:39:13 +00:00
|
|
|
init(options) {
|
|
|
|
this.roomName = options.roomName;
|
2016-04-06 16:52:31 +00:00
|
|
|
// attaches global error handler, if there is already one, respect it
|
2017-08-18 11:30:30 +00:00
|
|
|
if (JitsiMeetJS.getGlobalOnErrorHandler){
|
2016-04-06 16:52:31 +00:00
|
|
|
var oldOnErrorHandler = window.onerror;
|
|
|
|
window.onerror = function (message, source, lineno, colno, error) {
|
|
|
|
JitsiMeetJS.getGlobalOnErrorHandler(
|
|
|
|
message, source, lineno, colno, error);
|
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
if (oldOnErrorHandler)
|
2016-04-06 16:52:31 +00:00
|
|
|
oldOnErrorHandler(message, source, lineno, colno, error);
|
|
|
|
};
|
2016-04-26 08:00:42 +00:00
|
|
|
|
|
|
|
var oldOnUnhandledRejection = window.onunhandledrejection;
|
|
|
|
window.onunhandledrejection = function(event) {
|
|
|
|
|
|
|
|
JitsiMeetJS.getGlobalOnErrorHandler(
|
|
|
|
null, null, null, null, event.reason);
|
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
if (oldOnUnhandledRejection)
|
2016-04-26 08:00:42 +00:00
|
|
|
oldOnUnhandledRejection(event);
|
|
|
|
};
|
2016-04-06 16:52:31 +00:00
|
|
|
}
|
2016-11-16 21:02:32 +00:00
|
|
|
return JitsiMeetJS.init(
|
2017-09-01 19:14:03 +00:00
|
|
|
Object.assign({
|
|
|
|
enableAnalyticsLogging: isAnalyticsEnabled(APP.store)
|
|
|
|
},
|
|
|
|
config)
|
2016-11-16 21:02:32 +00:00
|
|
|
).then(() => {
|
2017-09-01 19:14:03 +00:00
|
|
|
initAnalytics(APP.store);
|
2017-07-17 11:38:46 +00:00
|
|
|
return this.createInitialLocalTracksAndConnect(
|
2017-07-18 10:25:37 +00:00
|
|
|
options.roomName, {
|
2017-07-11 13:06:58 +00:00
|
|
|
startAudioOnly: config.startAudioOnly,
|
2017-07-24 16:10:31 +00:00
|
|
|
startScreenSharing: config.startScreenSharing,
|
|
|
|
startWithAudioMuted: config.startWithAudioMuted,
|
|
|
|
startWithVideoMuted: config.startWithVideoMuted,
|
2017-07-18 10:25:37 +00:00
|
|
|
});
|
2016-10-06 18:21:54 +00:00
|
|
|
}).then(([tracks, con]) => {
|
2017-04-04 20:55:03 +00:00
|
|
|
tracks.forEach(track => {
|
2017-08-18 11:30:30 +00:00
|
|
|
if (track.isAudioTrack() && this.isLocalAudioMuted()) {
|
2017-07-20 12:29:15 +00:00
|
|
|
track.mute();
|
2017-08-18 11:30:30 +00:00
|
|
|
} else if (track.isVideoTrack()
|
|
|
|
&& this.isLocalVideoMuted()) {
|
2017-04-04 20:55:03 +00:00
|
|
|
track.mute();
|
|
|
|
}
|
|
|
|
});
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log('initialized with %s local tracks', tracks.length);
|
2017-07-21 09:12:33 +00:00
|
|
|
this._localTracksInitialized = true;
|
2017-01-31 20:58:48 +00:00
|
|
|
con.addEventListener(
|
|
|
|
ConnectionEvents.CONNECTION_FAILED,
|
|
|
|
_connectionFailedHandler);
|
2016-06-23 08:03:26 +00:00
|
|
|
APP.connection = connection = con;
|
2017-07-14 09:25:28 +00:00
|
|
|
|
|
|
|
// Desktop sharing related stuff:
|
|
|
|
this.isDesktopSharingDisabledByConfig
|
|
|
|
= config.disableDesktopSharing;
|
|
|
|
this.isDesktopSharingEnabled
|
|
|
|
= !this.isDesktopSharingDisabledByConfig
|
|
|
|
&& JitsiMeetJS.isDesktopSharingEnabled();
|
|
|
|
this.desktopSharingDisabledTooltip
|
|
|
|
= interfaceConfig.DESKTOP_SHARING_BUTTON_DISABLED_TOOLTIP;
|
2017-04-06 22:09:55 +00:00
|
|
|
eventEmitter.emit(
|
|
|
|
JitsiMeetConferenceEvents.DESKTOP_SHARING_ENABLED_CHANGED,
|
|
|
|
this.isDesktopSharingEnabled);
|
2017-02-16 23:02:40 +00:00
|
|
|
|
|
|
|
APP.store.dispatch(showDesktopSharingButton());
|
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
this._createRoom(tracks);
|
2017-04-17 19:59:24 +00:00
|
|
|
APP.remoteControl.init();
|
2016-06-23 08:03:26 +00:00
|
|
|
|
|
|
|
// if user didn't give access to mic or camera or doesn't have
|
2017-07-24 13:56:57 +00:00
|
|
|
// them at all, we mark corresponding toolbar buttons as muted,
|
|
|
|
// so that the user can try unmute later on and add audio/video
|
|
|
|
// to the conference
|
2016-06-23 08:03:26 +00:00
|
|
|
if (!tracks.find((t) => t.isAudioTrack())) {
|
2017-08-04 08:15:11 +00:00
|
|
|
this.setAudioMuteStatus(true);
|
2016-06-21 09:08:32 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
if (!tracks.find((t) => t.isVideoTrack())) {
|
2017-08-04 08:15:11 +00:00
|
|
|
this.setVideoMuteStatus(true);
|
2016-05-26 08:53:02 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
this._initDeviceList();
|
2016-05-17 15:58:25 +00:00
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
if (config.iAmRecorder)
|
|
|
|
this.recorder = new Recorder();
|
2016-05-17 15:58:25 +00:00
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
// XXX The API will take care of disconnecting from the XMPP
|
|
|
|
// server (and, thus, leaving the room) on unload.
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-04-13 00:23:43 +00:00
|
|
|
(new ConferenceConnector(resolve, reject)).connect();
|
2016-06-23 08:03:26 +00:00
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Check if id is id of the local user.
|
|
|
|
* @param {string} id id to check
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
isLocalId(id) {
|
2016-07-08 01:44:04 +00:00
|
|
|
return this.getMyUserId() === id;
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
2017-08-18 11:30:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells whether the local video is muted or not.
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
isLocalVideoMuted() {
|
|
|
|
// If the tracks are not ready, read from base/media state
|
|
|
|
return this._localTracksInitialized
|
|
|
|
? isLocalTrackMuted(
|
|
|
|
APP.store.getState()['features/base/tracks'],
|
|
|
|
MEDIA_TYPE.VIDEO)
|
|
|
|
: isVideoMutedByUser(APP.store);
|
|
|
|
},
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for audio mute. Used by shortcuts and API.
|
2017-07-25 10:05:08 +00:00
|
|
|
* @param {boolean} mute true for mute and false for unmute.
|
|
|
|
* @param {boolean} [showUI] when set to false will not display any error
|
|
|
|
* dialogs in case of media permissions error.
|
2016-01-06 22:39:13 +00:00
|
|
|
*/
|
2017-07-25 10:05:08 +00:00
|
|
|
muteAudio(mute, showUI = true) {
|
|
|
|
// Not ready to modify track's state yet
|
|
|
|
if (!this._localTracksInitialized) {
|
2017-08-18 11:30:30 +00:00
|
|
|
// This will only modify base/media.audio.muted which is then synced
|
|
|
|
// up with the track at the end of local tracks initialization.
|
|
|
|
muteLocalAudio(mute);
|
2017-08-04 08:15:11 +00:00
|
|
|
this.setAudioMuteStatus(mute);
|
2017-08-18 11:30:30 +00:00
|
|
|
|
2017-07-25 10:05:08 +00:00
|
|
|
return;
|
2017-08-18 11:30:30 +00:00
|
|
|
} else if (this.isLocalAudioMuted() === mute) {
|
2017-07-25 10:05:08 +00:00
|
|
|
// NO-OP
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
if (!this.localAudio && !mute) {
|
2017-08-14 13:25:37 +00:00
|
|
|
const maybeShowErrorDialog = error => {
|
|
|
|
showUI && APP.UI.showMicErrorNotification(error);
|
|
|
|
};
|
|
|
|
|
|
|
|
createLocalTracksF({ devices: ['audio'] }, false)
|
2017-07-25 10:05:08 +00:00
|
|
|
.then(([audioTrack]) => audioTrack)
|
|
|
|
.catch(error => {
|
2017-08-14 13:25:37 +00:00
|
|
|
maybeShowErrorDialog(error);
|
2017-07-25 10:05:08 +00:00
|
|
|
|
|
|
|
// Rollback the audio muted status by using null track
|
|
|
|
return null;
|
|
|
|
})
|
|
|
|
.then(audioTrack => this.useAudioStream(audioTrack));
|
|
|
|
} else {
|
2017-08-18 11:30:30 +00:00
|
|
|
muteLocalAudio(mute);
|
2017-07-25 10:05:08 +00:00
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
2016-02-09 16:29:50 +00:00
|
|
|
/**
|
|
|
|
* Returns whether local audio is muted or not.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
isLocalAudioMuted() {
|
2017-08-18 11:30:30 +00:00
|
|
|
// If the tracks are not ready, read from base/media state
|
|
|
|
return this._localTracksInitialized
|
|
|
|
? isLocalTrackMuted(
|
|
|
|
APP.store.getState()['features/base/tracks'],
|
|
|
|
MEDIA_TYPE.AUDIO)
|
|
|
|
: Boolean(
|
|
|
|
APP.store.getState()['features/base/media'].audio.muted);
|
2016-02-09 16:29:50 +00:00
|
|
|
},
|
2016-01-06 22:39:13 +00:00
|
|
|
/**
|
2017-04-04 20:55:03 +00:00
|
|
|
* Simulates toolbar button click for audio mute. Used by shortcuts
|
|
|
|
* and API.
|
2017-07-25 10:05:08 +00:00
|
|
|
* @param {boolean} [showUI] when set to false will not display any error
|
|
|
|
* dialogs in case of media permissions error.
|
2016-01-06 22:39:13 +00:00
|
|
|
*/
|
2017-07-25 10:05:08 +00:00
|
|
|
toggleAudioMuted(showUI = true) {
|
2017-08-18 11:30:30 +00:00
|
|
|
this.muteAudio(!this.isLocalAudioMuted(), showUI);
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for video mute. Used by shortcuts and API.
|
|
|
|
* @param mute true for mute and false for unmute.
|
2017-07-20 12:29:15 +00:00
|
|
|
* @param {boolean} [showUI] when set to false will not display any error
|
|
|
|
* dialogs in case of media permissions error.
|
2016-01-06 22:39:13 +00:00
|
|
|
*/
|
2017-07-20 12:29:15 +00:00
|
|
|
muteVideo(mute, showUI = true) {
|
2017-08-18 11:30:30 +00:00
|
|
|
// If not ready to modify track's state yet adjust the base/media
|
2017-07-21 09:12:33 +00:00
|
|
|
if (!this._localTracksInitialized) {
|
2017-08-18 11:30:30 +00:00
|
|
|
// This will only modify base/media.video.muted which is then synced
|
|
|
|
// up with the track at the end of local tracks initialization.
|
|
|
|
muteLocalVideo(mute);
|
2017-08-04 08:15:11 +00:00
|
|
|
this.setVideoMuteStatus(mute);
|
2017-07-21 09:12:33 +00:00
|
|
|
|
2017-07-24 15:36:19 +00:00
|
|
|
return;
|
2017-08-18 11:30:30 +00:00
|
|
|
} else if (this.isLocalVideoMuted() === mute) {
|
2017-07-24 15:36:19 +00:00
|
|
|
// NO-OP
|
2017-07-21 09:12:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
// FIXME it is possible to queue this task twice, but it's not causing
|
|
|
|
// any issues. Specifically this can happen when the previous
|
|
|
|
// get user media call is blocked on "ask user for permissions" dialog.
|
|
|
|
if (!this.localVideo && !mute) {
|
2017-08-14 13:25:37 +00:00
|
|
|
const maybeShowErrorDialog = error => {
|
|
|
|
showUI && APP.UI.showCameraErrorNotification(error);
|
|
|
|
};
|
|
|
|
|
2017-07-20 12:29:15 +00:00
|
|
|
// Try to create local video if there wasn't any.
|
|
|
|
// This handles the case when user joined with no video
|
|
|
|
// (dismissed screen sharing screen or in audio only mode), but
|
|
|
|
// decided to add it later on by clicking on muted video icon or
|
|
|
|
// turning off the audio only mode.
|
|
|
|
//
|
|
|
|
// FIXME when local track creation is moved to react/redux
|
|
|
|
// it should take care of the use case described above
|
2017-08-14 13:25:37 +00:00
|
|
|
createLocalTracksF({ devices: ['video'] }, false)
|
2017-07-20 12:29:15 +00:00
|
|
|
.then(([videoTrack]) => videoTrack)
|
|
|
|
.catch(error => {
|
|
|
|
// FIXME should send some feedback to the API on error ?
|
2017-07-24 09:20:32 +00:00
|
|
|
maybeShowErrorDialog(error);
|
|
|
|
|
2017-07-20 12:29:15 +00:00
|
|
|
// Rollback the video muted status by using null track
|
|
|
|
return null;
|
|
|
|
})
|
|
|
|
.then(videoTrack => this.useVideoStream(videoTrack));
|
|
|
|
} else {
|
2017-08-18 11:30:30 +00:00
|
|
|
// FIXME show error dialog if it fails (should be handled by react)
|
|
|
|
muteLocalVideo(mute);
|
2017-07-20 12:29:15 +00:00
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for video mute. Used by shortcuts and API.
|
2017-07-20 12:29:15 +00:00
|
|
|
* @param {boolean} [showUI] when set to false will not display any error
|
|
|
|
* dialogs in case of media permissions error.
|
2016-01-06 22:39:13 +00:00
|
|
|
*/
|
2017-07-20 12:29:15 +00:00
|
|
|
toggleVideoMuted(showUI = true) {
|
2017-08-18 11:30:30 +00:00
|
|
|
this.muteVideo(!this.isLocalVideoMuted(), showUI);
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Retrieve list of conference participants (without local user).
|
|
|
|
* @returns {JitsiParticipant[]}
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
listMembers() {
|
2016-01-06 22:39:13 +00:00
|
|
|
return room.getParticipants();
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Retrieve list of ids of conference participants (without local user).
|
|
|
|
* @returns {string[]}
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
listMembersIds() {
|
2016-01-06 22:39:13 +00:00
|
|
|
return room.getParticipants().map(p => p.getId());
|
|
|
|
},
|
2016-03-24 20:25:26 +00:00
|
|
|
/**
|
|
|
|
* Checks whether the participant identified by id is a moderator.
|
|
|
|
* @id id to search for participant
|
|
|
|
* @return {boolean} whether the participant is moderator
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
isParticipantModerator(id) {
|
2016-03-24 20:25:26 +00:00
|
|
|
let user = room.getParticipantById(id);
|
|
|
|
return user && user.isModerator();
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Check if SIP is supported.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
sipGatewayEnabled() {
|
2016-01-06 22:39:13 +00:00
|
|
|
return room.isSIPCallingSupported();
|
|
|
|
},
|
2017-04-11 19:40:03 +00:00
|
|
|
get membersCount() {
|
2015-12-31 15:23:23 +00:00
|
|
|
return room.getParticipants().length + 1;
|
|
|
|
},
|
2016-01-20 21:41:37 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the callstats integration is enabled, otherwise returns
|
|
|
|
* false.
|
|
|
|
*
|
|
|
|
* @returns true if the callstats integration is enabled, otherwise returns
|
|
|
|
* false.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
isCallstatsEnabled() {
|
2017-02-06 13:32:05 +00:00
|
|
|
return room && room.isCallstatsEnabled();
|
2016-01-20 21:41:37 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Sends the given feedback through CallStats if enabled.
|
|
|
|
*
|
|
|
|
* @param overallFeedback an integer between 1 and 5 indicating the
|
|
|
|
* user feedback
|
|
|
|
* @param detailedFeedback detailed feedback from the user. Not yet used
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
sendFeedback(overallFeedback, detailedFeedback) {
|
2016-01-20 21:41:37 +00:00
|
|
|
return room.sendFeedback (overallFeedback, detailedFeedback);
|
|
|
|
},
|
2017-02-17 00:59:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get speaker stats that track total dominant speaker time.
|
|
|
|
*
|
|
|
|
* @returns {object} A hash with keys being user ids and values being the
|
|
|
|
* library's SpeakerStats model used for calculating time as dominant
|
|
|
|
* speaker.
|
|
|
|
*/
|
|
|
|
getSpeakerStats() {
|
|
|
|
return room.getSpeakerStats();
|
|
|
|
},
|
|
|
|
|
2016-08-03 16:08:23 +00:00
|
|
|
/**
|
|
|
|
* Returns the connection times stored in the library.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
getConnectionTimes() {
|
2016-08-03 16:08:23 +00:00
|
|
|
return this._room.getConnectionTimes();
|
|
|
|
},
|
2016-01-06 22:39:13 +00:00
|
|
|
// used by torture currently
|
2017-04-11 19:40:03 +00:00
|
|
|
isJoined() {
|
2016-01-06 22:39:13 +00:00
|
|
|
return this._room
|
|
|
|
&& this._room.isJoined();
|
|
|
|
},
|
2017-04-11 19:40:03 +00:00
|
|
|
getConnectionState() {
|
2016-01-06 22:39:13 +00:00
|
|
|
return this._room
|
|
|
|
&& this._room.getConnectionState();
|
|
|
|
},
|
2017-02-15 21:19:52 +00:00
|
|
|
/**
|
|
|
|
* Obtains current P2P ICE connection state.
|
|
|
|
* @return {string|null} ICE connection state or <tt>null</tt> if there's no
|
|
|
|
* P2P connection
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
getP2PConnectionState() {
|
2017-02-15 21:19:52 +00:00
|
|
|
return this._room
|
|
|
|
&& this._room.getP2PConnectionState();
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Starts P2P (for tests only)
|
|
|
|
* @private
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
_startP2P() {
|
2017-02-15 21:19:52 +00:00
|
|
|
try {
|
|
|
|
this._room && this._room.startP2PSession();
|
|
|
|
} catch (error) {
|
|
|
|
logger.error("Start P2P failed", error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Stops P2P (for tests only)
|
|
|
|
* @private
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
_stopP2P() {
|
2017-02-15 21:19:52 +00:00
|
|
|
try {
|
|
|
|
this._room && this._room.stopP2PSession();
|
|
|
|
} catch (error) {
|
|
|
|
logger.error("Stop P2P failed", error);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
},
|
2016-07-28 16:09:22 +00:00
|
|
|
/**
|
|
|
|
* Checks whether or not our connection is currently in interrupted and
|
|
|
|
* reconnect attempts are in progress.
|
|
|
|
*
|
|
|
|
* @returns {boolean} true if the connection is in interrupted state or
|
|
|
|
* false otherwise.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
isConnectionInterrupted() {
|
2016-10-27 18:25:01 +00:00
|
|
|
return this._room.isConnectionInterrupted();
|
2016-07-28 16:09:22 +00:00
|
|
|
},
|
2016-09-16 20:40:24 +00:00
|
|
|
/**
|
|
|
|
* Finds JitsiParticipant for given id.
|
|
|
|
*
|
|
|
|
* @param {string} id participant's identifier(MUC nickname).
|
|
|
|
*
|
|
|
|
* @returns {JitsiParticipant|null} participant instance for given id or
|
|
|
|
* null if not found.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
getParticipantById(id) {
|
2016-09-16 20:40:24 +00:00
|
|
|
return room ? room.getParticipantById(id) : null;
|
|
|
|
},
|
|
|
|
/**
|
2017-04-03 16:53:04 +00:00
|
|
|
* Get participant connection status for the participant.
|
2016-09-16 20:40:24 +00:00
|
|
|
*
|
|
|
|
* @param {string} id participant's identifier(MUC nickname)
|
|
|
|
*
|
2017-04-03 16:53:04 +00:00
|
|
|
* @returns {ParticipantConnectionStatus|null} the status of the participant
|
|
|
|
* or null if no such participant is found or participant is the local user.
|
2016-09-16 20:40:24 +00:00
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
getParticipantConnectionStatus(id) {
|
2016-09-16 20:40:24 +00:00
|
|
|
let participant = this.getParticipantById(id);
|
2017-04-11 19:40:03 +00:00
|
|
|
return participant ? participant.getConnectionStatus() : null;
|
2016-09-16 20:40:24 +00:00
|
|
|
},
|
2016-09-24 16:46:19 +00:00
|
|
|
/**
|
|
|
|
* Gets the display name foe the <tt>JitsiParticipant</tt> identified by
|
|
|
|
* the given <tt>id</tt>.
|
|
|
|
*
|
|
|
|
* @param id {string} the participant's id(MUC nickname/JVB endpoint id)
|
|
|
|
*
|
|
|
|
* @return {string} the participant's display name or the default string if
|
|
|
|
* absent.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
getParticipantDisplayName(id) {
|
2016-09-24 16:46:19 +00:00
|
|
|
let displayName = getDisplayName(id);
|
|
|
|
if (displayName) {
|
|
|
|
return displayName;
|
|
|
|
} else {
|
|
|
|
if (APP.conference.isLocalId(id)) {
|
|
|
|
return APP.translation.generateTranslationHTML(
|
|
|
|
interfaceConfig.DEFAULT_LOCAL_DISPLAY_NAME);
|
|
|
|
} else {
|
|
|
|
return interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-04-11 19:40:03 +00:00
|
|
|
getMyUserId() {
|
2016-01-06 22:39:13 +00:00
|
|
|
return this._room
|
|
|
|
&& this._room.myUserId();
|
|
|
|
},
|
2016-05-03 20:05:09 +00:00
|
|
|
/**
|
|
|
|
* Indicates if recording is supported in this conference.
|
|
|
|
*/
|
|
|
|
isRecordingSupported() {
|
|
|
|
return this._room && this._room.isRecordingSupported();
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Returns the recording state or undefined if the room is not defined.
|
|
|
|
*/
|
|
|
|
getRecordingState() {
|
|
|
|
return (this._room) ? this._room.getRecordingState() : undefined;
|
|
|
|
},
|
2016-01-19 19:32:29 +00:00
|
|
|
/**
|
|
|
|
* Will be filled with values only when config.debug is enabled.
|
|
|
|
* Its used by torture to check audio levels.
|
|
|
|
*/
|
|
|
|
audioLevelsMap: {},
|
2016-02-02 20:54:15 +00:00
|
|
|
/**
|
|
|
|
* Returns the stored audio level (stored only if config.debug is enabled)
|
|
|
|
* @param id the id for the user audio level to return (the id value is
|
|
|
|
* returned for the participant using getMyUserId() method)
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
getPeerSSRCAudioLevel(id) {
|
2016-01-19 19:32:29 +00:00
|
|
|
return this.audioLevelsMap[id];
|
|
|
|
},
|
2016-01-14 19:50:10 +00:00
|
|
|
/**
|
2016-04-21 22:48:30 +00:00
|
|
|
* @return {number} the number of participants in the conference with at
|
|
|
|
* least one track.
|
2016-01-14 19:50:10 +00:00
|
|
|
*/
|
2016-04-21 22:48:30 +00:00
|
|
|
getNumberOfParticipantsWithTracks() {
|
|
|
|
return this._room.getParticipants()
|
|
|
|
.filter((p) => p.getTracks().length > 0)
|
|
|
|
.length;
|
2016-01-14 19:50:10 +00:00
|
|
|
},
|
2016-02-04 18:41:23 +00:00
|
|
|
/**
|
|
|
|
* Returns the stats.
|
|
|
|
*/
|
|
|
|
getStats() {
|
2016-10-26 19:29:40 +00:00
|
|
|
return room.connectionQuality.getStats();
|
2016-02-04 18:41:23 +00:00
|
|
|
},
|
2016-01-14 19:50:10 +00:00
|
|
|
// end used by torture
|
|
|
|
|
2017-04-11 19:40:03 +00:00
|
|
|
getLogs() {
|
2016-01-14 15:35:37 +00:00
|
|
|
return room.getLogs();
|
|
|
|
},
|
2016-03-11 10:49:13 +00:00
|
|
|
|
2016-09-21 20:46:10 +00:00
|
|
|
/**
|
|
|
|
* Download logs, a function that can be called from console while
|
|
|
|
* debugging.
|
|
|
|
* @param filename (optional) specify target filename
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
saveLogs(filename = 'meetlog.json') {
|
2016-09-21 20:46:10 +00:00
|
|
|
// this can be called from console and will not have reference to this
|
|
|
|
// that's why we reference the global var
|
|
|
|
let logs = APP.conference.getLogs();
|
|
|
|
let data = encodeURIComponent(JSON.stringify(logs, null, ' '));
|
|
|
|
|
|
|
|
let elem = document.createElement('a');
|
|
|
|
|
|
|
|
elem.download = filename;
|
|
|
|
elem.href = 'data:application/json;charset=utf-8,\n' + data;
|
|
|
|
elem.dataset.downloadurl
|
|
|
|
= ['text/json', elem.download, elem.href].join(':');
|
|
|
|
elem.dispatchEvent(new MouseEvent('click', {
|
|
|
|
view: window,
|
|
|
|
bubbles: true,
|
|
|
|
cancelable: false
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
|
2016-03-11 10:49:13 +00:00
|
|
|
/**
|
|
|
|
* Exposes a Command(s) API on this instance. It is necessitated by (1) the
|
|
|
|
* desire to keep room private to this instance and (2) the need of other
|
|
|
|
* modules to send and receive commands to and from participants.
|
|
|
|
* Eventually, this instance remains in control with respect to the
|
|
|
|
* decision whether the Command(s) API of room (i.e. lib-jitsi-meet's
|
|
|
|
* JitsiConference) is to be used in the implementation of the Command(s)
|
|
|
|
* API of this instance.
|
|
|
|
*/
|
|
|
|
commands: {
|
2016-04-07 17:08:00 +00:00
|
|
|
/**
|
|
|
|
* Known custom conference commands.
|
|
|
|
*/
|
2016-06-13 21:11:44 +00:00
|
|
|
defaults: commands,
|
2016-03-11 10:49:13 +00:00
|
|
|
/**
|
|
|
|
* Receives notifications from other participants about commands aka
|
|
|
|
* custom events (sent by sendCommand or sendCommandOnce methods).
|
|
|
|
* @param command {String} the name of the command
|
|
|
|
* @param handler {Function} handler for the command
|
|
|
|
*/
|
2016-05-05 16:14:27 +00:00
|
|
|
addCommandListener () {
|
2016-03-11 10:49:13 +00:00
|
|
|
room.addCommandListener.apply(room, arguments);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Removes command.
|
|
|
|
* @param name {String} the name of the command.
|
|
|
|
*/
|
2016-05-05 16:14:27 +00:00
|
|
|
removeCommand () {
|
2016-03-11 10:49:13 +00:00
|
|
|
room.removeCommand.apply(room, arguments);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Sends command.
|
|
|
|
* @param name {String} the name of the command.
|
|
|
|
* @param values {Object} with keys and values that will be sent.
|
|
|
|
*/
|
2016-05-05 16:14:27 +00:00
|
|
|
sendCommand () {
|
2016-03-11 10:49:13 +00:00
|
|
|
room.sendCommand.apply(room, arguments);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Sends command one time.
|
|
|
|
* @param name {String} the name of the command.
|
|
|
|
* @param values {Object} with keys and values that will be sent.
|
|
|
|
*/
|
2016-05-05 16:14:27 +00:00
|
|
|
sendCommandOnce () {
|
2016-03-11 10:49:13 +00:00
|
|
|
room.sendCommandOnce.apply(room, arguments);
|
2016-04-07 17:08:00 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_createRoom (localTracks) {
|
|
|
|
room = connection.initJitsiConference(APP.conference.roomName,
|
|
|
|
this._getConferenceOptions());
|
2016-06-13 11:49:00 +00:00
|
|
|
this._setLocalAudioVideoStreams(localTracks);
|
2016-04-07 17:08:00 +00:00
|
|
|
this._room = room; // FIXME do not use this
|
|
|
|
|
2017-02-27 21:42:28 +00:00
|
|
|
_setupLocalParticipantProperties();
|
2016-04-07 17:08:00 +00:00
|
|
|
|
|
|
|
this._setupListeners();
|
2016-03-11 10:49:13 +00:00
|
|
|
},
|
|
|
|
|
2016-06-13 11:49:00 +00:00
|
|
|
/**
|
|
|
|
* Sets local video and audio streams.
|
|
|
|
* @param {JitsiLocalTrack[]} tracks=[]
|
|
|
|
* @returns {Promise[]}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_setLocalAudioVideoStreams(tracks = []) {
|
|
|
|
return tracks.map(track => {
|
|
|
|
if (track.isAudioTrack()) {
|
|
|
|
return this.useAudioStream(track);
|
|
|
|
} else if (track.isVideoTrack()) {
|
|
|
|
return this.useVideoStream(track);
|
|
|
|
} else {
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.error(
|
2016-06-13 11:49:00 +00:00
|
|
|
"Ignored not an audio nor a video track: ", track);
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
_getConferenceOptions() {
|
2016-01-19 19:32:29 +00:00
|
|
|
let options = config;
|
2017-08-18 11:30:30 +00:00
|
|
|
if (config.enableRecording && !config.recordingType) {
|
2016-01-06 22:39:13 +00:00
|
|
|
options.recordingType = (config.hosts &&
|
|
|
|
(typeof config.hosts.jirecon != "undefined"))?
|
|
|
|
"jirecon" : "colibri";
|
|
|
|
}
|
|
|
|
return options;
|
|
|
|
},
|
2016-02-04 15:25:11 +00:00
|
|
|
|
2016-05-26 08:53:02 +00:00
|
|
|
|
2017-04-11 19:40:03 +00:00
|
|
|
/**
|
|
|
|
* Start using provided video stream.
|
|
|
|
* Stops previous video stream.
|
|
|
|
* @param {JitsiLocalTrack} [stream] new stream to use or null
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
useVideoStream(newStream) {
|
2017-06-20 20:09:34 +00:00
|
|
|
return APP.store.dispatch(
|
2017-08-18 11:30:30 +00:00
|
|
|
replaceLocalTrack(this.localVideo, newStream, room))
|
2017-01-19 18:46:11 +00:00
|
|
|
.then(() => {
|
2017-08-18 11:30:30 +00:00
|
|
|
this.localVideo = newStream;
|
|
|
|
|
2017-01-19 18:46:11 +00:00
|
|
|
if (newStream) {
|
|
|
|
this.isSharingScreen = newStream.videoType === 'desktop';
|
2016-02-09 10:19:43 +00:00
|
|
|
|
2017-01-19 18:46:11 +00:00
|
|
|
APP.UI.addLocalStream(newStream);
|
|
|
|
} else {
|
|
|
|
this.isSharingScreen = false;
|
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
this.setVideoMuteStatus(this.isLocalVideoMuted());
|
2017-01-19 18:46:11 +00:00
|
|
|
APP.UI.updateDesktopSharingButtons();
|
|
|
|
});
|
2016-02-09 10:19:43 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start using provided audio stream.
|
|
|
|
* Stops previous audio stream.
|
|
|
|
* @param {JitsiLocalTrack} [stream] new stream to use or null
|
2016-02-16 13:33:53 +00:00
|
|
|
* @returns {Promise}
|
2016-02-09 10:19:43 +00:00
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
useAudioStream(newStream) {
|
2017-06-20 20:09:34 +00:00
|
|
|
return APP.store.dispatch(
|
2017-08-18 11:30:30 +00:00
|
|
|
replaceLocalTrack(this.localAudio, newStream, room))
|
2017-01-19 18:46:11 +00:00
|
|
|
.then(() => {
|
2017-08-18 11:30:30 +00:00
|
|
|
this.localAudio = newStream;
|
2017-01-19 18:46:11 +00:00
|
|
|
if (newStream) {
|
|
|
|
APP.UI.addLocalStream(newStream);
|
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
this.setAudioMuteStatus(this.isLocalAudioMuted());
|
2017-01-19 18:46:11 +00:00
|
|
|
});
|
2016-02-09 10:19:43 +00:00
|
|
|
},
|
|
|
|
|
2017-04-05 15:14:26 +00:00
|
|
|
/**
|
|
|
|
* Triggers a tooltip to display when a feature was attempted to be used
|
|
|
|
* while in audio only mode.
|
|
|
|
*
|
|
|
|
* @param {string} featureName - The name of the feature that attempted to
|
|
|
|
* toggle.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_displayAudioOnlyTooltip(featureName) {
|
2017-08-15 23:52:42 +00:00
|
|
|
let buttonName = null;
|
2017-04-05 15:14:26 +00:00
|
|
|
let tooltipElementId = null;
|
|
|
|
|
|
|
|
switch (featureName) {
|
|
|
|
case 'screenShare':
|
2017-08-15 23:52:42 +00:00
|
|
|
buttonName = 'desktop';
|
|
|
|
tooltipElementId = 'screenshareWhileAudioOnly';
|
2017-04-05 15:14:26 +00:00
|
|
|
break;
|
|
|
|
case 'videoMute':
|
2017-08-15 23:52:42 +00:00
|
|
|
buttonName = 'camera';
|
|
|
|
tooltipElementId = 'unmuteWhileAudioOnly';
|
2017-04-05 15:14:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tooltipElementId) {
|
|
|
|
APP.UI.showToolbar(6000);
|
|
|
|
APP.UI.showCustomToolbarPopup(
|
2017-08-15 23:52:42 +00:00
|
|
|
buttonName, tooltipElementId, true, 5000);
|
2017-04-05 15:14:26 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not the conference is currently in audio only mode.
|
|
|
|
*
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
isAudioOnly() {
|
|
|
|
return Boolean(
|
|
|
|
APP.store.getState()['features/base/conference'].audioOnly);
|
|
|
|
},
|
2017-03-29 17:43:30 +00:00
|
|
|
|
2016-02-04 15:25:11 +00:00
|
|
|
videoSwitchInProgress: false,
|
2017-06-13 19:24:34 +00:00
|
|
|
|
2017-06-20 14:52:44 +00:00
|
|
|
/**
|
|
|
|
* This fields stores a handler which will create a Promise which turns off
|
|
|
|
* the screen sharing and restores the previous video state (was there
|
|
|
|
* any video, before switching to screen sharing ? was it muted ?).
|
|
|
|
*
|
|
|
|
* Once called this fields is cleared to <tt>null</tt>.
|
|
|
|
* @type {Function|null}
|
|
|
|
*/
|
|
|
|
_untoggleScreenSharing: null,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a Promise which turns off the screen sharing and restores
|
|
|
|
* the previous state described by the arguments.
|
|
|
|
*
|
|
|
|
* This method is bound to the appropriate values, after switching to screen
|
|
|
|
* sharing and stored in {@link _untoggleScreenSharing}.
|
|
|
|
*
|
|
|
|
* @param {boolean} didHaveVideo indicates if there was a camera video being
|
|
|
|
* used, before switching to screen sharing.
|
|
|
|
* @param {boolean} wasVideoMuted indicates if the video was muted, before
|
|
|
|
* switching to screen sharing.
|
|
|
|
* @return {Promise} resolved after the screen sharing is turned off, or
|
|
|
|
* rejected with some error (no idea what kind of error, possible GUM error)
|
|
|
|
* in case it fails.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_turnScreenSharingOff(didHaveVideo, wasVideoMuted) {
|
|
|
|
this._untoggleScreenSharing = null;
|
|
|
|
this.videoSwitchInProgress = true;
|
|
|
|
APP.remoteControl.receiver.stop();
|
|
|
|
let promise = null;
|
|
|
|
|
|
|
|
if (didHaveVideo) {
|
2017-08-14 13:25:37 +00:00
|
|
|
promise = createLocalTracksF({ devices: ['video'] })
|
2017-06-20 14:52:44 +00:00
|
|
|
.then(([stream]) => this.useVideoStream(stream))
|
|
|
|
.then(() => {
|
|
|
|
JitsiMeetJS.analytics.sendEvent(
|
|
|
|
'conference.sharingDesktop.stop');
|
|
|
|
logger.log('switched back to local video');
|
2017-08-18 11:30:30 +00:00
|
|
|
if (!this.localVideo && wasVideoMuted) {
|
2017-06-20 14:52:44 +00:00
|
|
|
return Promise.reject('No local video to be muted!');
|
2017-08-18 11:30:30 +00:00
|
|
|
} else if (wasVideoMuted && this.localVideo) {
|
|
|
|
return this.localVideo.mute();
|
2017-06-20 14:52:44 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
logger.error('failed to switch back to local video', error);
|
|
|
|
return this.useVideoStream(null).then(() => {
|
|
|
|
// Still fail with the original err
|
|
|
|
return Promise.reject(error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
promise = this.useVideoStream(null);
|
|
|
|
}
|
|
|
|
return promise.then(
|
|
|
|
() => {
|
|
|
|
this.videoSwitchInProgress = false;
|
|
|
|
},
|
|
|
|
error => {
|
|
|
|
this.videoSwitchInProgress = false;
|
|
|
|
throw error;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-06-13 19:24:34 +00:00
|
|
|
/**
|
2017-08-07 08:23:05 +00:00
|
|
|
* Toggles between screen sharing and camera video if the toggle parameter
|
|
|
|
* is not specified and starts the procedure for obtaining new screen
|
|
|
|
* sharing/video track otherwise.
|
|
|
|
*
|
|
|
|
* @param {boolean} [toggle] - If true - new screen sharing track will be
|
|
|
|
* obtained. If false - new video track will be obtain. If not specified -
|
|
|
|
* toggles between screen sharing and camera video.
|
2017-07-09 21:34:08 +00:00
|
|
|
* @param {Object} [options] - Screen sharing options that will be passed to
|
|
|
|
* createLocalTracks.
|
|
|
|
* @param {Array<string>} [options.desktopSharingSources] - Array with the
|
|
|
|
* sources that have to be displayed in the desktop picker window ('screen',
|
|
|
|
* 'window', etc.).
|
2017-06-13 19:24:34 +00:00
|
|
|
* @return {Promise.<T>}
|
|
|
|
*/
|
2017-08-07 08:23:05 +00:00
|
|
|
toggleScreenSharing(toggle = !this._untoggleScreenSharing, options = {}) {
|
2016-02-04 15:25:11 +00:00
|
|
|
if (this.videoSwitchInProgress) {
|
2017-06-13 19:24:34 +00:00
|
|
|
return Promise.reject('Switch in progress.');
|
2016-02-04 15:25:11 +00:00
|
|
|
}
|
|
|
|
if (!this.isDesktopSharingEnabled) {
|
2017-06-13 19:24:34 +00:00
|
|
|
return Promise.reject(
|
|
|
|
'Cannot toggle screen sharing: not supported.');
|
2016-02-04 15:25:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-05 15:14:26 +00:00
|
|
|
if (this.isAudioOnly()) {
|
|
|
|
this._displayAudioOnlyTooltip('screenShare');
|
2017-06-13 19:24:34 +00:00
|
|
|
|
|
|
|
return Promise.reject('No screensharing in audio only mode');
|
2017-04-05 15:14:26 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 08:23:05 +00:00
|
|
|
if (toggle) {
|
2017-06-29 17:43:35 +00:00
|
|
|
return this._switchToScreenSharing(options);
|
|
|
|
} else {
|
|
|
|
return this._untoggleScreenSharing();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates desktop (screensharing) {@link JitsiLocalTrack}
|
|
|
|
* @param {Object} [options] - Screen sharing options that will be passed to
|
|
|
|
* createLocalTracks.
|
|
|
|
*
|
|
|
|
* @return {Promise.<JitsiLocalTrack>} - A Promise resolved with
|
|
|
|
* {@link JitsiLocalTrack} for the screensharing or rejected with
|
|
|
|
* {@link JitsiTrackError}.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_createDesktopTrack(options = {}) {
|
|
|
|
let externalInstallation = false;
|
|
|
|
let DSExternalInstallationInProgress = false;
|
2017-08-18 11:30:30 +00:00
|
|
|
const didHaveVideo = Boolean(this.localVideo);
|
|
|
|
const wasVideoMuted = this.isLocalVideoMuted();
|
2017-06-29 17:43:35 +00:00
|
|
|
|
2017-08-14 13:25:37 +00:00
|
|
|
return createLocalTracksF({
|
2017-06-29 17:43:35 +00:00
|
|
|
desktopSharingSources: options.desktopSharingSources,
|
|
|
|
devices: ['desktop'],
|
|
|
|
desktopSharingExtensionExternalInstallation: {
|
|
|
|
interval: 500,
|
2017-07-18 21:43:58 +00:00
|
|
|
checkAgain: () => DSExternalInstallationInProgress,
|
2017-06-29 17:43:35 +00:00
|
|
|
listener: (status, url) => {
|
|
|
|
switch(status) {
|
2017-07-18 21:43:58 +00:00
|
|
|
case "waitingForExtension": {
|
|
|
|
DSExternalInstallationInProgress = true;
|
|
|
|
externalInstallation = true;
|
|
|
|
const listener = () => {
|
|
|
|
// Wait a little bit more just to be sure that we
|
|
|
|
// won't miss the extension installation
|
|
|
|
setTimeout(
|
|
|
|
() => {
|
2017-06-29 17:43:35 +00:00
|
|
|
DSExternalInstallationInProgress = false;
|
2017-07-18 21:43:58 +00:00
|
|
|
},
|
|
|
|
500);
|
|
|
|
APP.UI.removeListener(
|
2017-06-29 17:43:35 +00:00
|
|
|
UIEvents.EXTERNAL_INSTALLATION_CANCELED,
|
|
|
|
listener);
|
2017-07-18 21:43:58 +00:00
|
|
|
};
|
|
|
|
APP.UI.addListener(
|
|
|
|
UIEvents.EXTERNAL_INSTALLATION_CANCELED,
|
|
|
|
listener);
|
|
|
|
APP.UI.showExtensionExternalInstallationDialog(url);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case "extensionFound":
|
|
|
|
// Close the dialog.
|
|
|
|
externalInstallation && $.prompt.close();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Unknown status
|
2016-08-10 19:13:32 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
}
|
2017-07-18 10:28:27 +00:00
|
|
|
}).then(([desktopStream]) => {
|
2017-06-29 17:43:35 +00:00
|
|
|
// Stores the "untoggle" handler which remembers whether was
|
|
|
|
// there any video before and whether was it muted.
|
|
|
|
this._untoggleScreenSharing
|
|
|
|
= this._turnScreenSharingOff
|
|
|
|
.bind(this, didHaveVideo, wasVideoMuted);
|
|
|
|
desktopStream.on(
|
|
|
|
TrackEvents.LOCAL_TRACK_STOPPED,
|
|
|
|
() => {
|
|
|
|
// If the stream was stopped during screen sharing
|
|
|
|
// session then we should switch back to video.
|
2017-07-18 21:43:58 +00:00
|
|
|
this.isSharingScreen
|
|
|
|
&& this._untoggleScreenSharing
|
|
|
|
&& this._untoggleScreenSharing();
|
2016-05-25 12:04:48 +00:00
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
);
|
|
|
|
// close external installation dialog on success.
|
2017-07-18 21:43:58 +00:00
|
|
|
externalInstallation && $.prompt.close();
|
2017-06-29 17:43:35 +00:00
|
|
|
return desktopStream;
|
|
|
|
}, error => {
|
|
|
|
DSExternalInstallationInProgress = false;
|
|
|
|
// close external installation dialog on success.
|
2017-07-18 21:43:58 +00:00
|
|
|
externalInstallation && $.prompt.close();
|
2017-06-29 17:43:35 +00:00
|
|
|
throw error;
|
|
|
|
});
|
|
|
|
},
|
2016-03-04 21:21:07 +00:00
|
|
|
|
2017-06-29 17:43:35 +00:00
|
|
|
/**
|
|
|
|
* Tries to switch to the screenshairng mode by disposing camera stream and
|
|
|
|
* replacing it with a desktop one.
|
|
|
|
*
|
|
|
|
* @param {Object} [options] - Screen sharing options that will be passed to
|
|
|
|
* createLocalTracks.
|
|
|
|
*
|
|
|
|
* @return {Promise} - A Promise resolved if the operation succeeds or
|
|
|
|
* rejected with some unknown type of error in case it fails. Promise will
|
|
|
|
* be rejected immediately if {@link videoSwitchInProgress} is true.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_switchToScreenSharing(options = {}) {
|
|
|
|
if (this.videoSwitchInProgress) {
|
|
|
|
return Promise.reject('Switch in progress.');
|
|
|
|
}
|
2017-07-10 03:42:35 +00:00
|
|
|
|
2017-06-29 17:43:35 +00:00
|
|
|
this.videoSwitchInProgress = true;
|
|
|
|
return this._createDesktopTrack(options).then(stream => {
|
|
|
|
return this.useVideoStream(stream);
|
|
|
|
}).then(() => {
|
|
|
|
this.videoSwitchInProgress = false;
|
|
|
|
JitsiMeetJS.analytics.sendEvent('conference.sharingDesktop.start');
|
|
|
|
logger.log('sharing local desktop');
|
|
|
|
}).catch(error => {
|
|
|
|
this.videoSwitchInProgress = false;
|
|
|
|
// Pawel: With this call I'm trying to preserve the original
|
|
|
|
// behaviour although it is not clear why would we "untoggle"
|
|
|
|
// on failure. I suppose it was to restore video in case there
|
|
|
|
// was some problem during "this.useVideoStream(desktopStream)".
|
|
|
|
// It's important to note that the handler will not be available
|
|
|
|
// if we fail early on trying to get desktop media (which makes
|
|
|
|
// sense, because the camera video is still being used, so
|
|
|
|
// nothing to "untoggle").
|
|
|
|
if (this._untoggleScreenSharing) {
|
|
|
|
this._untoggleScreenSharing();
|
|
|
|
}
|
2016-03-04 21:20:05 +00:00
|
|
|
|
2017-06-29 17:43:35 +00:00
|
|
|
// FIXME the code inside of _handleScreenSharingError is
|
|
|
|
// asynchronous, but does not return a Promise and is not part of
|
|
|
|
// the current Promise chain.
|
|
|
|
this._handleScreenSharingError(error);
|
2017-08-21 08:57:58 +00:00
|
|
|
|
|
|
|
return Promise.reject(error);
|
2017-06-29 17:43:35 +00:00
|
|
|
});
|
|
|
|
},
|
2016-03-04 21:55:44 +00:00
|
|
|
|
2017-06-29 17:43:35 +00:00
|
|
|
/**
|
|
|
|
* Handles {@link JitsiTrackError} returned by the lib-jitsi-meet when
|
|
|
|
* trying to create screensharing track. It will either do nothing if
|
|
|
|
* the dialog was canceled on user's request or display inline installation
|
|
|
|
* dialog and ask the user to install the extension, once the extension is
|
|
|
|
* installed it will switch the conference to screensharing. The last option
|
|
|
|
* is that an unrecoverable error dialog will be displayed.
|
|
|
|
* @param {JitsiTrackError} error - The error returned by
|
|
|
|
* {@link _createDesktopTrack} Promise.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_handleScreenSharingError(error) {
|
|
|
|
if (error.name === TrackErrors.CHROME_EXTENSION_USER_CANCELED) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.error('failed to share local desktop', error);
|
|
|
|
|
|
|
|
if (error.name === TrackErrors.CHROME_EXTENSION_USER_GESTURE_REQUIRED) {
|
|
|
|
// If start with screen sharing the extension will fail to install
|
|
|
|
// (if not found), because the request has been triggered by the
|
|
|
|
// script. Show a dialog which asks user to click "install" and try
|
|
|
|
// again switching to the screen sharing.
|
|
|
|
APP.UI.showExtensionInlineInstallationDialog(
|
|
|
|
() => {
|
2017-08-21 08:57:58 +00:00
|
|
|
this.toggleScreenSharing().catch(() => {});
|
2016-05-27 15:49:26 +00:00
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
);
|
2016-05-26 08:53:02 +00:00
|
|
|
|
2017-06-29 17:43:35 +00:00
|
|
|
return;
|
|
|
|
} else if (error.name === TrackErrors.FIREFOX_EXTENSION_NEEDED) {
|
|
|
|
APP.UI.showExtensionRequiredDialog(
|
|
|
|
config.desktopSharingFirefoxExtensionURL
|
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handling:
|
|
|
|
// TrackErrors.PERMISSION_DENIED
|
|
|
|
// TrackErrors.CHROME_EXTENSION_INSTALLATION_ERROR
|
|
|
|
// TrackErrors.GENERAL
|
|
|
|
// and any other
|
|
|
|
let dialogTxt;
|
|
|
|
let dialogTitleKey;
|
|
|
|
|
|
|
|
if (error.name === TrackErrors.PERMISSION_DENIED) {
|
|
|
|
dialogTxt = APP.translation.generateTranslationHTML(
|
|
|
|
"dialog.screenSharingPermissionDeniedError");
|
|
|
|
dialogTitleKey = "dialog.error";
|
2016-02-16 13:33:53 +00:00
|
|
|
} else {
|
2017-06-29 17:43:35 +00:00
|
|
|
dialogTxt = APP.translation.generateTranslationHTML(
|
|
|
|
"dialog.failtoinstall");
|
|
|
|
dialogTitleKey = "dialog.permissionDenied";
|
2016-02-04 15:25:11 +00:00
|
|
|
}
|
2017-06-29 17:43:35 +00:00
|
|
|
|
|
|
|
APP.UI.messageHandler.openDialog(dialogTitleKey, dialogTxt, false);
|
2016-02-04 15:25:11 +00:00
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Setup interaction between conference and UI.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
_setupListeners() {
|
2016-01-06 22:39:13 +00:00
|
|
|
// add local streams when joined to the conference
|
|
|
|
room.on(ConferenceEvents.CONFERENCE_JOINED, () => {
|
2017-03-07 16:50:17 +00:00
|
|
|
APP.store.dispatch(conferenceJoined(room));
|
|
|
|
|
2016-01-11 23:14:56 +00:00
|
|
|
APP.UI.mucJoined();
|
2016-06-17 20:35:40 +00:00
|
|
|
APP.API.notifyConferenceJoined(APP.conference.roomName);
|
2016-07-25 18:57:01 +00:00
|
|
|
APP.UI.markVideoInterrupted(false);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2017-03-07 16:50:17 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.CONFERENCE_LEFT,
|
2017-02-27 21:42:28 +00:00
|
|
|
(...args) => APP.store.dispatch(conferenceLeft(room, ...args)));
|
|
|
|
|
2016-02-25 12:32:52 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.AUTH_STATUS_CHANGED,
|
2017-05-26 16:28:14 +00:00
|
|
|
(authEnabled, authLogin) =>
|
|
|
|
APP.UI.updateAuthInfo(authEnabled, authLogin));
|
2016-02-25 12:32:52 +00:00
|
|
|
|
2017-01-06 01:18:07 +00:00
|
|
|
room.on(ConferenceEvents.PARTCIPANT_FEATURES_CHANGED,
|
|
|
|
user => APP.UI.onUserFeaturesChanged(user));
|
2016-01-06 22:39:13 +00:00
|
|
|
room.on(ConferenceEvents.USER_JOINED, (id, user) => {
|
2016-04-26 21:38:07 +00:00
|
|
|
if (user.isHidden())
|
|
|
|
return;
|
|
|
|
|
2017-02-27 21:42:28 +00:00
|
|
|
APP.store.dispatch(participantJoined({
|
|
|
|
id,
|
|
|
|
name: user.getDisplayName(),
|
|
|
|
role: user.getRole()
|
|
|
|
}));
|
|
|
|
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log('USER %s connnected', id, user);
|
2016-01-14 15:05:54 +00:00
|
|
|
APP.API.notifyUserJoined(id);
|
2016-09-16 20:17:00 +00:00
|
|
|
APP.UI.addUser(user);
|
2016-01-13 21:17:33 +00:00
|
|
|
|
2016-04-26 21:38:07 +00:00
|
|
|
// check the roles for the new user and reflect them
|
2016-01-13 21:17:33 +00:00
|
|
|
APP.UI.updateUserRole(user);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
2017-08-29 15:08:16 +00:00
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
room.on(ConferenceEvents.USER_LEFT, (id, user) => {
|
2017-02-27 21:42:28 +00:00
|
|
|
APP.store.dispatch(participantLeft(id, user));
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log('USER %s LEFT', id, user);
|
2016-01-14 15:05:54 +00:00
|
|
|
APP.API.notifyUserLeft(id);
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.removeUser(id, user.getDisplayName());
|
2016-04-28 16:54:10 +00:00
|
|
|
APP.UI.onSharedVideoStop(id);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2017-05-19 15:12:24 +00:00
|
|
|
room.on(ConferenceEvents.USER_STATUS_CHANGED, (id, status) => {
|
2017-07-31 23:33:22 +00:00
|
|
|
APP.store.dispatch(participantPresenceChanged(id, status));
|
|
|
|
|
2017-05-19 15:12:24 +00:00
|
|
|
let user = room.getParticipantById(id);
|
|
|
|
if (user) {
|
|
|
|
APP.UI.updateUserStatus(user, status);
|
|
|
|
}
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
|
|
|
room.on(ConferenceEvents.USER_ROLE_CHANGED, (id, role) => {
|
|
|
|
if (this.isLocalId(id)) {
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.info(`My role changed, new role: ${role}`);
|
2017-04-10 21:53:30 +00:00
|
|
|
|
|
|
|
APP.store.dispatch(localParticipantRoleChanged(role));
|
|
|
|
|
2016-09-28 18:41:02 +00:00
|
|
|
if (this.isModerator !== room.isModerator()) {
|
|
|
|
this.isModerator = room.isModerator();
|
|
|
|
APP.UI.updateLocalRole(room.isModerator());
|
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
} else {
|
2017-04-10 21:53:30 +00:00
|
|
|
APP.store.dispatch(participantRoleChanged(id, role));
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
let user = room.getParticipantById(id);
|
|
|
|
if (user) {
|
|
|
|
APP.UI.updateUserRole(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.TRACK_ADDED, (track) => {
|
2017-08-18 11:30:30 +00:00
|
|
|
if (!track || track.isLocal())
|
2016-01-06 22:39:13 +00:00
|
|
|
return;
|
2016-01-29 22:06:54 +00:00
|
|
|
|
2017-06-20 16:30:54 +00:00
|
|
|
APP.store.dispatch(trackAdded(track));
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.TRACK_REMOVED, (track) => {
|
2017-08-18 11:30:30 +00:00
|
|
|
if (!track || track.isLocal())
|
2016-02-23 22:47:55 +00:00
|
|
|
return;
|
|
|
|
|
2017-06-20 16:30:54 +00:00
|
|
|
APP.store.dispatch(trackRemoved(track));
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED, (id, lvl) => {
|
2017-08-18 11:30:30 +00:00
|
|
|
if (this.isLocalId(id)
|
|
|
|
&& this.localAudio && this.localAudio.isMuted()) {
|
2016-01-06 22:39:13 +00:00
|
|
|
lvl = 0;
|
|
|
|
}
|
2016-01-19 19:32:29 +00:00
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
if (config.debug) {
|
2016-01-19 19:32:29 +00:00
|
|
|
this.audioLevelsMap[id] = lvl;
|
2017-08-18 11:30:30 +00:00
|
|
|
if (config.debugAudioLevels)
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log("AudioLevel:" + id + "/" + lvl);
|
2016-02-09 22:49:46 +00:00
|
|
|
}
|
2016-01-19 19:32:29 +00:00
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.setAudioLevel(id, lvl);
|
|
|
|
});
|
|
|
|
|
2016-09-09 01:19:18 +00:00
|
|
|
room.on(ConferenceEvents.TALK_WHILE_MUTED, () => {
|
2016-09-09 19:37:47 +00:00
|
|
|
APP.UI.showToolbar(6000);
|
2017-02-15 08:54:57 +00:00
|
|
|
|
2017-08-15 23:52:42 +00:00
|
|
|
APP.UI.showCustomToolbarPopup(
|
|
|
|
'microphone', 'talkWhileMutedPopup', true, 5000);
|
2016-09-09 01:19:18 +00:00
|
|
|
});
|
|
|
|
|
2016-01-26 21:26:28 +00:00
|
|
|
room.on(
|
2017-03-21 21:51:49 +00:00
|
|
|
ConferenceEvents.LAST_N_ENDPOINTS_CHANGED,
|
|
|
|
(leavingIds, enteringIds) => {
|
|
|
|
APP.UI.handleLastNEndpoints(leavingIds, enteringIds);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
2017-03-21 17:14:13 +00:00
|
|
|
|
2017-08-09 19:40:03 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.P2P_STATUS,
|
|
|
|
(jitsiConference, p2p) => {
|
|
|
|
APP.store.dispatch(p2pStatusChanged(p2p));
|
|
|
|
});
|
|
|
|
|
2016-09-16 20:51:19 +00:00
|
|
|
room.on(
|
2016-09-28 16:29:47 +00:00
|
|
|
ConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED,
|
2017-07-13 00:26:10 +00:00
|
|
|
(id, connectionStatus) => {
|
|
|
|
APP.store.dispatch(participantConnectionStatusChanged(
|
|
|
|
id, connectionStatus));
|
|
|
|
|
2017-04-03 16:53:04 +00:00
|
|
|
APP.UI.participantConnectionStatusChanged(id);
|
2016-09-16 20:51:19 +00:00
|
|
|
});
|
2016-01-12 00:14:01 +00:00
|
|
|
room.on(ConferenceEvents.DOMINANT_SPEAKER_CHANGED, (id) => {
|
2016-06-20 21:13:17 +00:00
|
|
|
if (this.isLocalId(id)) {
|
|
|
|
this.isDominantSpeaker = true;
|
|
|
|
this.setRaisedHand(false);
|
|
|
|
} else {
|
|
|
|
this.isDominantSpeaker = false;
|
|
|
|
var participant = room.getParticipantById(id);
|
|
|
|
if (participant) {
|
|
|
|
APP.UI.setRaisedHandStatus(participant, false);
|
|
|
|
}
|
|
|
|
}
|
2016-01-12 00:14:01 +00:00
|
|
|
APP.UI.markDominantSpeaker(id);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!interfaceConfig.filmStripOnly) {
|
|
|
|
room.on(ConferenceEvents.CONNECTION_INTERRUPTED, () => {
|
|
|
|
APP.UI.markVideoInterrupted(true);
|
|
|
|
});
|
|
|
|
room.on(ConferenceEvents.CONNECTION_RESTORED, () => {
|
|
|
|
APP.UI.markVideoInterrupted(false);
|
|
|
|
});
|
2017-04-11 18:02:59 +00:00
|
|
|
room.on(ConferenceEvents.MESSAGE_RECEIVED, (id, body, ts) => {
|
2016-01-14 15:05:54 +00:00
|
|
|
let nick = getDisplayName(id);
|
2017-04-11 18:02:59 +00:00
|
|
|
APP.API.notifyReceivedChatMessage({
|
|
|
|
id,
|
|
|
|
nick,
|
|
|
|
body,
|
|
|
|
ts
|
|
|
|
});
|
|
|
|
APP.UI.addMessage(id, nick, body, ts);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
2017-01-12 20:51:53 +00:00
|
|
|
APP.UI.addListener(UIEvents.MESSAGE_CREATED, (message) => {
|
|
|
|
APP.API.notifySendingChatMessage(message);
|
|
|
|
room.sendTextMessage(message);
|
|
|
|
});
|
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.SELECTED_ENDPOINT, (id) => {
|
|
|
|
try {
|
|
|
|
// do not try to select participant if there is none (we
|
|
|
|
// are alone in the room), otherwise an error will be
|
|
|
|
// thrown cause reporting mechanism is not available
|
|
|
|
// (datachannels currently)
|
|
|
|
if (room.getParticipants().length === 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
room.selectParticipant(id);
|
|
|
|
} catch (e) {
|
|
|
|
JitsiMeetJS.analytics.sendEvent(
|
|
|
|
'selectParticipant.failed');
|
|
|
|
reportError(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-04-05 15:14:26 +00:00
|
|
|
APP.UI.addListener(
|
|
|
|
UIEvents.VIDEO_UNMUTING_WHILE_AUDIO_ONLY,
|
|
|
|
() => this._displayAudioOnlyTooltip('videoMute'));
|
2016-01-06 22:39:13 +00:00
|
|
|
}
|
|
|
|
|
2016-07-22 18:42:41 +00:00
|
|
|
room.on(ConferenceEvents.CONNECTION_INTERRUPTED, () => {
|
2017-07-13 00:26:10 +00:00
|
|
|
APP.store.dispatch(localParticipantConnectionStatusChanged(
|
|
|
|
participantConnectionStatus.INTERRUPTED));
|
|
|
|
|
2016-09-16 20:33:22 +00:00
|
|
|
APP.UI.showLocalConnectionInterrupted(true);
|
2016-07-22 18:42:41 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.CONNECTION_RESTORED, () => {
|
2017-07-13 00:26:10 +00:00
|
|
|
APP.store.dispatch(localParticipantConnectionStatusChanged(
|
|
|
|
participantConnectionStatus.ACTIVE));
|
|
|
|
|
2016-09-16 20:33:22 +00:00
|
|
|
APP.UI.showLocalConnectionInterrupted(false);
|
2016-07-22 18:42:41 +00:00
|
|
|
});
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
room.on(ConferenceEvents.DISPLAY_NAME_CHANGED, (id, displayName) => {
|
2016-11-01 21:40:52 +00:00
|
|
|
const formattedDisplayName
|
2016-11-09 16:22:43 +00:00
|
|
|
= displayName.substr(0, MAX_DISPLAY_NAME_LENGTH);
|
2017-05-03 23:57:52 +00:00
|
|
|
APP.store.dispatch(participantUpdated({
|
|
|
|
id,
|
|
|
|
name: formattedDisplayName
|
|
|
|
}));
|
2016-11-01 21:40:52 +00:00
|
|
|
APP.API.notifyDisplayNameChanged(id, formattedDisplayName);
|
|
|
|
APP.UI.changeDisplayName(id, formattedDisplayName);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2017-04-18 21:49:52 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.LOCK_STATE_CHANGED,
|
|
|
|
(...args) => APP.store.dispatch(lockStateChanged(room, ...args)));
|
2017-04-13 00:23:43 +00:00
|
|
|
|
2017-08-17 16:43:22 +00:00
|
|
|
APP.remoteControl.on(RemoteControlEvents.ACTIVE_CHANGED, isActive => {
|
|
|
|
room.setLocalParticipantProperty(
|
|
|
|
"remoteControlSessionStatus",
|
|
|
|
isActive
|
|
|
|
);
|
|
|
|
APP.UI.setLocalRemoteControlActiveChanged();
|
|
|
|
});
|
|
|
|
|
2016-06-20 21:13:17 +00:00
|
|
|
room.on(ConferenceEvents.PARTICIPANT_PROPERTY_CHANGED,
|
|
|
|
(participant, name, oldValue, newValue) => {
|
2017-08-17 16:43:22 +00:00
|
|
|
switch (name) {
|
|
|
|
case 'raisedHand':
|
2016-06-20 21:13:17 +00:00
|
|
|
APP.UI.setRaisedHandStatus(participant, newValue);
|
2017-08-17 16:43:22 +00:00
|
|
|
break;
|
|
|
|
case 'remoteControlSessionStatus':
|
|
|
|
APP.UI.setRemoteControlActiveStatus(
|
|
|
|
participant.getId(),
|
|
|
|
newValue);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// ignore
|
2016-06-20 21:13:17 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-29 17:13:54 +00:00
|
|
|
room.on(ConferenceEvents.RECORDER_STATE_CHANGED, (status, error) => {
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log("Received recorder status change: ", status, error);
|
2016-06-02 22:12:40 +00:00
|
|
|
APP.UI.updateRecordingState(status);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.KICKED, () => {
|
2016-01-29 15:33:16 +00:00
|
|
|
APP.UI.hideStats();
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.notifyKicked();
|
|
|
|
// FIXME close
|
|
|
|
});
|
|
|
|
|
2016-11-09 22:34:01 +00:00
|
|
|
room.on(ConferenceEvents.SUSPEND_DETECTED, () => {
|
2017-01-31 20:58:48 +00:00
|
|
|
APP.store.dispatch(suspendDetected());
|
2016-11-09 22:34:01 +00:00
|
|
|
// After wake up, we will be in a state where conference is left
|
|
|
|
// there will be dialog shown to user.
|
|
|
|
// We do not want video/audio as we show an overlay and after it
|
|
|
|
// user need to rejoin or close, while waking up we can detect
|
|
|
|
// camera wakeup as a problem with device.
|
|
|
|
// We also do not care about device change, which happens
|
|
|
|
// on resume after suspending PC.
|
|
|
|
if (this.deviceChangeListener)
|
|
|
|
JitsiMeetJS.mediaDevices.removeEventListener(
|
|
|
|
JitsiMeetJS.events.mediaDevices.DEVICE_LIST_CHANGED,
|
|
|
|
this.deviceChangeListener);
|
|
|
|
|
|
|
|
// stop local video
|
2017-08-18 11:30:30 +00:00
|
|
|
if (this.localVideo) {
|
|
|
|
this.localVideo.dispose();
|
|
|
|
this.localVideo = null;
|
2017-01-19 18:46:11 +00:00
|
|
|
}
|
2016-11-09 22:34:01 +00:00
|
|
|
// stop local audio
|
2017-08-18 11:30:30 +00:00
|
|
|
if (this.localAudio) {
|
|
|
|
this.localAudio.dispose();
|
|
|
|
this.localAudio = null;
|
2017-01-19 18:46:11 +00:00
|
|
|
}
|
2016-11-09 22:34:01 +00:00
|
|
|
});
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
room.on(ConferenceEvents.DTMF_SUPPORT_CHANGED, (isDTMFSupported) => {
|
|
|
|
APP.UI.updateDTMFSupport(isDTMFSupported);
|
|
|
|
});
|
|
|
|
|
2017-07-24 13:56:57 +00:00
|
|
|
APP.UI.addListener(UIEvents.AUDIO_MUTED, muted => {
|
2017-07-25 10:05:08 +00:00
|
|
|
this.muteAudio(muted);
|
2017-07-24 13:56:57 +00:00
|
|
|
});
|
2017-04-05 15:14:26 +00:00
|
|
|
APP.UI.addListener(UIEvents.VIDEO_MUTED, muted => {
|
|
|
|
if (this.isAudioOnly() && !muted) {
|
|
|
|
this._displayAudioOnlyTooltip('videoMute');
|
2017-06-15 15:41:49 +00:00
|
|
|
} else {
|
2017-07-20 12:29:15 +00:00
|
|
|
this.muteVideo(muted);
|
2017-04-05 15:14:26 +00:00
|
|
|
}
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2017-07-05 18:17:30 +00:00
|
|
|
statsEmitter.startListeningForStats(room);
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2016-04-07 19:11:59 +00:00
|
|
|
room.addCommandListener(this.commands.defaults.ETHERPAD, ({value}) => {
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.initEtherpad(value);
|
|
|
|
});
|
|
|
|
|
2017-01-12 21:53:17 +00:00
|
|
|
APP.UI.addListener(UIEvents.EMAIL_CHANGED, this.changeLocalEmail);
|
2016-06-13 21:11:44 +00:00
|
|
|
room.addCommandListener(this.commands.defaults.EMAIL, (data, from) => {
|
2017-03-23 18:01:33 +00:00
|
|
|
APP.store.dispatch(participantUpdated({
|
|
|
|
id: from,
|
|
|
|
email: data.value
|
|
|
|
}));
|
2016-06-13 21:11:44 +00:00
|
|
|
APP.UI.setUserEmail(from, data.value);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2016-10-27 20:49:29 +00:00
|
|
|
room.addCommandListener(
|
|
|
|
this.commands.defaults.AVATAR_URL,
|
|
|
|
(data, from) => {
|
2017-02-27 21:42:28 +00:00
|
|
|
APP.store.dispatch(
|
2017-03-23 18:01:33 +00:00
|
|
|
participantUpdated({
|
|
|
|
id: from,
|
|
|
|
avatarURL: data.value
|
|
|
|
}));
|
2016-10-27 20:49:29 +00:00
|
|
|
APP.UI.setUserAvatarUrl(from, data.value);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2016-08-31 16:41:17 +00:00
|
|
|
room.addCommandListener(this.commands.defaults.AVATAR_ID,
|
|
|
|
(data, from) => {
|
2017-02-27 21:42:28 +00:00
|
|
|
APP.store.dispatch(
|
2017-03-23 18:01:33 +00:00
|
|
|
participantUpdated({
|
|
|
|
id: from,
|
|
|
|
avatarID: data.value
|
|
|
|
}));
|
2016-08-31 16:41:17 +00:00
|
|
|
APP.UI.setUserAvatarID(from, data.value);
|
|
|
|
});
|
|
|
|
|
2017-03-23 17:45:51 +00:00
|
|
|
APP.UI.addListener(UIEvents.NICKNAME_CHANGED,
|
|
|
|
this.changeLocalDisplayName.bind(this));
|
2016-06-13 21:11:44 +00:00
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.addListener(UIEvents.START_MUTED_CHANGED,
|
|
|
|
(startAudioMuted, startVideoMuted) => {
|
2016-03-02 15:39:39 +00:00
|
|
|
room.setStartMutedPolicy({
|
|
|
|
audio: startAudioMuted,
|
|
|
|
video: startVideoMuted
|
|
|
|
});
|
2015-12-31 15:23:23 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
room.on(
|
2016-01-13 03:38:58 +00:00
|
|
|
ConferenceEvents.START_MUTED_POLICY_CHANGED,
|
2016-03-02 15:39:39 +00:00
|
|
|
({ audio, video }) => {
|
|
|
|
APP.UI.onStartMutedChanged(audio, video);
|
2016-01-06 22:39:13 +00:00
|
|
|
}
|
|
|
|
);
|
2016-01-13 03:38:58 +00:00
|
|
|
room.on(ConferenceEvents.STARTED_MUTED, () => {
|
|
|
|
(room.isStartAudioMuted() || room.isStartVideoMuted())
|
|
|
|
&& APP.UI.notifyInitiallyMuted();
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2016-01-25 22:39:05 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.AVAILABLE_DEVICES_CHANGED, function (id, devices) {
|
|
|
|
APP.UI.updateDevicesAvailability(id, devices);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2017-08-09 19:40:03 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.DATA_CHANNEL_OPENED, () => {
|
|
|
|
APP.store.dispatch(dataChannelOpened());
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
// call hangup
|
|
|
|
APP.UI.addListener(UIEvents.HANGUP, () => {
|
2016-10-05 21:33:09 +00:00
|
|
|
this.hangup(true);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// logout
|
|
|
|
APP.UI.addListener(UIEvents.LOGOUT, () => {
|
2016-10-05 21:33:09 +00:00
|
|
|
AuthHandler.logout(room).then(url => {
|
2016-02-25 13:52:15 +00:00
|
|
|
if (url) {
|
2017-02-05 03:51:41 +00:00
|
|
|
UIUtil.redirect(url);
|
2016-02-25 13:52:15 +00:00
|
|
|
} else {
|
2016-10-05 21:33:09 +00:00
|
|
|
this.hangup(true);
|
2016-02-25 13:52:15 +00:00
|
|
|
}
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2016-07-08 20:14:49 +00:00
|
|
|
APP.UI.addListener(UIEvents.RESOLUTION_CHANGED,
|
|
|
|
(id, oldResolution, newResolution, delay) => {
|
2016-08-15 19:40:55 +00:00
|
|
|
var logObject = {
|
|
|
|
id: "resolution_change",
|
|
|
|
participant: id,
|
|
|
|
oldValue: oldResolution,
|
|
|
|
newValue: newResolution,
|
|
|
|
delay: delay
|
|
|
|
};
|
|
|
|
room.sendApplicationLog(JSON.stringify(logObject));
|
|
|
|
|
|
|
|
// We only care about the delay between simulcast streams.
|
|
|
|
// Longer delays will be caused by something else and will just
|
|
|
|
// poison the data.
|
|
|
|
if (delay < 2000) {
|
2016-10-06 18:21:54 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent('stream.switch.delay',
|
|
|
|
{value: delay});
|
2016-08-15 19:40:55 +00:00
|
|
|
}
|
2016-07-08 20:14:49 +00:00
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
|
|
|
// Starts or stops the recording for the conference.
|
2016-03-29 17:13:54 +00:00
|
|
|
APP.UI.addListener(UIEvents.RECORDING_TOGGLED, (options) => {
|
|
|
|
room.toggleRecording(options);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2016-01-14 14:23:06 +00:00
|
|
|
APP.UI.addListener(UIEvents.SUBJECT_CHANGED, (topic) => {
|
|
|
|
room.setSubject(topic);
|
|
|
|
});
|
|
|
|
room.on(ConferenceEvents.SUBJECT_CHANGED, function (subject) {
|
|
|
|
APP.UI.setSubject(subject);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.USER_KICKED, (id) => {
|
|
|
|
room.kickParticipant(id);
|
|
|
|
});
|
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.REMOTE_AUDIO_MUTED, (id) => {
|
|
|
|
room.muteParticipant(id);
|
|
|
|
});
|
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.AUTH_CLICKED, () => {
|
|
|
|
AuthHandler.authenticate(room);
|
|
|
|
});
|
|
|
|
|
2016-02-09 10:19:43 +00:00
|
|
|
APP.UI.addListener(
|
|
|
|
UIEvents.VIDEO_DEVICE_CHANGED,
|
|
|
|
(cameraDeviceId) => {
|
2016-08-09 20:04:40 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent('settings.changeDevice.video');
|
2017-08-14 13:25:37 +00:00
|
|
|
createLocalTracksF({
|
2016-06-24 09:47:13 +00:00
|
|
|
devices: ['video'],
|
|
|
|
cameraDeviceId: cameraDeviceId,
|
|
|
|
micDeviceId: null
|
|
|
|
})
|
|
|
|
.then(([stream]) => {
|
2017-04-05 15:14:26 +00:00
|
|
|
if (this.isAudioOnly()) {
|
|
|
|
return stream.mute()
|
|
|
|
.then(() => stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
return stream;
|
|
|
|
})
|
|
|
|
.then(stream => {
|
2016-06-24 09:47:13 +00:00
|
|
|
this.useVideoStream(stream);
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log('switched local video device');
|
2016-09-07 21:48:57 +00:00
|
|
|
APP.settings.setCameraDeviceId(cameraDeviceId, true);
|
2016-06-24 09:47:13 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
2017-07-31 18:36:41 +00:00
|
|
|
APP.UI.showCameraErrorNotification(err);
|
2016-06-24 09:47:13 +00:00
|
|
|
});
|
2016-02-09 10:19:43 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
APP.UI.addListener(
|
|
|
|
UIEvents.AUDIO_DEVICE_CHANGED,
|
|
|
|
(micDeviceId) => {
|
2016-08-09 20:04:40 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent(
|
|
|
|
'settings.changeDevice.audioIn');
|
2017-08-14 13:25:37 +00:00
|
|
|
createLocalTracksF({
|
2016-06-24 09:47:13 +00:00
|
|
|
devices: ['audio'],
|
|
|
|
cameraDeviceId: null,
|
|
|
|
micDeviceId: micDeviceId
|
|
|
|
})
|
|
|
|
.then(([stream]) => {
|
|
|
|
this.useAudioStream(stream);
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.log('switched local audio device');
|
2016-09-07 21:48:57 +00:00
|
|
|
APP.settings.setMicDeviceId(micDeviceId, true);
|
2016-06-24 09:47:13 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
2017-07-31 18:36:41 +00:00
|
|
|
APP.UI.showMicErrorNotification(err);
|
2016-06-24 09:47:13 +00:00
|
|
|
});
|
2016-02-09 10:19:43 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-05-05 14:34:15 +00:00
|
|
|
APP.UI.addListener(
|
|
|
|
UIEvents.AUDIO_OUTPUT_DEVICE_CHANGED,
|
|
|
|
(audioOutputDeviceId) => {
|
2016-08-09 20:04:40 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent(
|
|
|
|
'settings.changeDevice.audioOut');
|
2016-05-06 14:31:23 +00:00
|
|
|
APP.settings.setAudioOutputDeviceId(audioOutputDeviceId)
|
2016-11-11 15:00:54 +00:00
|
|
|
.then(() => logger.log('changed audio output device'))
|
2016-05-06 14:31:23 +00:00
|
|
|
.catch((err) => {
|
2016-11-11 15:00:54 +00:00
|
|
|
logger.warn('Failed to change audio output device. ' +
|
2016-06-03 08:15:07 +00:00
|
|
|
'Default or previously set audio output device ' +
|
|
|
|
'will be used instead.', err);
|
2016-05-06 14:31:23 +00:00
|
|
|
});
|
2016-05-05 14:34:15 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2017-04-05 15:14:26 +00:00
|
|
|
APP.UI.addListener(UIEvents.TOGGLE_AUDIO_ONLY, audioOnly => {
|
2017-07-24 15:36:19 +00:00
|
|
|
|
|
|
|
// FIXME On web video track is stored both in redux and in
|
|
|
|
// 'localVideo' field, video is attempted to be unmuted twice when
|
|
|
|
// turning off the audio only mode. This will crash the app with
|
|
|
|
// 'unmute operation is already in progress'.
|
|
|
|
// Because there's no logic in redux about creating new track in
|
|
|
|
// case unmute when not track exists the things have to go through
|
|
|
|
// muteVideo logic in such case.
|
|
|
|
const tracks = APP.store.getState()['features/base/tracks'];
|
|
|
|
const isTrackInRedux
|
|
|
|
= Boolean(
|
|
|
|
tracks.find(
|
|
|
|
track => track.jitsiTrack
|
|
|
|
&& track.jitsiTrack.getType() === 'video'));
|
|
|
|
if (!isTrackInRedux) {
|
|
|
|
this.muteVideo(audioOnly);
|
|
|
|
}
|
2017-04-05 15:14:26 +00:00
|
|
|
|
|
|
|
// Immediately update the UI by having remote videos and the large
|
|
|
|
// video update themselves instead of waiting for some other event
|
|
|
|
// to cause the update, usually PARTICIPANT_CONN_STATUS_CHANGED.
|
|
|
|
// There is no guarantee another event will trigger the update
|
|
|
|
// immediately and in all situations, for example because a remote
|
|
|
|
// participant is having connection trouble so no status changes.
|
|
|
|
APP.UI.updateAllVideos();
|
|
|
|
});
|
|
|
|
|
2016-02-04 15:25:11 +00:00
|
|
|
APP.UI.addListener(
|
|
|
|
UIEvents.TOGGLE_SCREENSHARING, this.toggleScreenSharing.bind(this)
|
2016-01-06 22:39:13 +00:00
|
|
|
);
|
2016-03-18 20:00:55 +00:00
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.UPDATE_SHARED_VIDEO,
|
2016-04-25 20:39:31 +00:00
|
|
|
(url, state, time, isMuted, volume) => {
|
2016-03-18 20:00:55 +00:00
|
|
|
// send start and stop commands once, and remove any updates
|
|
|
|
// that had left
|
|
|
|
if (state === 'stop' || state === 'start' || state === 'playing') {
|
2016-04-07 19:11:59 +00:00
|
|
|
room.removeCommand(this.commands.defaults.SHARED_VIDEO);
|
|
|
|
room.sendCommandOnce(this.commands.defaults.SHARED_VIDEO, {
|
2016-03-18 20:00:55 +00:00
|
|
|
value: url,
|
|
|
|
attributes: {
|
|
|
|
state: state,
|
|
|
|
time: time,
|
2016-04-25 20:39:31 +00:00
|
|
|
muted: isMuted,
|
2016-03-18 20:00:55 +00:00
|
|
|
volume: volume
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// in case of paused, in order to allow late users to join
|
|
|
|
// paused
|
2016-04-07 19:11:59 +00:00
|
|
|
room.removeCommand(this.commands.defaults.SHARED_VIDEO);
|
|
|
|
room.sendCommand(this.commands.defaults.SHARED_VIDEO, {
|
2016-03-18 20:00:55 +00:00
|
|
|
value: url,
|
|
|
|
attributes: {
|
|
|
|
state: state,
|
|
|
|
time: time,
|
2016-04-25 20:39:31 +00:00
|
|
|
muted: isMuted,
|
2016-03-18 20:00:55 +00:00
|
|
|
volume: volume
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
room.addCommandListener(
|
2016-04-07 19:11:59 +00:00
|
|
|
this.commands.defaults.SHARED_VIDEO, ({value, attributes}, id) => {
|
2016-03-24 20:25:26 +00:00
|
|
|
|
2016-03-18 20:00:55 +00:00
|
|
|
if (attributes.state === 'stop') {
|
2016-04-28 16:54:10 +00:00
|
|
|
APP.UI.onSharedVideoStop(id, attributes);
|
2016-04-25 20:39:31 +00:00
|
|
|
}
|
|
|
|
else if (attributes.state === 'start') {
|
2016-04-28 16:54:10 +00:00
|
|
|
APP.UI.onSharedVideoStart(id, value, attributes);
|
2016-04-25 20:39:31 +00:00
|
|
|
}
|
|
|
|
else if (attributes.state === 'playing'
|
2016-03-18 20:00:55 +00:00
|
|
|
|| attributes.state === 'pause') {
|
2016-04-28 16:54:10 +00:00
|
|
|
APP.UI.onSharedVideoUpdate(id, value, attributes);
|
2016-03-18 20:00:55 +00:00
|
|
|
}
|
|
|
|
});
|
2016-04-25 20:39:31 +00:00
|
|
|
},
|
|
|
|
/**
|
2016-06-13 11:49:00 +00:00
|
|
|
* Adds any room listener.
|
2016-12-09 23:15:04 +00:00
|
|
|
* @param {string} eventName one of the ConferenceEvents
|
|
|
|
* @param {Function} listener the function to be called when the event
|
|
|
|
* occurs
|
|
|
|
*/
|
|
|
|
addConferenceListener(eventName, listener) {
|
|
|
|
room.on(eventName, listener);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes any room listener.
|
|
|
|
* @param {string} eventName one of the ConferenceEvents
|
|
|
|
* @param {Function} listener the listener to be removed.
|
2016-06-13 11:49:00 +00:00
|
|
|
*/
|
2016-12-09 23:15:04 +00:00
|
|
|
removeConferenceListener(eventName, listener) {
|
|
|
|
room.off(eventName, listener);
|
2016-06-13 11:49:00 +00:00
|
|
|
},
|
2016-12-09 23:15:04 +00:00
|
|
|
|
2016-06-13 11:49:00 +00:00
|
|
|
/**
|
|
|
|
* Inits list of current devices and event listener for device change.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_initDeviceList() {
|
2017-07-14 18:45:32 +00:00
|
|
|
JitsiMeetJS.mediaDevices.isDeviceListAvailable()
|
|
|
|
.then(isDeviceListAvailable => {
|
|
|
|
if (isDeviceListAvailable
|
|
|
|
&& JitsiMeetJS.mediaDevices.isDeviceChangeAvailable()) {
|
|
|
|
JitsiMeetJS.mediaDevices.enumerateDevices(devices => {
|
|
|
|
// Ugly way to synchronize real device IDs with local
|
|
|
|
// storage and settings menu. This is a workaround until
|
2017-07-11 13:06:58 +00:00
|
|
|
// getConstraints() method will be implemented
|
2017-07-14 18:45:32 +00:00
|
|
|
// in browsers.
|
2017-08-18 11:30:30 +00:00
|
|
|
if (this.localAudio) {
|
2017-07-14 18:45:32 +00:00
|
|
|
APP.settings.setMicDeviceId(
|
2017-08-18 11:30:30 +00:00
|
|
|
this.localAudio.getDeviceId(), false);
|
2017-07-14 18:45:32 +00:00
|
|
|
}
|
2016-06-13 11:49:00 +00:00
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
if (this.localVideo) {
|
2017-07-14 18:45:32 +00:00
|
|
|
APP.settings.setCameraDeviceId(
|
2017-08-18 11:30:30 +00:00
|
|
|
this.localVideo.getDeviceId(), false);
|
2017-07-14 18:45:32 +00:00
|
|
|
}
|
2016-06-13 11:49:00 +00:00
|
|
|
|
2017-07-14 18:45:32 +00:00
|
|
|
mediaDeviceHelper.setCurrentMediaDevices(devices);
|
|
|
|
APP.UI.onAvailableDevicesChanged(devices);
|
|
|
|
APP.store.dispatch(updateDeviceList(devices));
|
|
|
|
});
|
2016-06-13 11:49:00 +00:00
|
|
|
|
2017-07-14 18:45:32 +00:00
|
|
|
this.deviceChangeListener = (devices) =>
|
|
|
|
window.setTimeout(
|
|
|
|
() => this._onDeviceListChanged(devices), 0);
|
|
|
|
JitsiMeetJS.mediaDevices.addEventListener(
|
|
|
|
JitsiMeetJS.events.mediaDevices.DEVICE_LIST_CHANGED,
|
|
|
|
this.deviceChangeListener);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
logger.warn(`Error getting device list: ${error}`);
|
|
|
|
});
|
2016-06-13 11:49:00 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Event listener for JitsiMediaDevicesEvents.DEVICE_LIST_CHANGED to
|
|
|
|
* handle change of available media devices.
|
|
|
|
* @private
|
|
|
|
* @param {MediaDeviceInfo[]} devices
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
_onDeviceListChanged(devices) {
|
|
|
|
let currentDevices = mediaDeviceHelper.getCurrentMediaDevices();
|
|
|
|
|
|
|
|
// Event handler can be fired before direct
|
|
|
|
// enumerateDevices() call, so handle this situation here.
|
|
|
|
if (!currentDevices.audioinput &&
|
|
|
|
!currentDevices.videoinput &&
|
|
|
|
!currentDevices.audiooutput) {
|
|
|
|
mediaDeviceHelper.setCurrentMediaDevices(devices);
|
|
|
|
currentDevices = mediaDeviceHelper.getCurrentMediaDevices();
|
|
|
|
}
|
|
|
|
|
|
|
|
let newDevices =
|
|
|
|
mediaDeviceHelper.getNewMediaDevicesAfterDeviceListChanged(
|
2017-08-18 11:30:30 +00:00
|
|
|
devices,
|
|
|
|
this.isSharingScreen,
|
|
|
|
this.localVideo,
|
|
|
|
this.localAudio);
|
2016-06-13 11:49:00 +00:00
|
|
|
let promises = [];
|
2017-08-18 11:30:30 +00:00
|
|
|
let audioWasMuted = this.isLocalAudioMuted();
|
|
|
|
let videoWasMuted = this.isLocalVideoMuted();
|
2016-06-13 11:49:00 +00:00
|
|
|
let availableAudioInputDevices =
|
|
|
|
mediaDeviceHelper.getDevicesFromListByKind(devices, 'audioinput');
|
|
|
|
let availableVideoInputDevices =
|
|
|
|
mediaDeviceHelper.getDevicesFromListByKind(devices, 'videoinput');
|
|
|
|
|
|
|
|
if (typeof newDevices.audiooutput !== 'undefined') {
|
|
|
|
// Just ignore any errors in catch block.
|
|
|
|
promises.push(APP.settings
|
|
|
|
.setAudioOutputDeviceId(newDevices.audiooutput)
|
|
|
|
.catch());
|
|
|
|
}
|
|
|
|
|
|
|
|
promises.push(
|
|
|
|
mediaDeviceHelper.createLocalTracksAfterDeviceListChanged(
|
2017-08-14 13:25:37 +00:00
|
|
|
createLocalTracksF,
|
2016-06-13 11:49:00 +00:00
|
|
|
newDevices.videoinput,
|
|
|
|
newDevices.audioinput)
|
|
|
|
.then(tracks =>
|
|
|
|
Promise.all(this._setLocalAudioVideoStreams(tracks)))
|
|
|
|
.then(() => {
|
|
|
|
// If audio was muted before, or we unplugged current device
|
|
|
|
// and selected new one, then mute new audio track.
|
|
|
|
if (audioWasMuted ||
|
|
|
|
currentDevices.audioinput.length >
|
|
|
|
availableAudioInputDevices.length) {
|
|
|
|
muteLocalAudio(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If video was muted before, or we unplugged current device
|
|
|
|
// and selected new one, then mute new video track.
|
2017-06-23 19:03:10 +00:00
|
|
|
if (!this.isSharingScreen &&
|
|
|
|
(videoWasMuted ||
|
|
|
|
currentDevices.videoinput.length >
|
|
|
|
availableVideoInputDevices.length)) {
|
2016-06-13 11:49:00 +00:00
|
|
|
muteLocalVideo(true);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
|
|
|
return Promise.all(promises)
|
|
|
|
.then(() => {
|
|
|
|
mediaDeviceHelper.setCurrentMediaDevices(devices);
|
|
|
|
APP.UI.onAvailableDevicesChanged(devices);
|
|
|
|
});
|
2016-06-20 21:13:17 +00:00
|
|
|
},
|
2017-07-24 13:56:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether or not the audio button should be enabled.
|
|
|
|
*/
|
|
|
|
updateAudioIconEnabled() {
|
|
|
|
const audioMediaDevices
|
|
|
|
= mediaDeviceHelper.getCurrentMediaDevices().audioinput;
|
|
|
|
const audioDeviceCount
|
|
|
|
= audioMediaDevices ? audioMediaDevices.length : 0;
|
|
|
|
|
|
|
|
// The audio functionality is considered available if there are any
|
|
|
|
// audio devices detected or if the local audio stream already exists.
|
2017-08-18 11:30:30 +00:00
|
|
|
const available = audioDeviceCount > 0 || Boolean(this.localAudio);
|
2017-07-24 13:56:57 +00:00
|
|
|
|
|
|
|
logger.debug(
|
|
|
|
'Microphone button enabled: ' + available,
|
2017-08-18 11:30:30 +00:00
|
|
|
'local audio: ' + this.localAudio,
|
2017-07-24 13:56:57 +00:00
|
|
|
'audio devices: ' + audioMediaDevices,
|
|
|
|
'device count: ' + audioDeviceCount);
|
|
|
|
|
|
|
|
APP.store.dispatch(setAudioAvailable(available));
|
2017-08-04 08:15:11 +00:00
|
|
|
APP.API.notifyAudioAvailabilityChanged(available);
|
2017-07-24 13:56:57 +00:00
|
|
|
},
|
|
|
|
|
2017-06-28 14:15:46 +00:00
|
|
|
/**
|
|
|
|
* Determines whether or not the video button should be enabled.
|
|
|
|
*/
|
|
|
|
updateVideoIconEnabled() {
|
|
|
|
const videoMediaDevices
|
|
|
|
= mediaDeviceHelper.getCurrentMediaDevices().videoinput;
|
|
|
|
const videoDeviceCount
|
|
|
|
= videoMediaDevices ? videoMediaDevices.length : 0;
|
|
|
|
// The video functionality is considered available if there are any
|
|
|
|
// video devices detected or if there is local video stream already
|
|
|
|
// active which could be either screensharing stream or a video track
|
|
|
|
// created before the permissions were rejected (through browser
|
|
|
|
// config).
|
2017-08-18 11:30:30 +00:00
|
|
|
const available = videoDeviceCount > 0 || Boolean(this.localVideo);
|
2017-06-28 14:15:46 +00:00
|
|
|
|
|
|
|
logger.debug(
|
|
|
|
'Camera button enabled: ' + available,
|
2017-08-18 11:30:30 +00:00
|
|
|
'local video: ' + this.localVideo,
|
2017-06-28 14:15:46 +00:00
|
|
|
'video devices: ' + videoMediaDevices,
|
|
|
|
'device count: ' + videoDeviceCount);
|
|
|
|
|
|
|
|
APP.store.dispatch(setVideoAvailable(available));
|
2017-08-04 08:15:11 +00:00
|
|
|
APP.API.notifyVideoAvailabilityChanged(available);
|
2017-06-28 14:15:46 +00:00
|
|
|
},
|
2016-06-20 21:13:17 +00:00
|
|
|
|
|
|
|
/**
|
2016-09-30 16:47:43 +00:00
|
|
|
* Toggles the local "raised hand" status.
|
2016-06-20 21:13:17 +00:00
|
|
|
*/
|
|
|
|
maybeToggleRaisedHand() {
|
2016-09-30 16:47:43 +00:00
|
|
|
this.setRaisedHand(!this.isHandRaised);
|
2016-06-20 21:13:17 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the local "raised hand" status to a particular value.
|
|
|
|
*/
|
|
|
|
setRaisedHand(raisedHand) {
|
|
|
|
if (raisedHand !== this.isHandRaised)
|
|
|
|
{
|
2016-09-16 15:17:49 +00:00
|
|
|
APP.UI.onLocalRaiseHandChanged(raisedHand);
|
2016-09-16 05:09:26 +00:00
|
|
|
|
2016-06-20 21:13:17 +00:00
|
|
|
this.isHandRaised = raisedHand;
|
|
|
|
// Advertise the updated status
|
|
|
|
room.setLocalParticipantProperty("raisedHand", raisedHand);
|
|
|
|
// Update the view
|
|
|
|
APP.UI.setLocalRaisedHandStatus(raisedHand);
|
|
|
|
}
|
2016-09-28 19:55:39 +00:00
|
|
|
},
|
2017-08-17 16:43:22 +00:00
|
|
|
|
2016-09-28 19:55:39 +00:00
|
|
|
/**
|
|
|
|
* Log event to callstats and analytics.
|
|
|
|
* @param {string} name the event name
|
|
|
|
* @param {int} value the value (it's int because google analytics supports
|
|
|
|
* only int).
|
2016-11-28 21:45:09 +00:00
|
|
|
* @param {string} label short text which provides more info about the event
|
|
|
|
* which allows to distinguish between few event cases of the same name
|
2016-09-28 19:55:39 +00:00
|
|
|
* NOTE: Should be used after conference.init
|
|
|
|
*/
|
2016-11-28 21:45:09 +00:00
|
|
|
logEvent(name, value, label) {
|
2017-08-18 11:30:30 +00:00
|
|
|
if (JitsiMeetJS.analytics) {
|
2016-11-28 21:45:09 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent(name, {value, label});
|
2016-09-28 19:55:39 +00:00
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
if (room) {
|
2016-11-28 21:45:09 +00:00
|
|
|
room.sendApplicationLog(JSON.stringify({name, value, label}));
|
2016-09-28 19:55:39 +00:00
|
|
|
}
|
2016-10-05 21:33:09 +00:00
|
|
|
},
|
2016-11-22 20:51:25 +00:00
|
|
|
/**
|
|
|
|
* Methods logs an application event given in the JSON format.
|
|
|
|
* @param {string} logJSON an event to be logged in JSON format
|
|
|
|
*/
|
|
|
|
logJSON(logJSON) {
|
|
|
|
if (room) {
|
|
|
|
room.sendApplicationLog(logJSON);
|
|
|
|
}
|
|
|
|
},
|
2016-10-05 21:33:09 +00:00
|
|
|
/**
|
|
|
|
* Disconnect from the conference and optionally request user feedback.
|
|
|
|
* @param {boolean} [requestFeedback=false] if user feedback should be
|
|
|
|
* requested
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
hangup(requestFeedback = false) {
|
2017-01-23 18:07:08 +00:00
|
|
|
eventEmitter.emit(JitsiMeetConferenceEvents.BEFORE_HANGUP);
|
2017-06-05 18:19:25 +00:00
|
|
|
|
2017-08-07 16:20:44 +00:00
|
|
|
let requestFeedbackPromise;
|
|
|
|
|
|
|
|
if (requestFeedback) {
|
|
|
|
requestFeedbackPromise
|
|
|
|
= APP.store.dispatch(maybeOpenFeedbackDialog(room))
|
|
|
|
// false because the thank you dialog shouldn't be displayed
|
|
|
|
.catch(() => Promise.resolve(false));
|
|
|
|
} else {
|
|
|
|
requestFeedbackPromise = Promise.resolve(true);
|
|
|
|
}
|
|
|
|
|
2016-10-12 21:30:44 +00:00
|
|
|
// All promises are returning Promise.resolve to make Promise.all to
|
|
|
|
// be resolved when both Promises are finished. Otherwise Promise.all
|
|
|
|
// will reject on first rejected Promise and we can redirect the page
|
|
|
|
// before all operations are done.
|
|
|
|
Promise.all([
|
|
|
|
requestFeedbackPromise,
|
|
|
|
room.leave().then(disconnect, disconnect)
|
2016-10-20 19:19:55 +00:00
|
|
|
]).then(values => {
|
2016-10-12 21:30:44 +00:00
|
|
|
APP.API.notifyReadyToClose();
|
2016-10-20 19:19:55 +00:00
|
|
|
maybeRedirectToWelcomePage(values[0]);
|
2016-10-12 21:30:44 +00:00
|
|
|
});
|
2017-01-12 21:53:17 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the email for the local user
|
|
|
|
* @param email {string} the new email
|
|
|
|
*/
|
|
|
|
changeLocalEmail(email = '') {
|
2017-06-01 17:55:44 +00:00
|
|
|
email = String(email).trim();
|
2017-01-12 21:53:17 +00:00
|
|
|
|
|
|
|
if (email === APP.settings.getEmail()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-03-23 18:01:33 +00:00
|
|
|
|
|
|
|
const localId = room ? room.myUserId() : undefined;
|
|
|
|
|
|
|
|
APP.store.dispatch(participantUpdated({
|
|
|
|
id: localId,
|
|
|
|
local: true,
|
|
|
|
email
|
|
|
|
}));
|
2017-01-12 21:53:17 +00:00
|
|
|
|
|
|
|
APP.settings.setEmail(email);
|
2017-03-23 18:01:33 +00:00
|
|
|
APP.UI.setUserEmail(localId, email);
|
2017-01-12 21:53:17 +00:00
|
|
|
sendData(commands.EMAIL, email);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the avatar url for the local user
|
|
|
|
* @param url {string} the new url
|
|
|
|
*/
|
|
|
|
changeLocalAvatarUrl(url = '') {
|
2017-06-01 17:55:44 +00:00
|
|
|
url = String(url).trim();
|
2017-01-12 21:53:17 +00:00
|
|
|
|
|
|
|
if (url === APP.settings.getAvatarUrl()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-03-23 18:01:33 +00:00
|
|
|
|
|
|
|
const localId = room ? room.myUserId() : undefined;
|
|
|
|
|
|
|
|
APP.store.dispatch(participantUpdated({
|
|
|
|
id: localId,
|
|
|
|
local: true,
|
|
|
|
avatarURL: url
|
|
|
|
}));
|
2017-01-12 21:53:17 +00:00
|
|
|
|
|
|
|
APP.settings.setAvatarUrl(url);
|
2017-03-23 18:01:33 +00:00
|
|
|
APP.UI.setUserAvatarUrl(localId, url);
|
2017-01-12 21:53:17 +00:00
|
|
|
sendData(commands.AVATAR_URL, url);
|
2016-12-09 23:15:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a message via the data channel.
|
2017-01-18 00:16:18 +00:00
|
|
|
* @param {string} to the id of the endpoint that should receive the
|
|
|
|
* message. If "" - the message will be sent to all participants.
|
|
|
|
* @param {object} payload the payload of the message.
|
2016-12-09 23:15:04 +00:00
|
|
|
* @throws NetworkError or InvalidStateError or Error if the operation
|
|
|
|
* fails.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
sendEndpointMessage(to, payload) {
|
2016-12-09 23:15:04 +00:00
|
|
|
room.sendEndpointMessage(to, payload);
|
2017-01-23 18:07:08 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds new listener.
|
|
|
|
* @param {String} eventName the name of the event
|
|
|
|
* @param {Function} listener the listener.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
addListener(eventName, listener) {
|
2017-01-23 18:07:08 +00:00
|
|
|
eventEmitter.addListener(eventName, listener);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes listener.
|
|
|
|
* @param {String} eventName the name of the event that triggers the
|
|
|
|
* listener
|
|
|
|
* @param {Function} listener the listener.
|
|
|
|
*/
|
2017-04-11 19:40:03 +00:00
|
|
|
removeListener(eventName, listener) {
|
2017-01-23 18:07:08 +00:00
|
|
|
eventEmitter.removeListener(eventName, listener);
|
2017-03-21 17:14:13 +00:00
|
|
|
},
|
|
|
|
|
2017-03-23 17:45:51 +00:00
|
|
|
/**
|
|
|
|
* Changes the display name for the local user
|
|
|
|
* @param nickname {string} the new display name
|
|
|
|
*/
|
|
|
|
changeLocalDisplayName(nickname = '') {
|
|
|
|
const formattedNickname
|
|
|
|
= nickname.trim().substr(0, MAX_DISPLAY_NAME_LENGTH);
|
|
|
|
|
|
|
|
if (formattedNickname === APP.settings.getDisplayName()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-03 23:57:52 +00:00
|
|
|
APP.store.dispatch(participantUpdated({
|
|
|
|
id: this.getMyUserId(),
|
|
|
|
local: true,
|
|
|
|
name: formattedNickname
|
|
|
|
}));
|
|
|
|
|
2017-03-23 17:45:51 +00:00
|
|
|
APP.settings.setDisplayName(formattedNickname);
|
2017-04-18 15:35:14 +00:00
|
|
|
if (room) {
|
|
|
|
room.setDisplayName(formattedNickname);
|
|
|
|
APP.UI.changeDisplayName(this.getMyUserId(), formattedNickname);
|
|
|
|
}
|
2017-06-22 21:28:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the desktop sharing source id or undefined if the desktop sharing
|
|
|
|
* is not active at the moment.
|
|
|
|
*
|
|
|
|
* @returns {string|undefined} - The source id. If the track is not desktop
|
|
|
|
* track or the source id is not available, undefined will be returned.
|
|
|
|
*/
|
|
|
|
getDesktopSharingSourceId() {
|
2017-08-18 11:30:30 +00:00
|
|
|
return this.localVideo.sourceId;
|
2017-07-07 22:45:24 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the desktop sharing source type or undefined if the desktop
|
|
|
|
* sharing is not active at the moment.
|
|
|
|
*
|
|
|
|
* @returns {'screen'|'window'|undefined} - The source type. If the track is
|
|
|
|
* not desktop track or the source type is not available, undefined will be
|
|
|
|
* returned.
|
|
|
|
*/
|
|
|
|
getDesktopSharingSourceType() {
|
2017-08-18 11:30:30 +00:00
|
|
|
return this.localVideo.sourceType;
|
2017-08-04 08:15:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the video muted status.
|
|
|
|
*
|
|
|
|
* @param {boolean} muted - New muted status.
|
|
|
|
*/
|
|
|
|
setVideoMuteStatus(muted) {
|
2017-08-18 11:30:30 +00:00
|
|
|
APP.UI.setVideoMuted(this.getMyUserId(), muted);
|
|
|
|
APP.API.notifyVideoMutedStatusChanged(muted);
|
2017-08-04 08:15:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the audio muted status.
|
|
|
|
*
|
|
|
|
* @param {boolean} muted - New muted status.
|
|
|
|
*/
|
|
|
|
setAudioMuteStatus(muted) {
|
2017-08-18 11:30:30 +00:00
|
|
|
APP.UI.setAudioMuted(this.getMyUserId(), muted);
|
|
|
|
APP.API.notifyAudioMutedStatusChanged(muted);
|
|
|
|
}
|
2016-07-08 01:44:04 +00:00
|
|
|
};
|