2016-01-06 22:39:13 +00:00
|
|
|
/* global $, APP, JitsiMeetJS, config, interfaceConfig */
|
|
|
|
import {openConnection} from './connection';
|
|
|
|
//FIXME:
|
|
|
|
import createRoomLocker from './modules/UI/authentication/RoomLocker';
|
|
|
|
//FIXME:
|
|
|
|
import AuthHandler from './modules/UI/authentication/AuthHandler';
|
|
|
|
|
2016-01-29 15:33:16 +00:00
|
|
|
import ConnectionQuality from './modules/connectionquality/connectionquality';
|
|
|
|
|
2016-05-05 16:14:27 +00:00
|
|
|
import Recorder from './modules/recorder/Recorder';
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
import CQEvents from './service/connectionquality/CQEvents';
|
|
|
|
import UIEvents from './service/UI/UIEvents';
|
|
|
|
|
2016-06-13 11:49:00 +00:00
|
|
|
import mediaDeviceHelper from './modules/devices/mediaDeviceHelper';
|
|
|
|
|
2016-07-25 22:04:39 +00:00
|
|
|
import {reportError} from './modules/util/helpers';
|
|
|
|
|
2016-08-26 21:07:20 +00:00
|
|
|
import UIErrors from './modules/UI/UIErrors';
|
2016-08-26 16:41:57 +00:00
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
const ConnectionEvents = JitsiMeetJS.events.connection;
|
|
|
|
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
|
|
|
|
2016-02-09 10:19:43 +00:00
|
|
|
let room, connection, localAudio, localVideo, roomLocker;
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2016-07-22 18:42:41 +00:00
|
|
|
/**
|
|
|
|
* Indicates whether the connection is interrupted or not.
|
|
|
|
*/
|
|
|
|
let connectionIsInterrupted = false;
|
|
|
|
|
2016-08-10 19:13:32 +00:00
|
|
|
/**
|
|
|
|
* Indicates whether extension external installation is in progress or not.
|
|
|
|
*/
|
|
|
|
let DSExternalInstallationInProgress = false;
|
|
|
|
|
2016-03-24 01:43:29 +00:00
|
|
|
import {VIDEO_CONTAINER_TYPE} from "./modules/UI/videolayout/LargeVideo";
|
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
/**
|
|
|
|
* Known custom conference commands.
|
|
|
|
*/
|
|
|
|
const commands = {
|
|
|
|
CONNECTION_QUALITY: "stats",
|
|
|
|
EMAIL: "email",
|
|
|
|
AVATAR_URL: "avatar-url",
|
2016-08-31 16:41:17 +00:00
|
|
|
AVATAR_ID: "avatar-id",
|
2016-06-13 21:11:44 +00:00
|
|
|
ETHERPAD: "etherpad",
|
|
|
|
SHARED_VIDEO: "shared-video",
|
|
|
|
CUSTOM_ROLE: "custom-role"
|
|
|
|
};
|
|
|
|
|
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-06-23 08:03:26 +00:00
|
|
|
/**
|
|
|
|
* Creates local media tracks and connects to room. Will show error
|
|
|
|
* dialogs in case if accessing local microphone and/or camera failed. Will
|
|
|
|
* show guidance overlay for users on how to give access to camera and/or
|
|
|
|
* microphone,
|
|
|
|
* @param {string} roomName
|
|
|
|
* @returns {Promise.<JitsiLocalTrack[], JitsiConnection>}
|
|
|
|
*/
|
|
|
|
function createInitialLocalTracksAndConnect(roomName) {
|
|
|
|
let audioAndVideoError,
|
2016-06-24 09:47:13 +00:00
|
|
|
audioOnlyError;
|
|
|
|
|
|
|
|
JitsiMeetJS.mediaDevices.addEventListener(
|
|
|
|
JitsiMeetJS.events.mediaDevices.PERMISSION_PROMPT_IS_SHOWN,
|
|
|
|
browser => APP.UI.showUserMediaPermissionsGuidanceOverlay(browser));
|
2016-06-23 08:03:26 +00:00
|
|
|
|
|
|
|
// First try to retrieve both audio and video.
|
2016-06-24 09:47:13 +00:00
|
|
|
let tryCreateLocalTracks = createLocalTracks(
|
|
|
|
{ devices: ['audio', 'video'] }, true)
|
2016-06-23 08:03:26 +00:00
|
|
|
.catch(err => {
|
|
|
|
// If failed then try to retrieve only audio.
|
|
|
|
audioAndVideoError = err;
|
2016-06-24 09:47:13 +00:00
|
|
|
return createLocalTracks({ devices: ['audio'] }, true);
|
2016-06-23 08:03:26 +00:00
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
// If audio failed too then just return empty array for tracks.
|
|
|
|
audioOnlyError = err;
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
|
|
|
|
return Promise.all([ tryCreateLocalTracks, connect(roomName) ])
|
|
|
|
.then(([tracks, con]) => {
|
|
|
|
APP.UI.hideUserMediaPermissionsGuidanceOverlay();
|
|
|
|
|
|
|
|
if (audioAndVideoError) {
|
|
|
|
if (audioOnlyError) {
|
|
|
|
// If both requests for 'audio' + 'video' and 'audio' only
|
|
|
|
// failed, we assume that there is some problems with user's
|
|
|
|
// microphone and show corresponding dialog.
|
|
|
|
APP.UI.showDeviceErrorDialog(audioOnlyError, null);
|
|
|
|
} 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.
|
|
|
|
APP.UI.showDeviceErrorDialog(null, audioAndVideoError);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [tracks, con];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|
2016-06-13 21:11:44 +00:00
|
|
|
function sendData (command, value) {
|
|
|
|
room.removeCommand(command);
|
|
|
|
room.sendCommand(command, {value: value});
|
2016-01-15 14:59:35 +00:00
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
* @param {boolean} muted if audio stream should be muted or unmuted.
|
2016-04-19 18:07:04 +00:00
|
|
|
* @param {boolean} indicates if this local audio mute was a result of user
|
|
|
|
* interaction
|
|
|
|
*
|
2016-02-03 14:44:10 +00:00
|
|
|
*/
|
2016-04-19 18:07:04 +00:00
|
|
|
function muteLocalAudio (muted, userInteraction) {
|
2016-02-03 14:44:10 +00:00
|
|
|
if (!localAudio) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (muted) {
|
2016-03-08 23:33:09 +00:00
|
|
|
localAudio.mute().then(function(value) {},
|
|
|
|
function(value) {
|
|
|
|
console.warn('Audio Mute was rejected:', value);
|
|
|
|
}
|
|
|
|
);
|
2016-02-03 14:44:10 +00:00
|
|
|
} else {
|
2016-03-08 23:33:09 +00:00
|
|
|
localAudio.unmute().then(function(value) {},
|
|
|
|
function(value) {
|
|
|
|
console.warn('Audio unmute was rejected:', value);
|
|
|
|
}
|
|
|
|
);
|
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.
|
|
|
|
*/
|
|
|
|
function muteLocalVideo (muted) {
|
|
|
|
if (!localVideo) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (muted) {
|
2016-03-08 23:33:09 +00:00
|
|
|
localVideo.mute().then(function(value) {},
|
|
|
|
function(value) {
|
|
|
|
console.warn('Video mute was rejected:', value);
|
|
|
|
}
|
|
|
|
);
|
2016-02-03 14:44:10 +00:00
|
|
|
} else {
|
2016-03-08 23:33:09 +00:00
|
|
|
localVideo.unmute().then(function(value) {},
|
|
|
|
function(value) {
|
|
|
|
console.warn('Video unmute was rejected:', value);
|
|
|
|
}
|
|
|
|
);
|
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.
|
|
|
|
*/
|
|
|
|
function maybeRedirectToWelcomePage() {
|
|
|
|
if (!config.enableWelcomePage) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// redirect to welcome page
|
|
|
|
setTimeout(() => {
|
|
|
|
APP.settings.setWelcomePageEnabled(true);
|
|
|
|
window.location.pathname = "/";
|
|
|
|
}, 3000);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes connection.disconnect and shows the feedback dialog
|
|
|
|
* @param {boolean} [requestFeedback=false] if user feedback should be requested
|
|
|
|
* @returns Promise.
|
|
|
|
*/
|
|
|
|
function disconnectAndShowFeedback(requestFeedback) {
|
2016-06-13 21:11:44 +00:00
|
|
|
APP.UI.hideRingOverLay();
|
2016-05-05 16:11:05 +00:00
|
|
|
connection.disconnect();
|
2016-06-17 20:35:40 +00:00
|
|
|
APP.API.notifyConferenceLeft(APP.conference.roomName);
|
2016-05-05 16:11:05 +00:00
|
|
|
if (requestFeedback) {
|
|
|
|
return APP.UI.requestFeedback();
|
|
|
|
} else {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-25 13:52:15 +00:00
|
|
|
/**
|
|
|
|
* Disconnect from the conference and optionally request user feedback.
|
|
|
|
* @param {boolean} [requestFeedback=false] if user feedback should be requested
|
|
|
|
*/
|
|
|
|
function hangup (requestFeedback = false) {
|
2016-05-05 16:11:05 +00:00
|
|
|
const errCallback = (f, err) => {
|
2016-08-26 16:41:57 +00:00
|
|
|
|
|
|
|
// If we want to break out the chain in our error handler, it needs
|
|
|
|
// to return a rejected promise. In the case of feedback request
|
|
|
|
// in progress it's important to not redirect to the welcome page
|
|
|
|
// (see below maybeRedirectToWelcomePage call).
|
2016-08-26 21:07:20 +00:00
|
|
|
if (err === UIErrors.FEEDBACK_REQUEST_IN_PROGRESS) {
|
2016-08-26 16:41:57 +00:00
|
|
|
return Promise.reject('Feedback request in progress.');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.error('Error occurred during hanging up: ', err);
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
2016-05-05 16:11:05 +00:00
|
|
|
};
|
|
|
|
const disconnect = disconnectAndShowFeedback.bind(null, requestFeedback);
|
|
|
|
APP.conference._room.leave()
|
|
|
|
.then(disconnect)
|
|
|
|
.catch(errCallback.bind(null, disconnect))
|
|
|
|
.then(maybeRedirectToWelcomePage)
|
2016-08-26 16:41:57 +00:00
|
|
|
.catch(function(err){
|
|
|
|
console.log(err);
|
|
|
|
});
|
2016-08-23 18:53:40 +00:00
|
|
|
|
2016-02-25 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 15:25:11 +00:00
|
|
|
/**
|
|
|
|
* Create local tracks of specified types.
|
2016-06-24 09:47:13 +00:00
|
|
|
* @param {Object} options
|
|
|
|
* @param {string[]} options.devices - required track types
|
|
|
|
* ('audio', 'video' etc.)
|
|
|
|
* @param {string|null} (options.cameraDeviceId) - camera device id, if
|
|
|
|
* undefined - one from settings will be used
|
|
|
|
* @param {string|null} (options.micDeviceId) - microphone device id, if
|
|
|
|
* undefined - one from settings will be used
|
|
|
|
* @param {boolean} (checkForPermissionPrompt) - if lib-jitsi-meet should check
|
|
|
|
* for gUM permission prompt
|
2016-02-04 15:25:11 +00:00
|
|
|
* @returns {Promise<JitsiLocalTrack[]>}
|
|
|
|
*/
|
2016-06-24 09:47:13 +00:00
|
|
|
function createLocalTracks (options, checkForPermissionPrompt) {
|
|
|
|
options || (options = {});
|
|
|
|
|
|
|
|
return JitsiMeetJS
|
|
|
|
.createLocalTracks({
|
|
|
|
// copy array to avoid mutations inside library
|
|
|
|
devices: options.devices.slice(0),
|
|
|
|
resolution: config.resolution,
|
|
|
|
cameraDeviceId: typeof options.cameraDeviceId === 'undefined' ||
|
|
|
|
options.cameraDeviceId === null
|
2016-05-17 15:58:25 +00:00
|
|
|
? APP.settings.getCameraDeviceId()
|
2016-06-24 09:47:13 +00:00
|
|
|
: options.cameraDeviceId,
|
|
|
|
micDeviceId: typeof options.micDeviceId === 'undefined' ||
|
|
|
|
options.micDeviceId === null
|
|
|
|
? APP.settings.getMicDeviceId()
|
|
|
|
: options.micDeviceId,
|
|
|
|
// adds any ff fake device settings if any
|
2016-08-10 19:13:32 +00:00
|
|
|
firefox_fake_device: config.firefox_fake_device,
|
|
|
|
desktopSharingExtensionExternalInstallation:
|
|
|
|
options.desktopSharingExtensionExternalInstallation
|
2016-09-13 17:20:08 +00:00
|
|
|
}, checkForPermissionPrompt).then( (tracks) => {
|
|
|
|
tracks.forEach((track) => {
|
|
|
|
track.on(TrackEvents.NO_DATA_FROM_SOURCE,
|
|
|
|
APP.UI.showTrackNotWorkingDialog.bind(null, track));
|
|
|
|
});
|
|
|
|
return tracks;
|
|
|
|
}).catch(function (err) {
|
2016-06-24 09:47:13 +00:00
|
|
|
console.error(
|
|
|
|
'failed to create local tracks', options.devices, err);
|
|
|
|
return Promise.reject(err);
|
|
|
|
});
|
|
|
|
}
|
2016-02-04 15:25:11 +00:00
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
/**
|
|
|
|
* Changes the email for the local user
|
|
|
|
* @param email {string} the new email
|
|
|
|
*/
|
|
|
|
function changeLocalEmail(email = '') {
|
|
|
|
email = email.trim();
|
|
|
|
|
|
|
|
if (email === APP.settings.getEmail()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
APP.settings.setEmail(email);
|
|
|
|
APP.UI.setUserEmail(room.myUserId(), email);
|
|
|
|
sendData(commands.EMAIL, email);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the display name for the local user
|
|
|
|
* @param nickname {string} the new display name
|
|
|
|
*/
|
|
|
|
function changeLocalDisplayName(nickname = '') {
|
|
|
|
nickname = nickname.trim();
|
|
|
|
|
|
|
|
if (nickname === APP.settings.getDisplayName()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
APP.settings.setDisplayName(nickname);
|
|
|
|
room.setDisplayName(nickname);
|
2016-07-08 01:44:04 +00:00
|
|
|
APP.UI.changeDisplayName(APP.conference.getMyUserId(), nickname);
|
2016-06-13 21:11:44 +00:00
|
|
|
}
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
class ConferenceConnector {
|
|
|
|
constructor(resolve, reject) {
|
|
|
|
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-01-22 17:32:38 +00:00
|
|
|
_handleConferenceFailed(err, msg) {
|
2016-01-06 22:39:13 +00:00
|
|
|
this._unsubscribe();
|
|
|
|
this._reject(err);
|
|
|
|
}
|
2016-01-25 22:39:05 +00:00
|
|
|
_onConferenceFailed(err, ...params) {
|
2016-01-28 14:36:55 +00:00
|
|
|
console.error('CONFERENCE FAILED:', err, ...params);
|
2016-06-13 21:11:44 +00:00
|
|
|
APP.UI.hideRingOverLay();
|
2016-01-06 22:39:13 +00:00
|
|
|
switch (err) {
|
|
|
|
// room is locked by the password
|
|
|
|
case ConferenceErrors.PASSWORD_REQUIRED:
|
|
|
|
APP.UI.markRoomLocked(true);
|
|
|
|
roomLocker.requirePassword().then(function () {
|
2016-09-15 21:34:02 +00:00
|
|
|
let pass = roomLocker.password;
|
|
|
|
// we received that password is required, but user is trying
|
|
|
|
// anyway to login without a password, mark room as not locked
|
|
|
|
// in case he succeeds (maybe someone removed the password
|
|
|
|
// meanwhile), if it is still locked another password required
|
|
|
|
// will be received and the room again will be marked as locked
|
|
|
|
if (!pass)
|
|
|
|
APP.UI.markRoomLocked(false);
|
2016-01-06 22:39:13 +00:00
|
|
|
room.join(roomLocker.password);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
|
|
|
|
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-01-22 17:32:38 +00:00
|
|
|
case ConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE:
|
|
|
|
APP.UI.notifyBridgeDown();
|
|
|
|
break;
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
// not enough rights to create conference
|
|
|
|
case ConferenceErrors.AUTHENTICATION_REQUIRED:
|
|
|
|
// schedule reconnect to check if someone else created the room
|
|
|
|
this.reconnectTimeout = setTimeout(function () {
|
|
|
|
room.join();
|
|
|
|
}, 5000);
|
|
|
|
|
|
|
|
// notify user that auth is required
|
2016-02-16 15:42:28 +00:00
|
|
|
|
|
|
|
AuthHandler.requireAuth(room, roomLocker.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;
|
|
|
|
|
|
|
|
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-02-22 14:57:36 +00:00
|
|
|
room.leave().then(() => connection.disconnect());
|
2016-02-05 15:04:48 +00:00
|
|
|
APP.UI.notifyFocusLeft();
|
|
|
|
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:
|
|
|
|
window.location.reload();
|
|
|
|
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) {
|
|
|
|
console.error('CONFERENCE Error:', err, params);
|
|
|
|
switch (err) {
|
|
|
|
case ConferenceErrors.CHAT_ERROR:
|
|
|
|
{
|
|
|
|
let [code, msg] = params;
|
|
|
|
APP.UI.showChatError(code, msg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.error("Unknown error.");
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
isModerator: false,
|
|
|
|
audioMuted: false,
|
|
|
|
videoMuted: false,
|
2016-02-04 15:25:11 +00:00
|
|
|
isSharingScreen: false,
|
|
|
|
isDesktopSharingEnabled: false,
|
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,
|
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;
|
|
|
|
JitsiMeetJS.setLogLevel(JitsiMeetJS.logLevels.TRACE);
|
|
|
|
|
2016-04-06 16:52:31 +00:00
|
|
|
// attaches global error handler, if there is already one, respect it
|
|
|
|
if(JitsiMeetJS.getGlobalOnErrorHandler){
|
|
|
|
var oldOnErrorHandler = window.onerror;
|
|
|
|
window.onerror = function (message, source, lineno, colno, error) {
|
|
|
|
JitsiMeetJS.getGlobalOnErrorHandler(
|
|
|
|
message, source, lineno, colno, error);
|
|
|
|
|
|
|
|
if(oldOnErrorHandler)
|
|
|
|
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);
|
|
|
|
|
|
|
|
if(oldOnUnhandledRejection)
|
|
|
|
oldOnUnhandledRejection(event);
|
|
|
|
};
|
2016-04-06 16:52:31 +00:00
|
|
|
}
|
2016-04-05 22:18:38 +00:00
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
return JitsiMeetJS.init(config)
|
|
|
|
.then(() => createInitialLocalTracksAndConnect(options.roomName))
|
|
|
|
.then(([tracks, con]) => {
|
|
|
|
console.log('initialized with %s local tracks', tracks.length);
|
|
|
|
APP.connection = connection = con;
|
|
|
|
this._createRoom(tracks);
|
|
|
|
this.isDesktopSharingEnabled =
|
|
|
|
JitsiMeetJS.isDesktopSharingEnabled();
|
|
|
|
|
|
|
|
// if user didn't give access to mic or camera or doesn't have
|
|
|
|
// them at all, we disable corresponding toolbar buttons
|
|
|
|
if (!tracks.find((t) => t.isAudioTrack())) {
|
|
|
|
APP.UI.disableMicrophoneButton();
|
2016-06-21 09:08:32 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 08:03:26 +00:00
|
|
|
if (!tracks.find((t) => t.isVideoTrack())) {
|
|
|
|
APP.UI.disableCameraButton();
|
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) => {
|
|
|
|
(new ConferenceConnector(resolve, reject)).connect();
|
|
|
|
});
|
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}
|
|
|
|
*/
|
2016-01-06 22:39:13 +00:00
|
|
|
isLocalId (id) {
|
2016-07-08 01:44:04 +00:00
|
|
|
return this.getMyUserId() === id;
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for audio mute. Used by shortcuts and API.
|
|
|
|
* @param mute true for mute and false for unmute.
|
|
|
|
*/
|
|
|
|
muteAudio (mute) {
|
2016-02-03 14:44:10 +00:00
|
|
|
muteLocalAudio(mute);
|
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() {
|
|
|
|
return this.audioMuted;
|
|
|
|
},
|
2016-01-06 22:39:13 +00:00
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for audio mute. Used by shortcuts and API.
|
|
|
|
*/
|
|
|
|
toggleAudioMuted () {
|
|
|
|
this.muteAudio(!this.audioMuted);
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for video mute. Used by shortcuts and API.
|
|
|
|
* @param mute true for mute and false for unmute.
|
|
|
|
*/
|
|
|
|
muteVideo (mute) {
|
2016-02-03 14:44:10 +00:00
|
|
|
muteLocalVideo(mute);
|
2016-01-06 22:39:13 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Simulates toolbar button click for video mute. Used by shortcuts and API.
|
|
|
|
*/
|
|
|
|
toggleVideoMuted () {
|
|
|
|
this.muteVideo(!this.videoMuted);
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Retrieve list of conference participants (without local user).
|
|
|
|
* @returns {JitsiParticipant[]}
|
|
|
|
*/
|
2016-01-06 22:39:13 +00:00
|
|
|
listMembers () {
|
|
|
|
return room.getParticipants();
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Retrieve list of ids of conference participants (without local user).
|
|
|
|
* @returns {string[]}
|
|
|
|
*/
|
2016-01-06 22:39:13 +00:00
|
|
|
listMembersIds () {
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
isParticipantModerator (id) {
|
|
|
|
let user = room.getParticipantById(id);
|
|
|
|
return user && user.isModerator();
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Check if SIP is supported.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2016-01-06 22:39:13 +00:00
|
|
|
sipGatewayEnabled () {
|
|
|
|
return room.isSIPCallingSupported();
|
|
|
|
},
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
isCallstatsEnabled () {
|
|
|
|
return room.isCallstatsEnabled();
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
sendFeedback (overallFeedback, detailedFeedback) {
|
|
|
|
return room.sendFeedback (overallFeedback, detailedFeedback);
|
|
|
|
},
|
2016-08-03 16:08:23 +00:00
|
|
|
/**
|
|
|
|
* Returns the connection times stored in the library.
|
|
|
|
*/
|
|
|
|
getConnectionTimes () {
|
|
|
|
return this._room.getConnectionTimes();
|
|
|
|
},
|
2016-01-06 22:39:13 +00:00
|
|
|
// used by torture currently
|
|
|
|
isJoined () {
|
|
|
|
return this._room
|
|
|
|
&& this._room.isJoined();
|
|
|
|
},
|
|
|
|
getConnectionState () {
|
|
|
|
return this._room
|
|
|
|
&& this._room.getConnectionState();
|
|
|
|
},
|
|
|
|
getMyUserId () {
|
|
|
|
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)
|
|
|
|
*/
|
2016-01-19 19:32:29 +00:00
|
|
|
getPeerSSRCAudioLevel (id) {
|
|
|
|
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() {
|
|
|
|
return ConnectionQuality.getStats();
|
|
|
|
},
|
2016-01-14 19:50:10 +00:00
|
|
|
// end used by torture
|
|
|
|
|
2016-01-14 15:35:37 +00:00
|
|
|
getLogs () {
|
|
|
|
return room.getLogs();
|
|
|
|
},
|
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
|
|
|
roomLocker = createRoomLocker(room);
|
|
|
|
this._room = room; // FIXME do not use this
|
|
|
|
|
|
|
|
let email = APP.settings.getEmail();
|
2016-06-13 21:11:44 +00:00
|
|
|
email && sendData(this.commands.defaults.EMAIL, email);
|
|
|
|
|
|
|
|
let avatarUrl = APP.settings.getAvatarUrl();
|
|
|
|
avatarUrl && sendData(this.commands.defaults.AVATAR_URL,
|
|
|
|
avatarUrl);
|
2016-08-31 16:41:17 +00:00
|
|
|
!email && sendData(
|
|
|
|
this.commands.defaults.AVATAR_ID, APP.settings.getAvatarId());
|
2016-04-07 17:08:00 +00:00
|
|
|
|
|
|
|
let nick = APP.settings.getDisplayName();
|
|
|
|
if (config.useNicks && !nick) {
|
|
|
|
nick = APP.UI.askForNickname();
|
|
|
|
APP.settings.setDisplayName(nick);
|
|
|
|
}
|
|
|
|
nick && room.setDisplayName(nick);
|
|
|
|
|
|
|
|
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 {
|
|
|
|
console.error(
|
|
|
|
"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;
|
2016-03-29 17:13:54 +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-02-09 10:19:43 +00:00
|
|
|
/**
|
|
|
|
* Start using provided video stream.
|
|
|
|
* Stops previous video 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
|
|
|
*/
|
|
|
|
useVideoStream (stream) {
|
2016-02-16 13:33:53 +00:00
|
|
|
let promise = Promise.resolve();
|
2016-02-09 10:19:43 +00:00
|
|
|
if (localVideo) {
|
2016-02-16 13:33:53 +00:00
|
|
|
// this calls room.removeTrack internally
|
|
|
|
// so we don't need to remove it manually
|
2016-03-03 12:53:36 +00:00
|
|
|
promise = localVideo.dispose();
|
2016-02-09 10:19:43 +00:00
|
|
|
}
|
|
|
|
localVideo = stream;
|
|
|
|
|
2016-02-16 13:33:53 +00:00
|
|
|
return promise.then(function () {
|
|
|
|
if (stream) {
|
|
|
|
return room.addTrack(stream);
|
|
|
|
}
|
|
|
|
}).then(() => {
|
|
|
|
if (stream) {
|
|
|
|
this.videoMuted = stream.isMuted();
|
|
|
|
this.isSharingScreen = stream.videoType === 'desktop';
|
2016-02-09 10:19:43 +00:00
|
|
|
|
2016-02-16 13:33:53 +00:00
|
|
|
APP.UI.addLocalStream(stream);
|
2016-05-26 08:53:02 +00:00
|
|
|
|
|
|
|
stream.videoType === 'camera' && APP.UI.enableCameraButton();
|
2016-02-16 13:33:53 +00:00
|
|
|
} else {
|
|
|
|
this.videoMuted = false;
|
|
|
|
this.isSharingScreen = false;
|
|
|
|
}
|
2016-02-09 10:19:43 +00:00
|
|
|
|
2016-07-08 01:44:04 +00:00
|
|
|
APP.UI.setVideoMuted(this.getMyUserId(), this.videoMuted);
|
2016-02-09 10:19:43 +00:00
|
|
|
|
2016-02-16 13:33:53 +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
|
|
|
*/
|
|
|
|
useAudioStream (stream) {
|
2016-02-16 13:33:53 +00:00
|
|
|
let promise = Promise.resolve();
|
2016-02-09 10:19:43 +00:00
|
|
|
if (localAudio) {
|
2016-02-16 13:33:53 +00:00
|
|
|
// this calls room.removeTrack internally
|
|
|
|
// so we don't need to remove it manually
|
2016-03-03 12:53:36 +00:00
|
|
|
promise = localAudio.dispose();
|
2016-02-09 10:19:43 +00:00
|
|
|
}
|
|
|
|
localAudio = stream;
|
|
|
|
|
2016-02-16 13:33:53 +00:00
|
|
|
return promise.then(function () {
|
|
|
|
if (stream) {
|
|
|
|
return room.addTrack(stream);
|
|
|
|
}
|
|
|
|
}).then(() => {
|
|
|
|
if (stream) {
|
|
|
|
this.audioMuted = stream.isMuted();
|
2016-02-09 10:19:43 +00:00
|
|
|
|
2016-02-16 13:33:53 +00:00
|
|
|
APP.UI.addLocalStream(stream);
|
|
|
|
} else {
|
|
|
|
this.audioMuted = false;
|
|
|
|
}
|
2016-02-09 10:19:43 +00:00
|
|
|
|
2016-05-17 15:58:25 +00:00
|
|
|
APP.UI.enableMicrophoneButton();
|
2016-07-08 01:44:04 +00:00
|
|
|
APP.UI.setAudioMuted(this.getMyUserId(), this.audioMuted);
|
2016-02-16 13:33:53 +00:00
|
|
|
});
|
2016-02-09 10:19:43 +00:00
|
|
|
},
|
|
|
|
|
2016-02-04 15:25:11 +00:00
|
|
|
videoSwitchInProgress: false,
|
2016-02-16 13:33:53 +00:00
|
|
|
toggleScreenSharing (shareScreen = !this.isSharingScreen) {
|
2016-02-04 15:25:11 +00:00
|
|
|
if (this.videoSwitchInProgress) {
|
|
|
|
console.warn("Switch in progress.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this.isDesktopSharingEnabled) {
|
|
|
|
console.warn("Cannot toggle screen sharing: not supported.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.videoSwitchInProgress = true;
|
2016-08-10 19:13:32 +00:00
|
|
|
let externalInstallation = false;
|
2016-02-04 15:25:11 +00:00
|
|
|
|
2016-02-16 13:33:53 +00:00
|
|
|
if (shareScreen) {
|
2016-08-10 19:13:32 +00:00
|
|
|
createLocalTracks({
|
|
|
|
devices: ['desktop'],
|
|
|
|
desktopSharingExtensionExternalInstallation: {
|
|
|
|
interval: 500,
|
|
|
|
checkAgain: () => {
|
|
|
|
return DSExternalInstallationInProgress;
|
|
|
|
},
|
2016-08-25 18:27:58 +00:00
|
|
|
listener: (status, url) => {
|
|
|
|
switch(status) {
|
|
|
|
case "waitingForExtension":
|
|
|
|
DSExternalInstallationInProgress = true;
|
|
|
|
externalInstallation = true;
|
|
|
|
APP.UI.showExtensionExternalInstallationDialog(
|
|
|
|
url);
|
|
|
|
break;
|
|
|
|
case "extensionFound":
|
|
|
|
if(externalInstallation) //close the dialog
|
|
|
|
$.prompt.close();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//Unknown status
|
|
|
|
}
|
2016-08-10 19:13:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}).then(([stream]) => {
|
|
|
|
DSExternalInstallationInProgress = false;
|
|
|
|
// close external installation dialog on success.
|
|
|
|
if(externalInstallation)
|
|
|
|
$.prompt.close();
|
2016-02-04 15:25:11 +00:00
|
|
|
stream.on(
|
2016-03-03 12:53:36 +00:00
|
|
|
TrackEvents.LOCAL_TRACK_STOPPED,
|
2016-02-04 15:25:11 +00:00
|
|
|
() => {
|
|
|
|
// if stream was stopped during screensharing session
|
|
|
|
// then we should switch to video
|
|
|
|
// otherwise we stopped it because we already switched
|
|
|
|
// to video, so nothing to do here
|
|
|
|
if (this.isSharingScreen) {
|
2016-02-16 13:33:53 +00:00
|
|
|
this.toggleScreenSharing(false);
|
2016-02-04 15:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2016-02-16 13:33:53 +00:00
|
|
|
return this.useVideoStream(stream);
|
|
|
|
}).then(() => {
|
2016-02-04 15:25:11 +00:00
|
|
|
this.videoSwitchInProgress = false;
|
2016-08-09 20:04:40 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent(
|
|
|
|
'conference.sharingDesktop.start');
|
2016-02-04 15:25:11 +00:00
|
|
|
console.log('sharing local desktop');
|
|
|
|
}).catch((err) => {
|
2016-08-25 18:27:58 +00:00
|
|
|
// close external installation dialog to show the error.
|
|
|
|
if(externalInstallation)
|
|
|
|
$.prompt.close();
|
2016-02-04 15:25:11 +00:00
|
|
|
this.videoSwitchInProgress = false;
|
2016-02-16 13:33:53 +00:00
|
|
|
this.toggleScreenSharing(false);
|
2016-03-04 21:21:07 +00:00
|
|
|
|
2016-05-25 12:04:48 +00:00
|
|
|
if (err.name === TrackErrors.CHROME_EXTENSION_USER_CANCELED) {
|
2016-03-04 21:21:07 +00:00
|
|
|
return;
|
2016-05-25 12:04:48 +00:00
|
|
|
}
|
2016-03-04 21:21:07 +00:00
|
|
|
|
2016-02-04 15:25:11 +00:00
|
|
|
console.error('failed to share local desktop', err);
|
2016-03-04 21:20:05 +00:00
|
|
|
|
2016-05-25 12:04:48 +00:00
|
|
|
if (err.name === TrackErrors.FIREFOX_EXTENSION_NEEDED) {
|
2016-03-04 21:55:44 +00:00
|
|
|
APP.UI.showExtensionRequiredDialog(
|
|
|
|
config.desktopSharingFirefoxExtensionURL
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-07 18:57:12 +00:00
|
|
|
// Handling:
|
2016-05-26 08:53:02 +00:00
|
|
|
// TrackErrors.PERMISSION_DENIED
|
2016-03-07 18:57:12 +00:00
|
|
|
// TrackErrors.CHROME_EXTENSION_INSTALLATION_ERROR
|
|
|
|
// TrackErrors.GENERAL
|
|
|
|
// and any other
|
2016-05-27 15:49:26 +00:00
|
|
|
let dialogTxt;
|
|
|
|
let dialogTitle;
|
|
|
|
|
|
|
|
if (err.name === TrackErrors.PERMISSION_DENIED) {
|
|
|
|
dialogTxt = APP.translation.generateTranslationHTML(
|
|
|
|
"dialog.screenSharingPermissionDeniedError");
|
|
|
|
dialogTitle = APP.translation.generateTranslationHTML(
|
|
|
|
"dialog.error");
|
|
|
|
} else {
|
|
|
|
dialogTxt = APP.translation.generateTranslationHTML(
|
|
|
|
"dialog.failtoinstall");
|
|
|
|
dialogTitle = APP.translation.generateTranslationHTML(
|
|
|
|
"dialog.permissionDenied");
|
|
|
|
}
|
2016-05-26 08:53:02 +00:00
|
|
|
|
|
|
|
APP.UI.messageHandler.openDialog(dialogTitle, dialogTxt, false);
|
2016-02-04 15:25:11 +00:00
|
|
|
});
|
2016-02-16 13:33:53 +00:00
|
|
|
} else {
|
2016-06-24 09:47:13 +00:00
|
|
|
createLocalTracks({ devices: ['video'] }).then(
|
2016-02-16 13:33:53 +00:00
|
|
|
([stream]) => this.useVideoStream(stream)
|
|
|
|
).then(() => {
|
|
|
|
this.videoSwitchInProgress = false;
|
2016-08-09 20:04:40 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent(
|
|
|
|
'conference.sharingDesktop.stop');
|
2016-02-16 13:33:53 +00:00
|
|
|
console.log('sharing local video');
|
|
|
|
}).catch((err) => {
|
|
|
|
this.useVideoStream(null);
|
|
|
|
this.videoSwitchInProgress = false;
|
|
|
|
console.error('failed to share local video', err);
|
|
|
|
});
|
2016-02-04 15:25:11 +00:00
|
|
|
}
|
|
|
|
},
|
2016-01-15 14:59:35 +00:00
|
|
|
/**
|
|
|
|
* Setup interaction between conference and UI.
|
|
|
|
*/
|
2016-01-06 22:39:13 +00:00
|
|
|
_setupListeners () {
|
|
|
|
// add local streams when joined to the conference
|
|
|
|
room.on(ConferenceEvents.CONFERENCE_JOINED, () => {
|
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
|
|
|
connectionIsInterrupted = false;
|
|
|
|
APP.UI.markVideoInterrupted(false);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2016-02-25 12:32:52 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.AUTH_STATUS_CHANGED,
|
|
|
|
function (authEnabled, authLogin) {
|
|
|
|
APP.UI.updateAuthInfo(authEnabled, authLogin);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
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;
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
console.log('USER %s connnected', id, user);
|
2016-01-14 15:05:54 +00:00
|
|
|
APP.API.notifyUserJoined(id);
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.addUser(id, user.getDisplayName());
|
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
|
|
|
});
|
|
|
|
room.on(ConferenceEvents.USER_LEFT, (id, user) => {
|
|
|
|
console.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
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.USER_ROLE_CHANGED, (id, role) => {
|
|
|
|
if (this.isLocalId(id)) {
|
|
|
|
console.info(`My role changed, new role: ${role}`);
|
|
|
|
this.isModerator = room.isModerator();
|
|
|
|
APP.UI.updateLocalRole(room.isModerator());
|
|
|
|
} else {
|
|
|
|
let user = room.getParticipantById(id);
|
|
|
|
if (user) {
|
|
|
|
APP.UI.updateUserRole(user);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.TRACK_ADDED, (track) => {
|
|
|
|
if(!track || track.isLocal())
|
|
|
|
return;
|
2016-01-29 22:06:54 +00:00
|
|
|
|
|
|
|
track.on(TrackEvents.TRACK_VIDEOTYPE_CHANGED, (type) => {
|
|
|
|
APP.UI.onPeerVideoTypeChanged(track.getParticipantId(), type);
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.addRemoteStream(track);
|
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.TRACK_REMOVED, (track) => {
|
2016-02-23 22:47:55 +00:00
|
|
|
if(!track || track.isLocal())
|
|
|
|
return;
|
|
|
|
|
|
|
|
APP.UI.removeRemoteStream(track);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.TRACK_MUTE_CHANGED, (track) => {
|
|
|
|
if(!track)
|
|
|
|
return;
|
|
|
|
const handler = (track.getType() === "audio")?
|
|
|
|
APP.UI.setAudioMuted : APP.UI.setVideoMuted;
|
|
|
|
let id;
|
|
|
|
const mute = track.isMuted();
|
|
|
|
if(track.isLocal()){
|
2016-07-08 01:44:04 +00:00
|
|
|
id = APP.conference.getMyUserId();
|
2016-01-06 23:25:53 +00:00
|
|
|
if(track.getType() === "audio") {
|
|
|
|
this.audioMuted = mute;
|
|
|
|
} else {
|
|
|
|
this.videoMuted = mute;
|
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
} else {
|
|
|
|
id = track.getParticipantId();
|
|
|
|
}
|
|
|
|
handler(id , mute);
|
|
|
|
});
|
|
|
|
room.on(ConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED, (id, lvl) => {
|
2016-01-29 19:31:58 +00:00
|
|
|
if(this.isLocalId(id) && localAudio && localAudio.isMuted()) {
|
2016-01-06 22:39:13 +00:00
|
|
|
lvl = 0;
|
|
|
|
}
|
2016-01-19 19:32:29 +00:00
|
|
|
|
|
|
|
if(config.debug)
|
2016-02-09 22:49:46 +00:00
|
|
|
{
|
2016-01-19 19:32:29 +00:00
|
|
|
this.audioLevelsMap[id] = lvl;
|
2016-06-07 21:40:43 +00:00
|
|
|
if(config.debugAudioLevels)
|
|
|
|
console.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);
|
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.IN_LAST_N_CHANGED, (inLastN) => {
|
|
|
|
//FIXME
|
|
|
|
if (config.muteLocalVideoIfNotInLastN) {
|
|
|
|
// TODO mute or unmute if required
|
|
|
|
// mark video on UI
|
|
|
|
// APP.UI.markVideoMuted(true/false);
|
|
|
|
}
|
|
|
|
});
|
2016-01-26 21:26:28 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.LAST_N_ENDPOINTS_CHANGED, (ids, enteringIds) => {
|
|
|
|
APP.UI.handleLastNEndpoints(ids, enteringIds);
|
2016-01-06 22:39:13 +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);
|
|
|
|
});
|
|
|
|
room.on(ConferenceEvents.MESSAGE_RECEIVED, (id, text, ts) => {
|
2016-01-14 15:05:54 +00:00
|
|
|
let nick = getDisplayName(id);
|
|
|
|
APP.API.notifyReceivedChatMessage(id, nick, text, ts);
|
|
|
|
APP.UI.addMessage(id, nick, text, ts);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-22 18:42:41 +00:00
|
|
|
room.on(ConferenceEvents.CONNECTION_INTERRUPTED, () => {
|
|
|
|
connectionIsInterrupted = true;
|
|
|
|
ConnectionQuality.updateLocalConnectionQuality(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.CONNECTION_RESTORED, () => {
|
|
|
|
connectionIsInterrupted = false;
|
|
|
|
});
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
room.on(ConferenceEvents.DISPLAY_NAME_CHANGED, (id, displayName) => {
|
2016-01-14 15:05:54 +00:00
|
|
|
APP.API.notifyDisplayNameChanged(id, displayName);
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.changeDisplayName(id, displayName);
|
|
|
|
});
|
|
|
|
|
2016-06-20 21:13:17 +00:00
|
|
|
room.on(ConferenceEvents.PARTICIPANT_PROPERTY_CHANGED,
|
|
|
|
(participant, name, oldValue, newValue) => {
|
|
|
|
if (name === "raisedHand") {
|
|
|
|
APP.UI.setRaisedHandStatus(participant, newValue);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-29 17:13:54 +00:00
|
|
|
room.on(ConferenceEvents.RECORDER_STATE_CHANGED, (status, error) => {
|
|
|
|
console.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
|
|
|
});
|
|
|
|
|
2016-08-30 18:11:01 +00:00
|
|
|
room.on(ConferenceEvents.LOCK_STATE_CHANGED, (state, error) => {
|
2016-09-01 17:57:21 +00:00
|
|
|
console.log("Received channel password lock change: ", state,
|
|
|
|
error);
|
2016-08-30 18:11:01 +00:00
|
|
|
APP.UI.markRoomLocked(state);
|
|
|
|
});
|
|
|
|
|
2016-01-25 22:39:05 +00:00
|
|
|
room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
|
|
|
|
APP.UI.updateUserStatus(id, 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
|
|
|
|
});
|
|
|
|
|
|
|
|
room.on(ConferenceEvents.DTMF_SUPPORT_CHANGED, (isDTMFSupported) => {
|
|
|
|
APP.UI.updateDTMFSupport(isDTMFSupported);
|
|
|
|
});
|
|
|
|
|
2016-08-10 19:13:32 +00:00
|
|
|
APP.UI.addListener(UIEvents.EXTERNAL_INSTALLATION_CANCELED, () => {
|
|
|
|
// Wait a little bit more just to be sure that we won't miss the
|
|
|
|
// extension installation
|
|
|
|
setTimeout(() => DSExternalInstallationInProgress = false, 500);
|
|
|
|
});
|
|
|
|
APP.UI.addListener(UIEvents.OPEN_EXTENSION_STORE, (url) => {
|
|
|
|
window.open(
|
|
|
|
url, "extension_store_window",
|
|
|
|
"resizable,scrollbars=yes,status=1");
|
|
|
|
});
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
APP.UI.addListener(UIEvents.ROOM_LOCK_CLICKED, () => {
|
|
|
|
if (room.isModerator()) {
|
|
|
|
let promise = roomLocker.isLocked
|
|
|
|
? roomLocker.askToUnlock()
|
|
|
|
: roomLocker.askToLock();
|
|
|
|
promise.then(() => {
|
|
|
|
APP.UI.markRoomLocked(roomLocker.isLocked);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
roomLocker.notifyModeratorRequired();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-02-03 14:44:10 +00:00
|
|
|
APP.UI.addListener(UIEvents.AUDIO_MUTED, muteLocalAudio);
|
|
|
|
APP.UI.addListener(UIEvents.VIDEO_MUTED, muteLocalVideo);
|
2016-01-06 22:39:13 +00:00
|
|
|
|
|
|
|
if (!interfaceConfig.filmStripOnly) {
|
|
|
|
APP.UI.addListener(UIEvents.MESSAGE_CREATED, (message) => {
|
2016-01-14 15:05:54 +00:00
|
|
|
APP.API.notifySendingChatMessage(message);
|
2016-01-06 22:39:13 +00:00
|
|
|
room.sendTextMessage(message);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-01-29 15:33:16 +00:00
|
|
|
room.on(ConferenceEvents.CONNECTION_STATS, function (stats) {
|
2016-07-22 18:42:41 +00:00
|
|
|
ConnectionQuality.updateLocalStats(stats, connectionIsInterrupted);
|
2016-01-29 15:33:16 +00:00
|
|
|
});
|
2016-07-21 22:00:57 +00:00
|
|
|
|
|
|
|
ConnectionQuality.addListener(CQEvents.LOCALSTATS_UPDATED,
|
2016-01-06 22:39:13 +00:00
|
|
|
(percent, stats) => {
|
|
|
|
APP.UI.updateLocalStats(percent, stats);
|
2016-07-27 17:46:07 +00:00
|
|
|
// Send only the data that remote participants care about.
|
|
|
|
let data = {
|
|
|
|
bitrate: stats.bitrate,
|
|
|
|
packetLoss: stats.packetLoss};
|
2016-07-25 22:04:39 +00:00
|
|
|
try {
|
|
|
|
room.broadcastEndpointMessage({
|
|
|
|
type: this.commands.defaults.CONNECTION_QUALITY,
|
2016-07-27 17:46:07 +00:00
|
|
|
values: data });
|
2016-07-25 22:04:39 +00:00
|
|
|
} catch (e) {
|
|
|
|
reportError(e);
|
|
|
|
}
|
2016-07-21 22:00:57 +00:00
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2016-07-21 22:00:57 +00:00
|
|
|
room.on(ConferenceEvents.ENDPOINT_MESSAGE_RECEIVED,
|
|
|
|
(participant, payload) => {
|
|
|
|
switch(payload.type) {
|
|
|
|
case this.commands.defaults.CONNECTION_QUALITY:
|
|
|
|
ConnectionQuality.updateRemoteStats(participant.getId(),
|
|
|
|
payload.values);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.warn("Unknown datachannel message", payload);
|
|
|
|
}
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
2016-01-29 15:33:16 +00:00
|
|
|
ConnectionQuality.addListener(CQEvents.REMOTESTATS_UPDATED,
|
2016-01-06 22:39:13 +00:00
|
|
|
(id, percent, stats) => {
|
|
|
|
APP.UI.updateRemoteStats(id, percent, stats);
|
|
|
|
});
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
APP.UI.addListener(UIEvents.EMAIL_CHANGED, changeLocalEmail);
|
|
|
|
room.addCommandListener(this.commands.defaults.EMAIL, (data, from) => {
|
|
|
|
APP.UI.setUserEmail(from, data.value);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
room.addCommandListener(this.commands.defaults.AVATAR_URL,
|
|
|
|
(data, from) => {
|
|
|
|
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) => {
|
|
|
|
APP.UI.setUserAvatarID(from, data.value);
|
|
|
|
});
|
|
|
|
|
2016-06-13 21:11:44 +00:00
|
|
|
APP.UI.addListener(UIEvents.NICKNAME_CHANGED, changeLocalDisplayName);
|
|
|
|
|
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
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.USER_INVITED, (roomUrl) => {
|
|
|
|
APP.UI.inviteParticipants(
|
|
|
|
roomUrl,
|
|
|
|
APP.conference.roomName,
|
|
|
|
roomLocker.password,
|
|
|
|
APP.settings.getDisplayName()
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2016-01-25 22:39:05 +00:00
|
|
|
room.on(
|
|
|
|
ConferenceEvents.AVAILABLE_DEVICES_CHANGED, function (id, devices) {
|
|
|
|
APP.UI.updateDevicesAvailability(id, devices);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-01-06 22:39:13 +00:00
|
|
|
// call hangup
|
|
|
|
APP.UI.addListener(UIEvents.HANGUP, () => {
|
2016-02-25 13:52:15 +00:00
|
|
|
hangup(true);
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// logout
|
|
|
|
APP.UI.addListener(UIEvents.LOGOUT, () => {
|
2016-02-25 13:52:15 +00:00
|
|
|
AuthHandler.logout(room).then(function (url) {
|
|
|
|
if (url) {
|
|
|
|
window.location.href = url;
|
|
|
|
} else {
|
|
|
|
hangup(true);
|
|
|
|
}
|
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.SIP_DIAL, (sipNumber) => {
|
|
|
|
room.dial(sipNumber);
|
|
|
|
});
|
|
|
|
|
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) {
|
|
|
|
JitsiMeetJS.analytics.sendEvent('stream.switch.delay', delay);
|
|
|
|
}
|
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);
|
|
|
|
});
|
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.SELECTED_ENDPOINT, (id) => {
|
2016-07-25 22:04:39 +00:00
|
|
|
try {
|
2016-09-06 17:00:13 +00:00
|
|
|
// 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;
|
|
|
|
|
2016-07-25 22:04:39 +00:00
|
|
|
room.selectParticipant(id);
|
|
|
|
} catch (e) {
|
2016-08-09 20:04:40 +00:00
|
|
|
JitsiMeetJS.analytics.sendEvent('selectParticipant.failed');
|
2016-07-25 22:04:39 +00:00
|
|
|
reportError(e);
|
|
|
|
}
|
2016-01-06 22:39:13 +00:00
|
|
|
});
|
2016-03-24 01:43:29 +00:00
|
|
|
|
|
|
|
APP.UI.addListener(UIEvents.PINNED_ENDPOINT, (smallVideo, isPinned) => {
|
|
|
|
var smallVideoId = smallVideo.getId();
|
2016-07-26 13:32:25 +00:00
|
|
|
if (smallVideo.getVideoType() === VIDEO_CONTAINER_TYPE
|
|
|
|
&& !APP.conference.isLocalId(smallVideoId)) {
|
|
|
|
|
|
|
|
// When the library starts supporting multiple pins we would
|
|
|
|
// pass the isPinned parameter together with the identifier,
|
|
|
|
// but currently we send null to indicate that we unpin the
|
|
|
|
// last pinned.
|
|
|
|
try {
|
|
|
|
room.pinParticipant(isPinned ? smallVideoId : null);
|
|
|
|
} catch (e) {
|
|
|
|
reportError(e);
|
|
|
|
}
|
2016-07-25 22:04:39 +00:00
|
|
|
}
|
2016-01-12 21:11:24 +00:00
|
|
|
});
|
2016-01-06 22:39:13 +00:00
|
|
|
|
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');
|
2016-06-24 09:47:13 +00:00
|
|
|
createLocalTracks({
|
|
|
|
devices: ['video'],
|
|
|
|
cameraDeviceId: cameraDeviceId,
|
|
|
|
micDeviceId: null
|
|
|
|
})
|
|
|
|
.then(([stream]) => {
|
|
|
|
this.useVideoStream(stream);
|
|
|
|
console.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) => {
|
|
|
|
APP.UI.showDeviceErrorDialog(null, err);
|
|
|
|
APP.UI.setSelectedCameraFromSettings();
|
|
|
|
});
|
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');
|
2016-06-24 09:47:13 +00:00
|
|
|
createLocalTracks({
|
|
|
|
devices: ['audio'],
|
|
|
|
cameraDeviceId: null,
|
|
|
|
micDeviceId: micDeviceId
|
|
|
|
})
|
|
|
|
.then(([stream]) => {
|
|
|
|
this.useAudioStream(stream);
|
|
|
|
console.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) => {
|
|
|
|
APP.UI.showDeviceErrorDialog(err, null);
|
|
|
|
APP.UI.setSelectedMicFromSettings();
|
|
|
|
});
|
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-05-10 10:11:41 +00:00
|
|
|
.then(() => console.log('changed audio output device'))
|
2016-05-06 14:31:23 +00:00
|
|
|
.catch((err) => {
|
2016-06-03 08:15:07 +00:00
|
|
|
console.warn('Failed to change audio output device. ' +
|
|
|
|
'Default or previously set audio output device ' +
|
|
|
|
'will be used instead.', err);
|
2016-05-26 08:53:02 +00:00
|
|
|
APP.UI.setSelectedAudioOutputFromSettings();
|
2016-05-06 14:31:23 +00:00
|
|
|
});
|
2016-05-05 14:34:15 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
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.
|
|
|
|
* @param eventName one of the ConferenceEvents
|
|
|
|
* @param callBack the function to be called when the event occurs
|
|
|
|
*/
|
|
|
|
addConferenceListener(eventName, callBack) {
|
2016-04-25 20:39:31 +00:00
|
|
|
room.on(eventName, callBack);
|
2016-06-13 11:49:00 +00:00
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Inits list of current devices and event listener for device change.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_initDeviceList() {
|
|
|
|
if (JitsiMeetJS.mediaDevices.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
|
|
|
|
// getConstraints() method will be implemented in browsers.
|
|
|
|
if (localAudio) {
|
2016-09-07 21:48:57 +00:00
|
|
|
APP.settings.setMicDeviceId(
|
|
|
|
localAudio.getDeviceId(), false);
|
2016-06-13 11:49:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (localVideo) {
|
2016-09-07 21:48:57 +00:00
|
|
|
APP.settings.setCameraDeviceId(
|
|
|
|
localVideo.getDeviceId(), false);
|
2016-06-13 11:49:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mediaDeviceHelper.setCurrentMediaDevices(devices);
|
|
|
|
|
|
|
|
APP.UI.onAvailableDevicesChanged(devices);
|
|
|
|
});
|
|
|
|
|
|
|
|
JitsiMeetJS.mediaDevices.addEventListener(
|
|
|
|
JitsiMeetJS.events.mediaDevices.DEVICE_LIST_CHANGED,
|
|
|
|
(devices) =>
|
|
|
|
window.setTimeout(
|
|
|
|
() => this._onDeviceListChanged(devices), 0));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* 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(
|
|
|
|
devices, this.isSharingScreen, localVideo, localAudio);
|
|
|
|
let promises = [];
|
|
|
|
let audioWasMuted = this.audioMuted;
|
|
|
|
let videoWasMuted = this.videoMuted;
|
|
|
|
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(
|
|
|
|
createLocalTracks,
|
|
|
|
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.
|
|
|
|
if (videoWasMuted ||
|
|
|
|
currentDevices.videoinput.length >
|
|
|
|
availableVideoInputDevices.length) {
|
|
|
|
muteLocalVideo(true);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
|
|
|
return Promise.all(promises)
|
|
|
|
.then(() => {
|
|
|
|
mediaDeviceHelper.setCurrentMediaDevices(devices);
|
|
|
|
APP.UI.onAvailableDevicesChanged(devices);
|
|
|
|
});
|
2016-06-20 21:13:17 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggles the local "raised hand" status, if the current state allows
|
|
|
|
* toggling.
|
|
|
|
*/
|
|
|
|
maybeToggleRaisedHand() {
|
|
|
|
// If we are the dominant speaker, we don't enable "raise hand".
|
|
|
|
if (this.isHandRaised || !this.isDominantSpeaker) {
|
|
|
|
this.setRaisedHand(!this.isHandRaised);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-01-06 22:39:13 +00:00
|
|
|
}
|
2016-07-08 01:44:04 +00:00
|
|
|
};
|