1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012 |
- /* 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';
-
- import ConnectionQuality from './modules/connectionquality/connectionquality';
-
- import CQEvents from './service/connectionquality/CQEvents';
- import UIEvents from './service/UI/UIEvents';
-
- const ConnectionEvents = JitsiMeetJS.events.connection;
- const ConnectionErrors = JitsiMeetJS.errors.connection;
-
- const ConferenceEvents = JitsiMeetJS.events.conference;
- const ConferenceErrors = JitsiMeetJS.errors.conference;
-
- const TrackEvents = JitsiMeetJS.events.track;
- const TrackErrors = JitsiMeetJS.errors.track;
-
- let room, connection, localAudio, localVideo, roomLocker;
-
- /**
- * Known custom conference commands.
- */
- const Commands = {
- CONNECTION_QUALITY: "stats",
- EMAIL: "email",
- ETHERPAD: "etherpad"
- };
-
- /**
- * Open Connection. When authentication failed it shows auth dialog.
- * @param roomName the room name to use
- * @returns Promise<JitsiConnection>
- */
- function connect(roomName) {
- return openConnection({retry: true, roomName: roomName})
- .catch(function (err) {
- if (err === ConnectionErrors.PASSWORD_REQUIRED) {
- APP.UI.notifyTokenAuthFailed();
- } else {
- APP.UI.notifyConnectionFailed(err);
- }
- throw err;
- });
- }
-
- /**
- * Share email with other users.
- * @param {string} email new email
- */
- function sendEmail (email) {
- room.sendCommand(Commands.EMAIL, {
- value: email,
- attributes: {
- id: room.myUserId()
- }
- });
- }
-
- /**
- * Get user nickname by user id.
- * @param {string} id user id
- * @returns {string?} user nickname or undefined if user is unknown.
- */
- function getDisplayName (id) {
- if (APP.conference.isLocalId(id)) {
- return APP.settings.getDisplayName();
- }
-
- let participant = room.getParticipantById(id);
- if (participant && participant.getDisplayName()) {
- return participant.getDisplayName();
- }
- }
-
- /**
- * Mute or unmute local audio stream if it exists.
- * @param {boolean} muted if audio stream should be muted or unmuted.
- */
- function muteLocalAudio (muted) {
- if (!localAudio) {
- return;
- }
-
- if (muted) {
- localAudio.mute().then(function(value) {},
- function(value) {
- console.warn('Audio Mute was rejected:', value);
- }
- );
- } else {
- localAudio.unmute().then(function(value) {},
- function(value) {
- console.warn('Audio unmute was rejected:', value);
- }
- );
- }
- }
-
- /**
- * 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) {
- localVideo.mute().then(function(value) {},
- function(value) {
- console.warn('Video mute was rejected:', value);
- }
- );
- } else {
- localVideo.unmute().then(function(value) {},
- function(value) {
- console.warn('Video unmute was rejected:', value);
- }
- );
- }
- }
-
- /**
- * Disconnect from the conference and optionally request user feedback.
- * @param {boolean} [requestFeedback=false] if user feedback should be requested
- */
- function hangup (requestFeedback = false) {
- let promise = Promise.resolve();
-
- if (requestFeedback) {
- promise = APP.UI.requestFeedback();
- }
-
- promise.then(function () {
- connection.disconnect();
-
- if (!config.enableWelcomePage) {
- return;
- }
- // redirect to welcome page
- setTimeout(() => {
- APP.settings.setWelcomePageEnabled(true);
- window.location.pathname = "/";
- }, 3000);
- }, function (err) {
- console.error('Failed to hangup the call:', err);
- });
- }
-
- /**
- * Create local tracks of specified types.
- * @param {string[]} devices required track types ('audio', 'video' etc.)
- * @returns {Promise<JitsiLocalTrack[]>}
- */
- function createLocalTracks (...devices) {
- return JitsiMeetJS.createLocalTracks({
- // copy array to avoid mutations inside library
- devices: devices.slice(0),
- resolution: config.resolution,
- cameraDeviceId: APP.settings.getCameraDeviceId(),
- micDeviceId: APP.settings.getMicDeviceId(),
- // adds any ff fake device settings if any
- firefox_fake_device: config.firefox_fake_device
- }).catch(function (err) {
- console.error('failed to create local tracks', ...devices, err);
- return Promise.reject(err);
- });
- }
-
- 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));
- room.on(ConferenceEvents.CONFERENCE_ERROR,
- this._onConferenceError.bind(this));
- }
- _handleConferenceFailed(err, msg) {
- this._unsubscribe();
- this._reject(err);
- }
- _onConferenceFailed(err, ...params) {
- console.error('CONFERENCE FAILED:', err, ...params);
- switch (err) {
- // room is locked by the password
- case ConferenceErrors.PASSWORD_REQUIRED:
- APP.UI.markRoomLocked(true);
- roomLocker.requirePassword().then(function () {
- room.join(roomLocker.password);
- });
- break;
-
- case ConferenceErrors.CONNECTION_ERROR:
- {
- let [msg] = params;
- APP.UI.notifyConnectionFailed(msg);
- }
- break;
-
- case ConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE:
- APP.UI.notifyBridgeDown();
- break;
-
- // 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
-
- AuthHandler.requireAuth(room, roomLocker.password);
- break;
-
- case ConferenceErrors.RESERVATION_ERROR:
- {
- let [code, msg] = params;
- APP.UI.notifyReservationError(code, msg);
- }
- break;
-
- case ConferenceErrors.GRACEFUL_SHUTDOWN:
- APP.UI.notifyGracefulShutdown();
- break;
-
- case ConferenceErrors.JINGLE_FATAL_ERROR:
- APP.UI.notifyInternalError();
- break;
-
- case ConferenceErrors.CONFERENCE_DESTROYED:
- {
- let [reason] = params;
- APP.UI.hideStats();
- APP.UI.notifyConferenceDestroyed(reason);
- }
- break;
-
- case ConferenceErrors.FOCUS_DISCONNECTED:
- {
- let [focus, retrySec] = params;
- APP.UI.notifyFocusDisconnected(focus, retrySec);
- }
- break;
-
- case ConferenceErrors.FOCUS_LEFT:
- room.leave().then(() => connection.disconnect());
- APP.UI.notifyFocusLeft();
- break;
-
- default:
- 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.");
- }
- }
- _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 {
- localId: undefined,
- isModerator: false,
- audioMuted: false,
- videoMuted: false,
- isSharingScreen: false,
- isDesktopSharingEnabled: false,
- /**
- * Open new connection and join to the conference.
- * @param {object} options
- * @param {string} roomName name of the conference
- * @returns {Promise}
- */
- init(options) {
- this.roomName = options.roomName;
- JitsiMeetJS.setLogLevel(JitsiMeetJS.logLevels.TRACE);
-
- return JitsiMeetJS.init(config).then(() => {
- return Promise.all([
- // try to retrieve audio and video
- createLocalTracks('audio', 'video')
- // if failed then try to retrieve only audio
- .catch(() => createLocalTracks('audio'))
- // if audio also failed then just return empty array
- .catch(() => []),
- connect(options.roomName)
- ]);
- }).then(([tracks, con]) => {
- console.log('initialized with %s local tracks', tracks.length);
- connection = con;
- this._createRoom(tracks);
- this.isDesktopSharingEnabled =
- JitsiMeetJS.isDesktopSharingEnabled();
-
- // update list of available devices
- if (JitsiMeetJS.isDeviceListAvailable() &&
- JitsiMeetJS.isDeviceChangeAvailable()) {
- JitsiMeetJS.enumerateDevices(
- devices => APP.UI.onAvailableDevicesChanged(devices)
- );
- }
- // 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();
- });
- });
- },
- /**
- * Check if id is id of the local user.
- * @param {string} id id to check
- * @returns {boolean}
- */
- isLocalId (id) {
- return this.localId === id;
- },
- /**
- * Simulates toolbar button click for audio mute. Used by shortcuts and API.
- * @param mute true for mute and false for unmute.
- */
- muteAudio (mute) {
- muteLocalAudio(mute);
- },
- /**
- * Returns whether local audio is muted or not.
- * @returns {boolean}
- */
- isLocalAudioMuted() {
- return this.audioMuted;
- },
- /**
- * 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) {
- muteLocalVideo(mute);
- },
- /**
- * Simulates toolbar button click for video mute. Used by shortcuts and API.
- */
- toggleVideoMuted () {
- this.muteVideo(!this.videoMuted);
- },
- /**
- * Retrieve list of conference participants (without local user).
- * @returns {JitsiParticipant[]}
- */
- listMembers () {
- return room.getParticipants();
- },
- /**
- * Retrieve list of ids of conference participants (without local user).
- * @returns {string[]}
- */
- listMembersIds () {
- return room.getParticipants().map(p => p.getId());
- },
- /**
- * Check if SIP is supported.
- * @returns {boolean}
- */
- sipGatewayEnabled () {
- return room.isSIPCallingSupported();
- },
- get membersCount () {
- return room.getParticipants().length + 1;
- },
- /**
- * 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);
- },
- // 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();
- },
- /**
- * Will be filled with values only when config.debug is enabled.
- * Its used by torture to check audio levels.
- */
- audioLevelsMap: {},
- /**
- * 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)
- */
- getPeerSSRCAudioLevel (id) {
- return this.audioLevelsMap[id];
- },
- /**
- * Will check for number of remote particiapnts that have at least one
- * remote track.
- * @return {boolean} whether we have enough participants with remote streams
- */
- checkEnoughParticipants (number) {
- var participants = this._room.getParticipants();
-
- var foundParticipants = 0;
- for (var i = 0; i < participants.length; i += 1) {
- if (participants[i].getTracks().length > 0) {
- foundParticipants++;
- }
- }
- return foundParticipants >= number;
- },
- /**
- * Returns the stats.
- */
- getStats() {
- return ConnectionQuality.getStats();
- },
- // end used by torture
-
- getLogs () {
- return room.getLogs();
- },
- _createRoom (localTracks) {
- room = connection.initJitsiConference(APP.conference.roomName,
- this._getConferenceOptions());
- this.localId = room.myUserId();
- localTracks.forEach((track) => {
- if (track.isAudioTrack()) {
- this.useAudioStream(track);
- } else if (track.isVideoTrack()) {
- this.useVideoStream(track);
- }
- });
- roomLocker = createRoomLocker(room);
- this._room = room; // FIXME do not use this
-
- let email = APP.settings.getEmail();
- email && sendEmail(email);
-
- let nick = APP.settings.getDisplayName();
- if (config.useNicks && !nick) {
- nick = APP.UI.askForNickname();
- APP.settings.setDisplayName(nick);
- }
- nick && room.setDisplayName(nick);
-
- this._setupListeners();
- },
- _getConferenceOptions() {
- let options = config;
- if(config.enableRecording) {
- options.recordingType = (config.hosts &&
- (typeof config.hosts.jirecon != "undefined"))?
- "jirecon" : "colibri";
- }
- return options;
- },
-
- /**
- * Start using provided video stream.
- * Stops previous video stream.
- * @param {JitsiLocalTrack} [stream] new stream to use or null
- * @returns {Promise}
- */
- useVideoStream (stream) {
- let promise = Promise.resolve();
- if (localVideo) {
- // this calls room.removeTrack internally
- // so we don't need to remove it manually
- promise = localVideo.dispose();
- }
- localVideo = stream;
-
- return promise.then(function () {
- if (stream) {
- return room.addTrack(stream);
- }
- }).then(() => {
- if (stream) {
- this.videoMuted = stream.isMuted();
- this.isSharingScreen = stream.videoType === 'desktop';
-
- APP.UI.addLocalStream(stream);
- } else {
- this.videoMuted = false;
- this.isSharingScreen = false;
- }
-
- APP.UI.setVideoMuted(this.localId, this.videoMuted);
-
- APP.UI.updateDesktopSharingButtons();
- });
- },
-
- /**
- * Start using provided audio stream.
- * Stops previous audio stream.
- * @param {JitsiLocalTrack} [stream] new stream to use or null
- * @returns {Promise}
- */
- useAudioStream (stream) {
- let promise = Promise.resolve();
- if (localAudio) {
- // this calls room.removeTrack internally
- // so we don't need to remove it manually
- promise = localAudio.dispose();
- }
- localAudio = stream;
-
- return promise.then(function () {
- if (stream) {
- return room.addTrack(stream);
- }
- }).then(() => {
- if (stream) {
- this.audioMuted = stream.isMuted();
-
- APP.UI.addLocalStream(stream);
- } else {
- this.audioMuted = false;
- }
-
- APP.UI.setAudioMuted(this.localId, this.audioMuted);
- });
- },
-
- videoSwitchInProgress: false,
- toggleScreenSharing (shareScreen = !this.isSharingScreen) {
- if (this.videoSwitchInProgress) {
- console.warn("Switch in progress.");
- return;
- }
- if (!this.isDesktopSharingEnabled) {
- console.warn("Cannot toggle screen sharing: not supported.");
- return;
- }
-
- this.videoSwitchInProgress = true;
-
- if (shareScreen) {
- createLocalTracks('desktop').then(([stream]) => {
- stream.on(
- TrackEvents.LOCAL_TRACK_STOPPED,
- () => {
- // 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) {
- this.toggleScreenSharing(false);
- }
- }
- );
- return this.useVideoStream(stream);
- }).then(() => {
- this.videoSwitchInProgress = false;
- console.log('sharing local desktop');
- }).catch((err) => {
- this.videoSwitchInProgress = false;
- this.toggleScreenSharing(false);
-
- if(err === TrackErrors.CHROME_EXTENSION_USER_CANCELED)
- return;
-
- console.error('failed to share local desktop', err);
-
- if (err === TrackErrors.FIREFOX_EXTENSION_NEEDED) {
- APP.UI.showExtensionRequiredDialog(
- config.desktopSharingFirefoxExtensionURL
- );
- return;
- }
-
- // Handling:
- // TrackErrors.CHROME_EXTENSION_INSTALLATION_ERROR
- // TrackErrors.GENERAL
- // and any other
- let dialogTxt = APP.translation
- .generateTranslationHTML("dialog.failtoinstall");
- let dialogTitle = APP.translation
- .generateTranslationHTML("dialog.error");
- APP.UI.messageHandler.openDialog(
- dialogTitle,
- dialogTxt,
- false
- );
- });
- } else {
- createLocalTracks('video').then(
- ([stream]) => this.useVideoStream(stream)
- ).then(() => {
- this.videoSwitchInProgress = false;
- console.log('sharing local video');
- }).catch((err) => {
- this.useVideoStream(null);
- this.videoSwitchInProgress = false;
- console.error('failed to share local video', err);
- });
- }
- },
- /**
- * Setup interaction between conference and UI.
- */
- _setupListeners () {
- // add local streams when joined to the conference
- room.on(ConferenceEvents.CONFERENCE_JOINED, () => {
- APP.UI.mucJoined();
- });
-
- room.on(
- ConferenceEvents.AUTH_STATUS_CHANGED,
- function (authEnabled, authLogin) {
- APP.UI.updateAuthInfo(authEnabled, authLogin);
- }
- );
-
-
- room.on(ConferenceEvents.USER_JOINED, (id, user) => {
- console.log('USER %s connnected', id, user);
- APP.API.notifyUserJoined(id);
- APP.UI.addUser(id, user.getDisplayName());
-
- // chek the roles for the new user and reflect them
- APP.UI.updateUserRole(user);
- });
- room.on(ConferenceEvents.USER_LEFT, (id, user) => {
- console.log('USER %s LEFT', id, user);
- APP.API.notifyUserLeft(id);
- APP.UI.removeUser(id, user.getDisplayName());
- });
-
-
- 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;
-
- track.on(TrackEvents.TRACK_VIDEOTYPE_CHANGED, (type) => {
- APP.UI.onPeerVideoTypeChanged(track.getParticipantId(), type);
- });
- APP.UI.addRemoteStream(track);
- });
-
- room.on(ConferenceEvents.TRACK_REMOVED, (track) => {
- if(!track || track.isLocal())
- return;
-
- APP.UI.removeRemoteStream(track);
- });
-
- 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()){
- id = this.localId;
- if(track.getType() === "audio") {
- this.audioMuted = mute;
- } else {
- this.videoMuted = mute;
- }
- } else {
- id = track.getParticipantId();
- }
- handler(id , mute);
- });
- room.on(ConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED, (id, lvl) => {
- if(this.isLocalId(id) && localAudio && localAudio.isMuted()) {
- lvl = 0;
- }
-
- if(config.debug)
- {
- this.audioLevelsMap[id] = lvl;
- console.log("AudioLevel:" + id + "/" + lvl);
- }
-
- 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);
- }
- });
- room.on(
- ConferenceEvents.LAST_N_ENDPOINTS_CHANGED, (ids, enteringIds) => {
- APP.UI.handleLastNEndpoints(ids, enteringIds);
- });
- room.on(ConferenceEvents.DOMINANT_SPEAKER_CHANGED, (id) => {
- APP.UI.markDominantSpeaker(id);
- });
-
- 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) => {
- let nick = getDisplayName(id);
- APP.API.notifyReceivedChatMessage(id, nick, text, ts);
- APP.UI.addMessage(id, nick, text, ts);
- });
- }
-
- room.on(ConferenceEvents.DISPLAY_NAME_CHANGED, (id, displayName) => {
- APP.API.notifyDisplayNameChanged(id, displayName);
- APP.UI.changeDisplayName(id, displayName);
- });
-
- room.on(ConferenceEvents.RECORDING_STATE_CHANGED, (status, error) => {
- if(status == "error") {
- console.error(error);
- return;
- }
- APP.UI.updateRecordingState(status);
- });
-
- room.on(ConferenceEvents.USER_STATUS_CHANGED, function (id, status) {
- APP.UI.updateUserStatus(id, status);
- });
-
- room.on(ConferenceEvents.KICKED, () => {
- APP.UI.hideStats();
- APP.UI.notifyKicked();
- // FIXME close
- });
-
- room.on(ConferenceEvents.DTMF_SUPPORT_CHANGED, (isDTMFSupported) => {
- APP.UI.updateDTMFSupport(isDTMFSupported);
- });
-
- 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();
- }
- });
-
- APP.UI.addListener(UIEvents.AUDIO_MUTED, muteLocalAudio);
- APP.UI.addListener(UIEvents.VIDEO_MUTED, muteLocalVideo);
-
- if (!interfaceConfig.filmStripOnly) {
- APP.UI.addListener(UIEvents.MESSAGE_CREATED, (message) => {
- APP.API.notifySendingChatMessage(message);
- room.sendTextMessage(message);
- });
- }
-
- room.on(ConferenceEvents.CONNECTION_STATS, function (stats) {
- ConnectionQuality.updateLocalStats(stats);
- });
- ConnectionQuality.addListener(
- CQEvents.LOCALSTATS_UPDATED,
- (percent, stats) => {
- APP.UI.updateLocalStats(percent, stats);
-
- // send local stats to other users
- room.sendCommandOnce(Commands.CONNECTION_QUALITY, {
- children: ConnectionQuality.convertToMUCStats(stats),
- attributes: {
- xmlns: 'http://jitsi.org/jitmeet/stats'
- }
- });
- }
- );
-
- // listen to remote stats
- room.addCommandListener(Commands.CONNECTION_QUALITY,(values, from) => {
- ConnectionQuality.updateRemoteStats(from, values);
- });
-
- ConnectionQuality.addListener(CQEvents.REMOTESTATS_UPDATED,
- (id, percent, stats) => {
- APP.UI.updateRemoteStats(id, percent, stats);
- });
-
- room.addCommandListener(Commands.ETHERPAD, ({value}) => {
- APP.UI.initEtherpad(value);
- });
-
- APP.UI.addListener(UIEvents.EMAIL_CHANGED, (email = '') => {
- email = email.trim();
-
- if (email === APP.settings.getEmail()) {
- return;
- }
-
- APP.settings.setEmail(email);
- APP.UI.setUserAvatar(room.myUserId(), email);
- sendEmail(email);
- });
- room.addCommandListener(Commands.EMAIL, (data) => {
- APP.UI.setUserAvatar(data.attributes.id, data.value);
- });
-
- APP.UI.addListener(UIEvents.NICKNAME_CHANGED, (nickname = '') => {
- nickname = nickname.trim();
-
- if (nickname === APP.settings.getDisplayName()) {
- return;
- }
-
- APP.settings.setDisplayName(nickname);
- room.setDisplayName(nickname);
- APP.UI.changeDisplayName(APP.conference.localId, nickname);
- });
-
- APP.UI.addListener(UIEvents.START_MUTED_CHANGED,
- (startAudioMuted, startVideoMuted) => {
- room.setStartMutedPolicy({
- audio: startAudioMuted,
- video: startVideoMuted
- });
- }
- );
- room.on(
- ConferenceEvents.START_MUTED_POLICY_CHANGED,
- ({ audio, video }) => {
- APP.UI.onStartMutedChanged(audio, video);
- }
- );
- room.on(ConferenceEvents.STARTED_MUTED, () => {
- (room.isStartAudioMuted() || room.isStartVideoMuted())
- && APP.UI.notifyInitiallyMuted();
- });
-
- APP.UI.addListener(UIEvents.USER_INVITED, (roomUrl) => {
- APP.UI.inviteParticipants(
- roomUrl,
- APP.conference.roomName,
- roomLocker.password,
- APP.settings.getDisplayName()
- );
- });
-
- room.on(
- ConferenceEvents.AVAILABLE_DEVICES_CHANGED, function (id, devices) {
- APP.UI.updateDevicesAvailability(id, devices);
- }
- );
-
- // call hangup
- APP.UI.addListener(UIEvents.HANGUP, () => {
- hangup(true);
- });
-
- // logout
- APP.UI.addListener(UIEvents.LOGOUT, () => {
- AuthHandler.logout(room).then(function (url) {
- if (url) {
- window.location.href = url;
- } else {
- hangup(true);
- }
- });
- });
-
- APP.UI.addListener(UIEvents.SIP_DIAL, (sipNumber) => {
- room.dial(sipNumber);
- });
-
-
- // Starts or stops the recording for the conference.
- APP.UI.addListener(UIEvents.RECORDING_TOGGLE, (predefinedToken) => {
- if (predefinedToken) {
- room.toggleRecording({token: predefinedToken});
- return;
- }
- APP.UI.requestRecordingToken().then((token) => {
- room.toggleRecording({token: token});
- });
-
- });
-
- APP.UI.addListener(UIEvents.SUBJECT_CHANGED, (topic) => {
- room.setSubject(topic);
- });
- room.on(ConferenceEvents.SUBJECT_CHANGED, function (subject) {
- APP.UI.setSubject(subject);
- });
-
- 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) => {
- room.selectParticipant(id);
- });
- APP.UI.addListener(UIEvents.PINNED_ENDPOINT, (id) => {
- room.pinParticipant(id);
- });
-
- APP.UI.addListener(
- UIEvents.VIDEO_DEVICE_CHANGED,
- (cameraDeviceId) => {
- APP.settings.setCameraDeviceId(cameraDeviceId);
- createLocalTracks('video').then(([stream]) => {
- this.useVideoStream(stream);
- console.log('switched local video device');
- });
- }
- );
-
- APP.UI.addListener(
- UIEvents.AUDIO_DEVICE_CHANGED,
- (micDeviceId) => {
- APP.settings.setMicDeviceId(micDeviceId);
- createLocalTracks('audio').then(([stream]) => {
- this.useAudioStream(stream);
- console.log('switched local audio device');
- });
- }
- );
-
- APP.UI.addListener(
- UIEvents.TOGGLE_SCREENSHARING, this.toggleScreenSharing.bind(this)
- );
- }
- };
|