2017-10-04 22:36:09 +00:00
|
|
|
// @flow
|
|
|
|
|
2017-12-11 18:48:32 +00:00
|
|
|
import {
|
2018-01-03 21:24:07 +00:00
|
|
|
ACTION_PINNED,
|
|
|
|
ACTION_UNPINNED,
|
2019-06-17 10:35:47 +00:00
|
|
|
createOfferAnswerFailedEvent,
|
2018-01-03 21:24:07 +00:00
|
|
|
createPinnedEvent,
|
|
|
|
sendAnalytics
|
2017-12-11 18:48:32 +00:00
|
|
|
} from '../../analytics';
|
2020-05-20 10:57:03 +00:00
|
|
|
import { openDisplayNamePrompt } from '../../display-name';
|
2020-04-15 13:13:43 +00:00
|
|
|
import { showErrorNotification } from '../../notifications';
|
|
|
|
import { CONNECTION_ESTABLISHED, CONNECTION_FAILED, connectionDisconnected } from '../connection';
|
2019-06-17 10:35:47 +00:00
|
|
|
import { JitsiConferenceErrors } from '../lib-jitsi-meet';
|
2020-05-20 10:57:03 +00:00
|
|
|
import { MEDIA_TYPE } from '../media';
|
2016-10-05 14:36:59 +00:00
|
|
|
import {
|
2019-08-26 15:20:16 +00:00
|
|
|
getLocalParticipant,
|
2016-10-05 14:36:59 +00:00
|
|
|
getParticipantById,
|
2017-06-27 22:56:55 +00:00
|
|
|
getPinnedParticipant,
|
2020-06-16 15:58:06 +00:00
|
|
|
PARTICIPANT_ROLE,
|
2019-01-13 19:33:28 +00:00
|
|
|
PARTICIPANT_UPDATED,
|
2016-10-05 14:36:59 +00:00
|
|
|
PIN_PARTICIPANT
|
|
|
|
} from '../participants';
|
2018-07-24 20:43:09 +00:00
|
|
|
import { MiddlewareRegistry, StateListenerRegistry } from '../redux';
|
2018-03-01 19:46:11 +00:00
|
|
|
import { TRACK_ADDED, TRACK_REMOVED } from '../tracks';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2017-08-02 15:00:51 +00:00
|
|
|
import {
|
2018-05-15 20:24:58 +00:00
|
|
|
CONFERENCE_FAILED,
|
2017-08-02 15:00:51 +00:00
|
|
|
CONFERENCE_JOINED,
|
2019-03-12 17:45:53 +00:00
|
|
|
CONFERENCE_SUBJECT_CHANGED,
|
2018-08-01 20:37:15 +00:00
|
|
|
CONFERENCE_WILL_LEAVE,
|
2017-08-09 19:40:03 +00:00
|
|
|
DATA_CHANNEL_OPENED,
|
2019-08-30 21:17:22 +00:00
|
|
|
SEND_TONES,
|
2019-05-29 10:46:19 +00:00
|
|
|
SET_PENDING_SUBJECT_CHANGE,
|
|
|
|
SET_ROOM
|
2017-08-02 15:00:51 +00:00
|
|
|
} from './actionTypes';
|
2020-05-20 10:57:03 +00:00
|
|
|
import {
|
|
|
|
conferenceFailed,
|
|
|
|
conferenceWillLeave,
|
|
|
|
createConference,
|
|
|
|
setSubject
|
|
|
|
} from './actions';
|
2016-10-05 14:36:59 +00:00
|
|
|
import {
|
|
|
|
_addLocalTracksToConference,
|
2019-07-31 12:47:52 +00:00
|
|
|
_removeLocalTracksFromConference,
|
fix(base/participants): ensure default local id outside of conference
Makes sure that whenever a conference is left or switched, the local
participant's id will be equal to the default value.
The problem fixed by this commit is a situation where the local
participant may end up sharing the same ID with it's "ghost" when
rejoining a disconnected conference. The most important and easiest to
hit case is when the conference is left after the CONFERENCE_FAILED
event.
Another rare and harder to encounter in the real world issue is
where CONFERENCE_LEFT may come with the delay due to it's asynchronous
nature. The step by step scenario is as follows: trying to leave a
conference, but the network is not doing well, so it takes time,
requests are timing out. After getting back to the welcome page the
the CONFERENCE_LEFT has not arrived yet. The same conference is joined
again and the load config may timeout, but it will be read from the
cache. Now the network gets better and conference is joining which
results in our ghost participant added to the redux state. At this point
there's the root issue: two participants with the same id, because the
local one was neither cleared nor set to the new one yet
(PARTICIPANT_JOINED come, before CONFERENCE_JOINED where we adjust the
id). Then comes CONFERENCE_JOINED and we try to update our local id.
We're updating the ID of both ghost and local participant. It could be
also that the delayed CONFERENCE_LEFT comes for the old conference, but
it's too late and it would update the id for both participants.
The approach here reasons that the ID of the local participant
may be reset as soon as the local participant and, respectively, her ID
is no longer involved in a recoverable JitsiConference of interest to
the user and, consequently, the app.
Co-authored-by: Pawel Domas <pawel.domas@jitsi.org>
Co-authored-by: Lyubo Marinov <lmarinov@atlassian.com>
2018-05-16 20:08:34 +00:00
|
|
|
forEachConference,
|
2019-07-31 12:47:52 +00:00
|
|
|
getCurrentConference
|
2016-10-05 14:36:59 +00:00
|
|
|
} from './functions';
|
2019-08-21 14:50:00 +00:00
|
|
|
import logger from './logger';
|
2017-10-09 21:40:38 +00:00
|
|
|
|
2017-10-04 22:36:09 +00:00
|
|
|
declare var APP: Object;
|
|
|
|
|
2018-08-01 20:37:15 +00:00
|
|
|
/**
|
|
|
|
* Handler for before unload event.
|
|
|
|
*/
|
|
|
|
let beforeUnloadHandler;
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2016-12-05 15:14:50 +00:00
|
|
|
* Implements the middleware of the feature base/conference.
|
2016-10-05 14:36:59 +00:00
|
|
|
*
|
2017-08-04 21:06:42 +00:00
|
|
|
* @param {Store} store - The redux store.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
MiddlewareRegistry.register(store => next => action => {
|
|
|
|
switch (action.type) {
|
2018-05-15 20:24:58 +00:00
|
|
|
case CONFERENCE_FAILED:
|
2018-05-21 03:58:34 +00:00
|
|
|
return _conferenceFailed(store, next, action);
|
2018-05-15 20:24:58 +00:00
|
|
|
|
2017-08-04 21:06:42 +00:00
|
|
|
case CONFERENCE_JOINED:
|
|
|
|
return _conferenceJoined(store, next, action);
|
|
|
|
|
2018-05-21 03:58:34 +00:00
|
|
|
case CONNECTION_ESTABLISHED:
|
|
|
|
return _connectionEstablished(store, next, action);
|
|
|
|
|
2018-06-07 13:05:00 +00:00
|
|
|
case CONNECTION_FAILED:
|
|
|
|
return _connectionFailed(store, next, action);
|
|
|
|
|
2019-03-12 17:45:53 +00:00
|
|
|
case CONFERENCE_SUBJECT_CHANGED:
|
|
|
|
return _conferenceSubjectChanged(store, next, action);
|
|
|
|
|
2018-08-01 20:37:15 +00:00
|
|
|
case CONFERENCE_WILL_LEAVE:
|
|
|
|
_conferenceWillLeave();
|
|
|
|
break;
|
|
|
|
|
2017-08-09 19:40:03 +00:00
|
|
|
case DATA_CHANNEL_OPENED:
|
|
|
|
return _syncReceiveVideoQuality(store, next, action);
|
|
|
|
|
2019-01-13 19:33:28 +00:00
|
|
|
case PARTICIPANT_UPDATED:
|
|
|
|
return _updateLocalParticipantInConference(store, next, action);
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
case PIN_PARTICIPANT:
|
2016-12-05 15:14:50 +00:00
|
|
|
return _pinParticipant(store, next, action);
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2019-08-30 21:17:22 +00:00
|
|
|
case SEND_TONES:
|
|
|
|
return _sendTones(store, next, action);
|
|
|
|
|
2019-05-29 10:46:19 +00:00
|
|
|
case SET_ROOM:
|
|
|
|
return _setRoom(store, next, action);
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
case TRACK_ADDED:
|
2016-12-05 15:14:50 +00:00
|
|
|
case TRACK_REMOVED:
|
|
|
|
return _trackAddedOrRemoved(store, next, action);
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
});
|
|
|
|
|
2018-07-24 20:43:09 +00:00
|
|
|
/**
|
|
|
|
* Registers a change handler for state['features/base/conference'] to update
|
|
|
|
* the preferred video quality levels based on user preferred and internal
|
|
|
|
* settings.
|
|
|
|
*/
|
|
|
|
StateListenerRegistry.register(
|
|
|
|
/* selector */ state => state['features/base/conference'],
|
|
|
|
/* listener */ (currentState, store, previousState = {}) => {
|
|
|
|
const {
|
|
|
|
conference,
|
|
|
|
maxReceiverVideoQuality,
|
2020-04-28 02:51:40 +00:00
|
|
|
preferredVideoQuality
|
2018-07-24 20:43:09 +00:00
|
|
|
} = currentState;
|
2020-07-08 08:27:18 +00:00
|
|
|
const changedConference = conference !== previousState.conference;
|
2020-01-24 16:28:47 +00:00
|
|
|
const changedPreferredVideoQuality
|
2020-04-28 02:51:40 +00:00
|
|
|
= preferredVideoQuality !== previousState.preferredVideoQuality;
|
2020-01-24 16:28:47 +00:00
|
|
|
const changedMaxVideoQuality = maxReceiverVideoQuality !== previousState.maxReceiverVideoQuality;
|
2018-07-24 20:43:09 +00:00
|
|
|
|
2020-07-08 08:27:18 +00:00
|
|
|
if (changedConference || changedPreferredVideoQuality || changedMaxVideoQuality) {
|
2020-04-28 02:51:40 +00:00
|
|
|
_setReceiverVideoConstraint(conference, preferredVideoQuality, maxReceiverVideoQuality);
|
|
|
|
}
|
2020-07-08 08:27:18 +00:00
|
|
|
if (changedConference || changedPreferredVideoQuality) {
|
2020-04-28 02:51:40 +00:00
|
|
|
_setSenderVideoConstraint(conference, preferredVideoQuality);
|
2018-07-24 20:43:09 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-05-15 20:24:58 +00:00
|
|
|
/**
|
|
|
|
* Makes sure to leave a failed conference in order to release any allocated
|
2018-05-21 03:58:34 +00:00
|
|
|
* resources like peer connections, emit participant left events, etc.
|
2018-05-15 20:24:58 +00:00
|
|
|
*
|
2018-05-21 03:58:34 +00:00
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code CONFERENCE_FAILED} which is
|
|
|
|
* being dispatched in the specified {@code store}.
|
2018-05-15 20:24:58 +00:00
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
2020-04-15 13:13:43 +00:00
|
|
|
function _conferenceFailed({ dispatch, getState }, next, action) {
|
2018-05-15 20:24:58 +00:00
|
|
|
const result = next(action);
|
2019-06-17 10:35:47 +00:00
|
|
|
const { conference, error } = action;
|
|
|
|
|
2020-04-15 13:13:43 +00:00
|
|
|
// Handle specific failure reasons.
|
|
|
|
switch (error.name) {
|
|
|
|
case JitsiConferenceErrors.CONFERENCE_DESTROYED: {
|
|
|
|
const [ reason ] = error.params;
|
|
|
|
|
|
|
|
dispatch(showErrorNotification({
|
|
|
|
description: reason,
|
|
|
|
titleKey: 'dialog.sessTerminated'
|
|
|
|
}));
|
|
|
|
|
|
|
|
if (typeof APP !== 'undefined') {
|
|
|
|
APP.UI.hideStats();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case JitsiConferenceErrors.CONNECTION_ERROR: {
|
|
|
|
const [ msg ] = error.params;
|
|
|
|
|
2020-05-20 08:25:31 +00:00
|
|
|
dispatch(connectionDisconnected(getState()['features/base/connection'].connection));
|
2020-04-15 13:13:43 +00:00
|
|
|
dispatch(showErrorNotification({
|
|
|
|
descriptionArguments: { msg },
|
|
|
|
descriptionKey: msg ? 'dialog.connectErrorWithMsg' : 'dialog.connectError',
|
|
|
|
titleKey: 'connection.CONNFAIL'
|
|
|
|
}));
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2020-05-20 08:25:31 +00:00
|
|
|
case JitsiConferenceErrors.OFFER_ANSWER_FAILED:
|
|
|
|
sendAnalytics(createOfferAnswerFailedEvent());
|
|
|
|
break;
|
2020-04-15 13:13:43 +00:00
|
|
|
}
|
|
|
|
|
2018-06-20 07:44:56 +00:00
|
|
|
// FIXME: Workaround for the web version. Currently, the creation of the
|
|
|
|
// conference is handled by /conference.js and appropriate failure handlers
|
|
|
|
// are set there.
|
|
|
|
if (typeof APP !== 'undefined') {
|
2018-08-01 20:37:15 +00:00
|
|
|
if (typeof beforeUnloadHandler !== 'undefined') {
|
|
|
|
window.removeEventListener('beforeunload', beforeUnloadHandler);
|
|
|
|
beforeUnloadHandler = undefined;
|
|
|
|
}
|
|
|
|
|
2018-06-20 07:44:56 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-05-21 03:58:34 +00:00
|
|
|
// XXX After next(action), it is clear whether the error is recoverable.
|
2018-05-15 20:24:58 +00:00
|
|
|
!error.recoverable
|
|
|
|
&& conference
|
2018-05-21 03:58:34 +00:00
|
|
|
&& conference.leave().catch(reason => {
|
|
|
|
// Even though we don't care too much about the failure, it may be
|
|
|
|
// good to know that it happen, so log it (on the info level).
|
|
|
|
logger.info('JitsiConference.leave() rejected with:', reason);
|
2018-05-15 20:24:58 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-07-11 13:06:58 +00:00
|
|
|
/**
|
2017-08-04 21:06:42 +00:00
|
|
|
* Does extra sync up on properties that may need to be updated after the
|
|
|
|
* conference was joined.
|
2017-07-11 13:06:58 +00:00
|
|
|
*
|
2018-05-21 03:58:34 +00:00
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code CONFERENCE_JOINED} which is
|
|
|
|
* being dispatched in the specified {@code store}.
|
2017-07-11 13:06:58 +00:00
|
|
|
* @private
|
2018-02-13 17:58:26 +00:00
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
2017-07-11 13:06:58 +00:00
|
|
|
*/
|
2018-02-13 17:58:26 +00:00
|
|
|
function _conferenceJoined({ dispatch, getState }, next, action) {
|
2017-07-11 13:06:58 +00:00
|
|
|
const result = next(action);
|
2019-07-31 12:47:52 +00:00
|
|
|
const { conference } = action;
|
|
|
|
const { pendingSubjectChange } = getState()['features/base/conference'];
|
2019-08-26 15:20:16 +00:00
|
|
|
const { requireDisplayName } = getState()['features/base/config'];
|
2018-02-13 17:58:26 +00:00
|
|
|
|
2019-07-31 12:47:52 +00:00
|
|
|
pendingSubjectChange && dispatch(setSubject(pendingSubjectChange));
|
2018-05-21 03:58:34 +00:00
|
|
|
|
2018-08-01 20:37:15 +00:00
|
|
|
// FIXME: Very dirty solution. This will work on web only.
|
|
|
|
// When the user closes the window or quits the browser, lib-jitsi-meet
|
|
|
|
// handles the process of leaving the conference. This is temporary solution
|
|
|
|
// that should cover the described use case as part of the effort to
|
|
|
|
// implement the conferenceWillLeave action for web.
|
|
|
|
beforeUnloadHandler = () => {
|
|
|
|
dispatch(conferenceWillLeave(conference));
|
|
|
|
};
|
|
|
|
window.addEventListener('beforeunload', beforeUnloadHandler);
|
|
|
|
|
2019-08-26 15:20:16 +00:00
|
|
|
if (requireDisplayName
|
|
|
|
&& !getLocalParticipant(getState)?.name
|
|
|
|
&& !conference.isHidden()) {
|
|
|
|
dispatch(openDisplayNamePrompt(undefined));
|
|
|
|
}
|
|
|
|
|
2018-05-21 03:58:34 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifies the feature base/conference that the action
|
|
|
|
* {@code CONNECTION_ESTABLISHED} is being dispatched within a specific redux
|
|
|
|
* store.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code CONNECTION_ESTABLISHED}
|
|
|
|
* which is being dispatched in the specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
|
|
|
function _connectionEstablished({ dispatch }, next, action) {
|
|
|
|
const result = next(action);
|
|
|
|
|
|
|
|
// FIXME: Workaround for the web version. Currently, the creation of the
|
|
|
|
// conference is handled by /conference.js.
|
|
|
|
typeof APP === 'undefined' && dispatch(createConference());
|
2017-07-11 13:06:58 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-06-07 13:05:00 +00:00
|
|
|
/**
|
|
|
|
* Notifies the feature base/conference that the action
|
|
|
|
* {@code CONNECTION_FAILED} is being dispatched within a specific redux
|
|
|
|
* store.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code CONNECTION_FAILED} which is
|
|
|
|
* being dispatched in the specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
|
|
|
function _connectionFailed({ dispatch, getState }, next, action) {
|
|
|
|
const result = next(action);
|
|
|
|
|
2018-08-01 20:37:15 +00:00
|
|
|
if (typeof beforeUnloadHandler !== 'undefined') {
|
|
|
|
window.removeEventListener('beforeunload', beforeUnloadHandler);
|
|
|
|
beforeUnloadHandler = undefined;
|
|
|
|
}
|
|
|
|
|
2018-06-07 13:05:00 +00:00
|
|
|
// FIXME: Workaround for the web version. Currently, the creation of the
|
|
|
|
// conference is handled by /conference.js and appropriate failure handlers
|
|
|
|
// are set there.
|
|
|
|
if (typeof APP === 'undefined') {
|
|
|
|
const { connection } = action;
|
|
|
|
const { error } = action;
|
|
|
|
|
|
|
|
forEachConference(getState, conference => {
|
|
|
|
// It feels that it would make things easier if JitsiConference
|
|
|
|
// in lib-jitsi-meet would monitor it's connection and emit
|
|
|
|
// CONFERENCE_FAILED when it's dropped. It has more knowledge on
|
|
|
|
// whether it can recover or not. But because the reload screen
|
|
|
|
// and the retry logic is implemented in the app maybe it can be
|
|
|
|
// left this way for now.
|
|
|
|
if (conference.getConnection() === connection) {
|
|
|
|
// XXX Note that on mobile the error type passed to
|
|
|
|
// connectionFailed is always an object with .name property.
|
|
|
|
// This fact needs to be checked prior to enabling this logic on
|
|
|
|
// web.
|
|
|
|
const conferenceAction
|
|
|
|
= conferenceFailed(conference, error.name);
|
|
|
|
|
|
|
|
// Copy the recoverable flag if set on the CONNECTION_FAILED
|
|
|
|
// action to not emit recoverable action caused by
|
|
|
|
// a non-recoverable one.
|
|
|
|
if (typeof error.recoverable !== 'undefined') {
|
|
|
|
conferenceAction.error.recoverable = error.recoverable;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(conferenceAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-03-12 17:45:53 +00:00
|
|
|
/**
|
|
|
|
* Notifies the feature base/conference that the action
|
|
|
|
* {@code CONFERENCE_SUBJECT_CHANGED} is being dispatched within a specific
|
|
|
|
* redux store.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code CONFERENCE_SUBJECT_CHANGED}
|
|
|
|
* which is being dispatched in the specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
2019-05-29 10:44:35 +00:00
|
|
|
function _conferenceSubjectChanged({ dispatch, getState }, next, action) {
|
2019-03-12 17:45:53 +00:00
|
|
|
const result = next(action);
|
|
|
|
const { subject } = getState()['features/base/conference'];
|
|
|
|
|
2019-05-29 10:44:35 +00:00
|
|
|
if (subject) {
|
|
|
|
dispatch({
|
|
|
|
type: SET_PENDING_SUBJECT_CHANGE,
|
|
|
|
subject: undefined
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-12 17:45:53 +00:00
|
|
|
typeof APP === 'object' && APP.API.notifySubjectChanged(subject);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-08-01 20:37:15 +00:00
|
|
|
/**
|
|
|
|
* Notifies the feature base/conference that the action
|
|
|
|
* {@code CONFERENCE_WILL_LEAVE} is being dispatched within a specific redux
|
|
|
|
* store.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
function _conferenceWillLeave() {
|
|
|
|
if (typeof beforeUnloadHandler !== 'undefined') {
|
|
|
|
window.removeEventListener('beforeunload', beforeUnloadHandler);
|
|
|
|
beforeUnloadHandler = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-05 15:14:50 +00:00
|
|
|
/**
|
2018-05-21 03:58:34 +00:00
|
|
|
* Notifies the feature base/conference that the action {@code PIN_PARTICIPANT}
|
|
|
|
* is being dispatched within a specific redux store. Pins the specified remote
|
2016-12-05 15:14:50 +00:00
|
|
|
* participant in the associated conference, ignores the local participant.
|
|
|
|
*
|
2018-05-21 03:58:34 +00:00
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code PIN_PARTICIPANT} which is
|
|
|
|
* being dispatched in the specified {@code store}.
|
2016-12-05 15:14:50 +00:00
|
|
|
* @private
|
2018-02-13 17:58:26 +00:00
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
2018-02-13 17:58:26 +00:00
|
|
|
function _pinParticipant({ getState }, next, action) {
|
|
|
|
const state = getState();
|
2017-06-27 22:56:55 +00:00
|
|
|
const { conference } = state['features/base/conference'];
|
2018-01-31 16:37:41 +00:00
|
|
|
|
|
|
|
if (!conference) {
|
|
|
|
return next(action);
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
const participants = state['features/base/participants'];
|
2016-12-05 15:14:50 +00:00
|
|
|
const id = action.participant.id;
|
2016-10-05 14:36:59 +00:00
|
|
|
const participantById = getParticipantById(participants, id);
|
2019-07-30 13:26:30 +00:00
|
|
|
const pinnedParticipant = getPinnedParticipant(participants);
|
|
|
|
const actionName = id ? ACTION_PINNED : ACTION_UNPINNED;
|
|
|
|
const local
|
|
|
|
= (participantById && participantById.local)
|
|
|
|
|| (!id && pinnedParticipant && pinnedParticipant.local);
|
|
|
|
let participantIdForEvent;
|
|
|
|
|
|
|
|
if (local) {
|
|
|
|
participantIdForEvent = local;
|
|
|
|
} else {
|
|
|
|
participantIdForEvent
|
|
|
|
= actionName === ACTION_PINNED ? id : pinnedParticipant && pinnedParticipant.id;
|
2017-06-27 22:56:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 13:26:30 +00:00
|
|
|
sendAnalytics(createPinnedEvent(
|
|
|
|
actionName,
|
|
|
|
participantIdForEvent,
|
|
|
|
{
|
|
|
|
local,
|
|
|
|
'participant_count': conference.getParticipantCount()
|
|
|
|
}));
|
|
|
|
|
2016-12-05 15:14:50 +00:00
|
|
|
return next(action);
|
|
|
|
}
|
|
|
|
|
2019-08-30 21:17:22 +00:00
|
|
|
/**
|
|
|
|
* Requests the specified tones to be played.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code SEND_TONES} which is
|
|
|
|
* being dispatched in the specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
|
|
|
function _sendTones({ getState }, next, action) {
|
|
|
|
const state = getState();
|
|
|
|
const { conference } = state['features/base/conference'];
|
|
|
|
|
|
|
|
if (conference) {
|
|
|
|
const { duration, tones, pause } = action;
|
|
|
|
|
|
|
|
conference.sendTones(tones, duration, pause);
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
}
|
|
|
|
|
2017-08-09 19:40:03 +00:00
|
|
|
/**
|
2018-07-24 20:43:09 +00:00
|
|
|
* Helper function for updating the preferred receiver video constraint, based
|
|
|
|
* on the user preference and the internal maximum.
|
2018-07-24 16:23:38 +00:00
|
|
|
*
|
2018-07-24 20:43:09 +00:00
|
|
|
* @param {JitsiConference} conference - The JitsiConference instance for the
|
|
|
|
* current call.
|
|
|
|
* @param {number} preferred - The user preferred max frame height.
|
|
|
|
* @param {number} max - The maximum frame height the application should
|
|
|
|
* receive.
|
|
|
|
* @returns {void}
|
2018-07-24 16:23:38 +00:00
|
|
|
*/
|
2018-07-24 20:43:09 +00:00
|
|
|
function _setReceiverVideoConstraint(conference, preferred, max) {
|
2018-07-24 16:23:38 +00:00
|
|
|
if (conference) {
|
2020-07-07 20:34:52 +00:00
|
|
|
const value = Math.min(preferred, max);
|
|
|
|
|
|
|
|
conference.setReceiverVideoConstraint(value);
|
|
|
|
logger.info(`setReceiverVideoConstraint: ${value}`);
|
2018-07-24 16:23:38 +00:00
|
|
|
}
|
2017-08-09 19:40:03 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 02:51:40 +00:00
|
|
|
/**
|
|
|
|
* Helper function for updating the preferred sender video constraint, based
|
|
|
|
* on the user preference.
|
|
|
|
*
|
|
|
|
* @param {JitsiConference} conference - The JitsiConference instance for the
|
|
|
|
* current call.
|
|
|
|
* @param {number} preferred - The user preferred max frame height.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
function _setSenderVideoConstraint(conference, preferred) {
|
|
|
|
if (conference) {
|
|
|
|
conference.setSenderVideoConstraint(preferred)
|
|
|
|
.catch(err => {
|
|
|
|
logger.error(`Changing sender resolution to ${preferred} failed - ${err} `);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-29 10:46:19 +00:00
|
|
|
/**
|
|
|
|
* Notifies the feature base/conference that the action
|
|
|
|
* {@code SET_ROOM} is being dispatched within a specific
|
|
|
|
* redux store.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code SET_ROOM}
|
|
|
|
* which is being dispatched in the specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
|
|
|
function _setRoom({ dispatch, getState }, next, action) {
|
|
|
|
const state = getState();
|
|
|
|
const { subject } = state['features/base/config'];
|
|
|
|
const { room } = action;
|
|
|
|
|
|
|
|
if (room) {
|
|
|
|
// Set the stored subject.
|
|
|
|
dispatch(setSubject(subject));
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
}
|
|
|
|
|
2016-12-12 00:29:13 +00:00
|
|
|
/**
|
|
|
|
* Synchronizes local tracks from state with local tracks in JitsiConference
|
|
|
|
* instance.
|
|
|
|
*
|
2017-08-04 21:06:42 +00:00
|
|
|
* @param {Store} store - The redux store.
|
2016-12-12 00:29:13 +00:00
|
|
|
* @param {Object} action - Action object.
|
|
|
|
* @private
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
2017-10-04 22:36:09 +00:00
|
|
|
function _syncConferenceLocalTracksWithState({ getState }, action) {
|
2019-03-25 23:15:50 +00:00
|
|
|
const conference = getCurrentConference(getState);
|
2016-12-12 00:29:13 +00:00
|
|
|
let promise;
|
|
|
|
|
2019-03-25 23:15:50 +00:00
|
|
|
if (conference) {
|
2016-12-12 00:29:13 +00:00
|
|
|
const track = action.track.jitsiTrack;
|
|
|
|
|
|
|
|
if (action.type === TRACK_ADDED) {
|
|
|
|
promise = _addLocalTracksToConference(conference, [ track ]);
|
|
|
|
} else {
|
|
|
|
promise = _removeLocalTracksFromConference(conference, [ track ]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return promise || Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2017-08-09 19:40:03 +00:00
|
|
|
/**
|
|
|
|
* Sets the maximum receive video quality.
|
|
|
|
*
|
2018-05-21 03:58:34 +00:00
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code DATA_CHANNEL_STATUS_CHANGED}
|
|
|
|
* which is being dispatched in the specified {@code store}.
|
2017-08-09 19:40:03 +00:00
|
|
|
* @private
|
2018-02-13 17:58:26 +00:00
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
2017-08-09 19:40:03 +00:00
|
|
|
*/
|
2017-10-04 22:36:09 +00:00
|
|
|
function _syncReceiveVideoQuality({ getState }, next, action) {
|
2018-07-24 20:43:09 +00:00
|
|
|
const {
|
|
|
|
conference,
|
|
|
|
maxReceiverVideoQuality,
|
2020-04-28 02:51:40 +00:00
|
|
|
preferredVideoQuality
|
2018-07-24 20:43:09 +00:00
|
|
|
} = getState()['features/base/conference'];
|
2017-08-09 19:40:03 +00:00
|
|
|
|
2018-07-24 20:43:09 +00:00
|
|
|
_setReceiverVideoConstraint(
|
|
|
|
conference,
|
2020-04-28 02:51:40 +00:00
|
|
|
preferredVideoQuality,
|
2018-07-24 20:43:09 +00:00
|
|
|
maxReceiverVideoQuality);
|
2017-08-09 19:40:03 +00:00
|
|
|
|
|
|
|
return next(action);
|
|
|
|
}
|
|
|
|
|
2016-12-05 15:14:50 +00:00
|
|
|
/**
|
2018-05-21 03:58:34 +00:00
|
|
|
* Notifies the feature base/conference that the action {@code TRACK_ADDED}
|
|
|
|
* or {@code TRACK_REMOVED} is being dispatched within a specific redux store.
|
2016-12-05 15:14:50 +00:00
|
|
|
*
|
2018-05-21 03:58:34 +00:00
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code TRACK_ADDED} or
|
|
|
|
* {@code TRACK_REMOVED} which is being dispatched in the specified
|
|
|
|
* {@code store}.
|
2016-12-05 15:14:50 +00:00
|
|
|
* @private
|
2018-02-13 17:58:26 +00:00
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
2016-12-05 15:14:50 +00:00
|
|
|
*/
|
|
|
|
function _trackAddedOrRemoved(store, next, action) {
|
|
|
|
const track = action.track;
|
|
|
|
|
2019-11-26 10:57:03 +00:00
|
|
|
// TODO All track swapping should happen here instead of conference.js.
|
|
|
|
// Since we swap the tracks for the web client in conference.js, ignore
|
|
|
|
// presenter tracks here and do not add/remove them to/from the conference.
|
|
|
|
if (track && track.local && track.mediaType !== MEDIA_TYPE.PRESENTER) {
|
2016-12-05 15:14:50 +00:00
|
|
|
return (
|
|
|
|
_syncConferenceLocalTracksWithState(store, action)
|
|
|
|
.then(() => next(action)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
2019-01-13 19:33:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the conference object when the local participant is updated.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action which is being dispatched in the
|
|
|
|
* specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {Object} The value returned by {@code next(action)}.
|
|
|
|
*/
|
2020-06-16 15:58:06 +00:00
|
|
|
function _updateLocalParticipantInConference({ dispatch, getState }, next, action) {
|
2019-01-13 19:33:28 +00:00
|
|
|
const { conference } = getState()['features/base/conference'];
|
|
|
|
const { participant } = action;
|
|
|
|
const result = next(action);
|
|
|
|
|
2020-06-16 15:58:06 +00:00
|
|
|
const localParticipant = getLocalParticipant(getState);
|
|
|
|
|
|
|
|
if (conference && participant.id === localParticipant.id) {
|
|
|
|
if ('name' in participant) {
|
|
|
|
conference.setDisplayName(participant.name);
|
|
|
|
}
|
|
|
|
|
2020-06-18 07:55:48 +00:00
|
|
|
if ('role' in participant && participant.role === PARTICIPANT_ROLE.MODERATOR) {
|
|
|
|
const { pendingSubjectChange, subject } = getState()['features/base/conference'];
|
2020-06-16 15:58:06 +00:00
|
|
|
|
2020-06-18 07:55:48 +00:00
|
|
|
// When the local user role is updated to moderator and we have a pending subject change
|
|
|
|
// which was not reflected we need to set it (the first time we tried was before becoming moderator).
|
2020-08-19 22:38:32 +00:00
|
|
|
if (typeof pendingSubjectChange !== 'undefined' && pendingSubjectChange !== subject) {
|
2020-06-18 07:55:48 +00:00
|
|
|
dispatch(setSubject(pendingSubjectChange));
|
|
|
|
}
|
2020-06-16 15:58:06 +00:00
|
|
|
}
|
2019-01-13 19:33:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|