jiti-meet/react/features/authentication/actions.js

220 lines
6.1 KiB
JavaScript
Raw Normal View History

2017-10-06 20:15:51 +00:00
// @flow
2017-09-18 07:09:43 +00:00
2017-10-06 20:15:51 +00:00
import { appNavigate } from '../app';
import { checkIfCanJoin, conferenceLeft } from '../base/conference';
2017-09-18 07:09:43 +00:00
import { openDialog } from '../base/dialog';
2017-09-08 13:36:42 +00:00
import {
CANCEL_LOGIN,
STOP_WAIT_FOR_OWNER,
2017-09-18 07:09:43 +00:00
UPGRADE_ROLE_FINISHED,
2017-09-08 13:36:42 +00:00
UPGRADE_ROLE_STARTED,
WAIT_FOR_OWNER
} from './actionTypes';
import { LoginDialog, WaitForOwnerDialog } from './components';
2017-09-18 07:09:43 +00:00
const logger = require('jitsi-meet-logger').getLogger(__filename);
2017-09-08 13:36:42 +00:00
/**
2017-09-18 07:09:43 +00:00
* Initiates authenticating and upgrading the role of the local participant to
* moderator which will allow to create and join a new conference on an XMPP
* password + guest access configuration. Refer to {@link LoginDialog} for more
* info.
2017-09-08 13:36:42 +00:00
*
2017-09-18 07:09:43 +00:00
* @param {string} id - The XMPP user's ID (e.g. user@domain.com).
* @param {string} password - The XMPP user's password.
* @param {JitsiConference} conference - The conference for which the local
* participant's role will be upgraded.
2017-10-06 20:15:51 +00:00
* @returns {Function}
2017-09-08 13:36:42 +00:00
*/
2017-09-18 07:09:43 +00:00
export function authenticateAndUpgradeRole(
id: string,
password: string,
conference: Object) {
return (dispatch: Dispatch, getState: Function) => {
2017-09-08 13:36:42 +00:00
const { password: roomPassword }
= getState()['features/base/conference'];
2017-09-18 07:09:43 +00:00
const process
= conference.authenticateAndUpgradeRole({
id,
password,
roomPassword,
onLoginSuccessful() {
2017-09-24 23:41:20 +00:00
// When the login succeeds, the process has completed half
// of its job (i.e. 0.5).
return dispatch(_upgradeRoleFinished(process, 0.5));
}
2017-09-18 07:09:43 +00:00
});
2017-09-08 13:36:42 +00:00
2017-09-18 07:09:43 +00:00
dispatch(_upgradeRoleStarted(process));
process.then(
2017-09-24 23:41:20 +00:00
/* onFulfilled */ () => dispatch(_upgradeRoleFinished(process, 1)),
2017-09-18 07:09:43 +00:00
/* onRejected */ error => {
// The lack of an error signals a cancellation.
if (error.authenticationError || error.connectionError) {
logger.error('authenticateAndUpgradeRole failed', error);
}
2017-09-24 23:41:20 +00:00
dispatch(_upgradeRoleFinished(process, error));
2017-09-18 07:09:43 +00:00
});
return process;
2017-09-08 13:36:42 +00:00
};
}
/**
* Cancels {@ink LoginDialog}.
*
* @returns {{
2017-09-18 07:09:43 +00:00
* type: CANCEL_LOGIN
2017-09-08 13:36:42 +00:00
* }}
*/
export function cancelLogin() {
return {
type: CANCEL_LOGIN
};
}
/**
* Cancels {@link WaitForOwnerDialog}. Will navigate back to the welcome page.
*
2017-10-06 20:15:51 +00:00
* @returns {Function}
2017-09-08 13:36:42 +00:00
*/
export function cancelWaitForOwner() {
return (dispatch: Dispatch<*>, getState: Function) => {
2017-10-06 20:15:51 +00:00
dispatch(stopWaitForOwner());
// XXX The error associated with CONFERENCE_FAILED was marked as
// recoverable by the feature room-lock and, consequently,
// recoverable-aware features such as mobile's external-api did not
// deliver the CONFERENCE_FAILED to the SDK clients/consumers. Since the
// app/user is going to nativate to WelcomePage, the SDK
// clients/consumers need an event.
const { authRequired } = getState()['features/base/conference'];
authRequired && dispatch(conferenceLeft(authRequired));
2017-10-06 20:15:51 +00:00
dispatch(appNavigate(undefined));
2017-09-08 13:36:42 +00:00
};
}
/**
2017-09-18 07:09:43 +00:00
* Opens {@link LoginDialog} which will ask to enter username and password
2017-09-08 13:36:42 +00:00
* for the current conference.
*
* @protected
2017-09-18 07:09:43 +00:00
* @returns {Action}
2017-09-08 13:36:42 +00:00
*/
2017-09-18 07:09:43 +00:00
export function _openLoginDialog() {
return openDialog(LoginDialog);
2017-09-08 13:36:42 +00:00
}
/**
2017-09-18 07:09:43 +00:00
* Opens {@link WaitForOnwerDialog}.
2017-09-08 13:36:42 +00:00
*
* @protected
2017-09-18 07:09:43 +00:00
* @returns {Action}
2017-09-08 13:36:42 +00:00
*/
2017-09-18 07:09:43 +00:00
export function _openWaitForOwnerDialog() {
return openDialog(WaitForOwnerDialog);
2017-09-08 13:36:42 +00:00
}
/**
2017-09-18 07:09:43 +00:00
* Stops waiting for the conference owner.
2017-09-08 13:36:42 +00:00
*
* @returns {{
2017-09-18 07:09:43 +00:00
* type: STOP_WAIT_FOR_OWNER
2017-09-08 13:36:42 +00:00
* }}
*/
2017-09-18 07:09:43 +00:00
export function stopWaitForOwner() {
2017-09-08 13:36:42 +00:00
return {
2017-09-18 07:09:43 +00:00
type: STOP_WAIT_FOR_OWNER
2017-09-08 13:36:42 +00:00
};
}
/**
2017-09-18 07:09:43 +00:00
* Signals that the process of authenticating and upgrading the local
* participant's role has finished either with success or with a specific error.
2017-09-08 13:36:42 +00:00
*
2017-09-24 23:41:20 +00:00
* @param {Object} thenableWithCancel - The process of authenticating and
* upgrading the local participant's role.
* @param {Object} progressOrError - If the value is a {@code number}, then the
2017-09-24 23:41:20 +00:00
* process of authenticating and upgrading the local participant's role has
* succeeded in one of its two/multiple steps; otherwise, it has failed with the
* specified error. Refer to {@link JitsiConference#authenticateAndUpgradeRole}
* in lib-jitsi-meet for the error details.
2017-09-08 13:36:42 +00:00
* @private
* @returns {{
2017-09-18 07:09:43 +00:00
* type: UPGRADE_ROLE_FINISHED,
2017-09-24 23:41:20 +00:00
* error: ?Object,
* progress: number
2017-09-08 13:36:42 +00:00
* }}
*/
2017-09-24 23:41:20 +00:00
function _upgradeRoleFinished(
thenableWithCancel,
progressOrError: number | Object) {
let error;
let progress;
if (typeof progressOrError === 'number') {
progress = progressOrError;
} else {
// Make the specified error object resemble an Error instance (to the
// extent that jitsi-meet needs it).
const {
authenticationError,
connectionError,
...other
2017-09-24 23:41:20 +00:00
} = progressOrError;
2017-09-24 23:41:20 +00:00
error = {
name: authenticationError || connectionError,
...other
};
2017-09-24 23:41:20 +00:00
progress = authenticationError ? 0.5 : 0;
}
2017-09-08 13:36:42 +00:00
return {
2017-09-18 07:09:43 +00:00
type: UPGRADE_ROLE_FINISHED,
2017-09-24 23:41:20 +00:00
error,
progress,
thenableWithCancel
2017-09-08 13:36:42 +00:00
};
}
/**
2017-09-18 07:09:43 +00:00
* Signals that a process of authenticating and upgrading the local
* participant's role has started.
2017-09-08 13:36:42 +00:00
*
2017-09-18 07:09:43 +00:00
* @param {Object} thenableWithCancel - The process of authenticating and
* upgrading the local participant's role.
2017-09-08 13:36:42 +00:00
* @private
* @returns {{
2017-09-18 07:09:43 +00:00
* type: UPGRADE_ROLE_STARTED,
* thenableWithCancel: Object
2017-09-08 13:36:42 +00:00
* }}
*/
2017-09-18 07:09:43 +00:00
function _upgradeRoleStarted(thenableWithCancel) {
2017-09-08 13:36:42 +00:00
return {
2017-09-18 07:09:43 +00:00
type: UPGRADE_ROLE_STARTED,
thenableWithCancel
2017-09-08 13:36:42 +00:00
};
}
/**
* Called when Jicofo rejects to create the room for anonymous user. Will
* start the process of "waiting for the owner" by periodically trying to join
* the room every five seconds.
*
2017-10-06 20:15:51 +00:00
* @returns {Function}
2017-09-08 13:36:42 +00:00
*/
export function waitForOwner() {
2017-09-18 07:09:43 +00:00
return (dispatch: Dispatch) =>
dispatch({
type: WAIT_FOR_OWNER,
handler: () => dispatch(checkIfCanJoin()),
timeoutMs: 5000
});
2017-09-08 13:36:42 +00:00
}