2018-05-10 04:45:24 +00:00
|
|
|
// @flow
|
2017-06-07 15:50:30 +00:00
|
|
|
|
|
|
|
import { NativeModules } from 'react-native';
|
|
|
|
|
2018-05-10 04:45:24 +00:00
|
|
|
import { getAppProp } from '../../app';
|
2017-06-07 15:50:30 +00:00
|
|
|
import {
|
|
|
|
CONFERENCE_FAILED,
|
|
|
|
CONFERENCE_JOINED,
|
|
|
|
CONFERENCE_LEFT,
|
|
|
|
CONFERENCE_WILL_JOIN,
|
2017-08-01 00:40:55 +00:00
|
|
|
CONFERENCE_WILL_LEAVE,
|
2018-04-25 23:07:25 +00:00
|
|
|
JITSI_CONFERENCE_URL_KEY,
|
|
|
|
SET_ROOM,
|
|
|
|
isRoomValid
|
2017-06-07 15:50:30 +00:00
|
|
|
} from '../../base/conference';
|
2017-08-25 15:21:01 +00:00
|
|
|
import { LOAD_CONFIG_ERROR } from '../../base/config';
|
2018-04-25 23:10:13 +00:00
|
|
|
import { CONNECTION_FAILED } from '../../base/connection';
|
2017-06-07 15:50:30 +00:00
|
|
|
import { MiddlewareRegistry } from '../../base/redux';
|
2017-08-01 00:40:55 +00:00
|
|
|
import { toURLString } from '../../base/util';
|
2018-02-19 22:52:21 +00:00
|
|
|
import { ENTER_PICTURE_IN_PICTURE } from '../picture-in-picture';
|
2018-02-01 16:02:07 +00:00
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
/**
|
|
|
|
* Middleware that captures Redux actions and uses the ExternalAPI module to
|
|
|
|
* turn them into native events so the application knows about them.
|
|
|
|
*
|
|
|
|
* @param {Store} store - Redux store.
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
MiddlewareRegistry.register(store => next => action => {
|
2017-06-09 04:59:31 +00:00
|
|
|
const result = next(action);
|
2017-06-07 15:50:30 +00:00
|
|
|
|
|
|
|
switch (action.type) {
|
2017-10-05 15:21:37 +00:00
|
|
|
case CONFERENCE_FAILED: {
|
|
|
|
const { error, ...data } = action;
|
|
|
|
|
|
|
|
// XXX Certain CONFERENCE_FAILED errors are recoverable i.e. they have
|
|
|
|
// prevented the user from joining a specific conference but the app may
|
|
|
|
// be able to eventually join the conference. For example, the app will
|
|
|
|
// ask the user for a password upon
|
|
|
|
// JitsiConferenceErrors.PASSWORD_REQUIRED and will retry joining the
|
|
|
|
// conference afterwards. Such errors are to not reach the native
|
|
|
|
// counterpart of the External API (or at least not in the
|
|
|
|
// fatality/finality semantics attributed to
|
|
|
|
// conferenceFailed:/onConferenceFailed).
|
|
|
|
if (!error.recoverable) {
|
|
|
|
_sendConferenceEvent(store, /* action */ {
|
|
|
|
error: _toErrorString(error),
|
|
|
|
...data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-06-09 04:59:31 +00:00
|
|
|
case CONFERENCE_JOINED:
|
|
|
|
case CONFERENCE_LEFT:
|
|
|
|
case CONFERENCE_WILL_JOIN:
|
2017-10-05 15:21:37 +00:00
|
|
|
case CONFERENCE_WILL_LEAVE:
|
|
|
|
_sendConferenceEvent(store, action);
|
2017-06-07 15:50:30 +00:00
|
|
|
break;
|
2017-08-25 15:21:01 +00:00
|
|
|
|
2018-04-25 23:10:13 +00:00
|
|
|
case CONNECTION_FAILED:
|
2018-05-01 19:58:46 +00:00
|
|
|
!action.error.recoverable
|
|
|
|
&& _sendConferenceFailedOnConnectionError(store, action);
|
2018-04-25 23:10:13 +00:00
|
|
|
break;
|
|
|
|
|
2018-02-19 22:52:21 +00:00
|
|
|
case ENTER_PICTURE_IN_PICTURE:
|
|
|
|
_sendEvent(store, _getSymbolDescription(action.type), /* data */ {});
|
|
|
|
break;
|
|
|
|
|
2017-08-25 15:21:01 +00:00
|
|
|
case LOAD_CONFIG_ERROR: {
|
2017-09-06 23:26:33 +00:00
|
|
|
const { error, locationURL, type } = action;
|
2017-08-25 15:21:01 +00:00
|
|
|
|
2017-10-05 15:21:37 +00:00
|
|
|
_sendEvent(store, _getSymbolDescription(type), /* data */ {
|
|
|
|
error: _toErrorString(error),
|
2017-09-06 23:26:33 +00:00
|
|
|
url: toURLString(locationURL)
|
|
|
|
});
|
2017-08-25 15:21:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-04-25 23:07:25 +00:00
|
|
|
|
|
|
|
case SET_ROOM:
|
|
|
|
_maybeTriggerEarlyConferenceWillJoin(store, action);
|
|
|
|
break;
|
2017-06-07 15:50:30 +00:00
|
|
|
}
|
|
|
|
|
2017-06-09 04:59:31 +00:00
|
|
|
return result;
|
2017-06-07 15:50:30 +00:00
|
|
|
});
|
|
|
|
|
2017-10-05 15:21:37 +00:00
|
|
|
/**
|
|
|
|
* Returns a {@code String} representation of a specific error {@code Object}.
|
|
|
|
*
|
|
|
|
* @param {Error|Object|string} error - The error {@code Object} to return a
|
|
|
|
* {@code String} representation of.
|
|
|
|
* @returns {string} A {@code String} representation of the specified
|
|
|
|
* {@code error}.
|
|
|
|
*/
|
|
|
|
function _toErrorString(
|
|
|
|
error: Error | { message: ?string, name: ?string } | string) {
|
|
|
|
// XXX In lib-jitsi-meet and jitsi-meet we utilize errors in the form of
|
|
|
|
// strings, Error instances, and plain objects which resemble Error.
|
|
|
|
return (
|
|
|
|
error
|
|
|
|
? typeof error === 'string'
|
|
|
|
? error
|
2017-10-26 14:52:57 +00:00
|
|
|
: Error.prototype.toString.apply(error)
|
2017-10-05 15:21:37 +00:00
|
|
|
: '');
|
|
|
|
}
|
|
|
|
|
2017-09-06 03:40:12 +00:00
|
|
|
/**
|
2017-10-01 06:35:19 +00:00
|
|
|
* Gets the description of a specific {@code Symbol}.
|
2017-09-06 03:40:12 +00:00
|
|
|
*
|
2017-10-01 06:35:19 +00:00
|
|
|
* @param {Symbol} symbol - The {@code Symbol} to retrieve the description of.
|
2017-09-06 03:40:12 +00:00
|
|
|
* @private
|
2017-10-01 06:35:19 +00:00
|
|
|
* @returns {string} The description of {@code symbol}.
|
2017-09-06 03:40:12 +00:00
|
|
|
*/
|
|
|
|
function _getSymbolDescription(symbol: Symbol) {
|
|
|
|
let description = symbol.toString();
|
|
|
|
|
|
|
|
if (description.startsWith('Symbol(') && description.endsWith(')')) {
|
|
|
|
description = description.slice(7, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The polyfill es6-symbol that we use does not appear to comply with the
|
|
|
|
// Symbol standard and, merely, adds @@ at the beginning of the description.
|
|
|
|
if (description.startsWith('@@')) {
|
|
|
|
description = description.slice(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return description;
|
2017-10-05 15:21:37 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:07:25 +00:00
|
|
|
/**
|
|
|
|
* If {@link SET_ROOM} action happens for a valid conference room this method
|
|
|
|
* will emit an early {@link CONFERENCE_WILL_JOIN} event to let the external API
|
|
|
|
* know that a conference is being joined. Before that happens a connection must
|
|
|
|
* be created and only then base/conference feature would emit
|
|
|
|
* {@link CONFERENCE_WILL_JOIN}. That is fine for the Jitsi Meet app, because
|
|
|
|
* that's the a conference instance gets created, but it's too late for
|
|
|
|
* the external API to learn that. The latter {@link CONFERENCE_WILL_JOIN} is
|
|
|
|
* swallowed in {@link _swallowEvent}.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store.
|
|
|
|
* @param {Action} action - The redux action.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
function _maybeTriggerEarlyConferenceWillJoin(store, action) {
|
|
|
|
const { locationURL } = store.getState()['features/base/connection'];
|
|
|
|
const { room } = action;
|
|
|
|
|
|
|
|
isRoomValid(room) && locationURL && _sendEvent(
|
|
|
|
store,
|
|
|
|
_getSymbolDescription(CONFERENCE_WILL_JOIN),
|
|
|
|
/* data */ {
|
|
|
|
url: toURLString(locationURL)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-10-05 15:21:37 +00:00
|
|
|
/**
|
|
|
|
* Sends an event to the native counterpart of the External API for a specific
|
|
|
|
* conference-related redux action.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store.
|
|
|
|
* @param {Action} action - The redux action.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
function _sendConferenceEvent(
|
|
|
|
store: Object,
|
2018-03-05 01:25:23 +00:00
|
|
|
action: {
|
2017-12-01 21:07:58 +00:00
|
|
|
conference: Object,
|
|
|
|
type: Symbol,
|
|
|
|
url: ?string
|
|
|
|
}) {
|
2018-03-05 01:25:23 +00:00
|
|
|
const { conference, type, ...data } = action;
|
|
|
|
|
2017-10-05 15:21:37 +00:00
|
|
|
// For these (redux) actions, conference identifies a JitsiConference
|
|
|
|
// instance. The external API cannot transport such an object so we have to
|
|
|
|
// transport an "equivalent".
|
|
|
|
if (conference) {
|
|
|
|
data.url = toURLString(conference[JITSI_CONFERENCE_URL_KEY]);
|
|
|
|
}
|
|
|
|
|
2018-03-05 01:25:23 +00:00
|
|
|
_swallowEvent(store, action, data)
|
|
|
|
|| _sendEvent(store, _getSymbolDescription(type), data);
|
2017-09-06 03:40:12 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 23:10:13 +00:00
|
|
|
/**
|
|
|
|
* Sends {@link CONFERENCE_FAILED} event when the {@link CONNECTION_FAILED}
|
|
|
|
* occurs. Otherwise the external API will not emit such event, because at this
|
|
|
|
* point conference has not been created yet and the base/conference feature
|
|
|
|
* will not emit it.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store.
|
|
|
|
* @param {Action} action - The redux action.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
function _sendConferenceFailedOnConnectionError(store, action) {
|
|
|
|
const { locationURL } = store.getState()['features/base/connection'];
|
|
|
|
|
|
|
|
locationURL && _sendEvent(
|
|
|
|
store,
|
|
|
|
_getSymbolDescription(CONFERENCE_FAILED),
|
|
|
|
/* data */ {
|
|
|
|
url: toURLString(locationURL),
|
|
|
|
error: action.error.name
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-07 15:50:30 +00:00
|
|
|
/**
|
2017-06-09 04:59:31 +00:00
|
|
|
* Sends a specific event to the native counterpart of the External API. Native
|
|
|
|
* apps may listen to such events via the mechanisms provided by the (native)
|
|
|
|
* mobile Jitsi Meet SDK.
|
2017-06-07 15:50:30 +00:00
|
|
|
*
|
2017-10-04 22:36:09 +00:00
|
|
|
* @param {Object} store - The redux store.
|
2017-06-09 04:59:31 +00:00
|
|
|
* @param {string} name - The name of the event to send.
|
|
|
|
* @param {Object} data - The details/specifics of the event to send determined
|
|
|
|
* by/associated with the specified {@code name}.
|
2017-06-07 15:50:30 +00:00
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
2018-05-10 04:45:24 +00:00
|
|
|
function _sendEvent(store: Object, name: string, data: Object) {
|
2018-05-01 04:43:47 +00:00
|
|
|
// The JavaScript App needs to provide uniquely identifying information to
|
|
|
|
// the native ExternalAPI module so that the latter may match the former to
|
|
|
|
// the native JitsiMeetView which hosts it.
|
2018-05-10 04:45:24 +00:00
|
|
|
const externalAPIScope = getAppProp(store, 'externalAPIScope');
|
2017-06-10 00:17:01 +00:00
|
|
|
|
2018-05-10 04:45:24 +00:00
|
|
|
externalAPIScope
|
|
|
|
&& NativeModules.ExternalAPI.sendEvent(name, data, externalAPIScope);
|
2017-06-07 15:50:30 +00:00
|
|
|
}
|
2018-03-05 01:25:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether to not send a {@code CONFERENCE_LEFT} event to the native
|
|
|
|
* counterpart of the External API.
|
|
|
|
*
|
|
|
|
* @param {Object} store - The redux store.
|
|
|
|
* @param {Action} action - The redux action which is causing the sending of the
|
|
|
|
* event.
|
|
|
|
* @param {Object} data - The details/specifics of the event to send determined
|
|
|
|
* by/associated with the specified {@code action}.
|
|
|
|
* @returns {boolean} If the specified event is to not be sent, {@code true};
|
|
|
|
* otherwise, {@code false}.
|
|
|
|
*/
|
|
|
|
function _swallowConferenceLeft({ getState }, action, { url }) {
|
|
|
|
// XXX Internally, we work with JitsiConference instances. Externally
|
|
|
|
// though, we deal with URL strings. The relation between the two is many to
|
|
|
|
// one so it's technically and practically possible (by externally loading
|
|
|
|
// the same URL string multiple times) to try to send CONFERENCE_LEFT
|
|
|
|
// externally for a URL string which identifies a JitsiConference that the
|
|
|
|
// app is internally legitimately working with.
|
|
|
|
|
|
|
|
if (url) {
|
|
|
|
const stateFeaturesBaseConference
|
|
|
|
= getState()['features/base/conference'];
|
|
|
|
|
|
|
|
// eslint-disable-next-line guard-for-in
|
|
|
|
for (const p in stateFeaturesBaseConference) {
|
|
|
|
const v = stateFeaturesBaseConference[p];
|
|
|
|
|
|
|
|
// Does the value of the base/conference's property look like a
|
|
|
|
// JitsiConference?
|
|
|
|
if (v && typeof v === 'object') {
|
|
|
|
const vURL = v[JITSI_CONFERENCE_URL_KEY];
|
|
|
|
|
|
|
|
if (vURL && vURL.toString() === url) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether to not send a specific event to the native counterpart of
|
|
|
|
* the External API.
|
|
|
|
*
|
|
|
|
* @param {Object} store - The redux store.
|
|
|
|
* @param {Action} action - The redux action which is causing the sending of the
|
|
|
|
* event.
|
|
|
|
* @param {Object} data - The details/specifics of the event to send determined
|
|
|
|
* by/associated with the specified {@code action}.
|
|
|
|
* @returns {boolean} If the specified event is to not be sent, {@code true};
|
|
|
|
* otherwise, {@code false}.
|
|
|
|
*/
|
|
|
|
function _swallowEvent(store, action, data) {
|
|
|
|
switch (action.type) {
|
|
|
|
case CONFERENCE_LEFT:
|
|
|
|
return _swallowConferenceLeft(store, action, data);
|
2018-04-25 23:07:25 +00:00
|
|
|
case CONFERENCE_WILL_JOIN:
|
|
|
|
// CONFERENCE_WILL_JOIN is dispatched to the external API on SET_ROOM,
|
|
|
|
// before the connection is created, so we need to swallow the original
|
|
|
|
// one emitted by base/conference.
|
|
|
|
return true;
|
2018-03-05 01:25:23 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|