2017-02-14 00:03:21 +08:00
|
|
|
/*
|
|
|
|
Copyright 2017 Vector Creations Ltd.
|
2019-05-22 18:51:26 +08:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2017-02-14 00:03:21 +08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-12-21 05:41:07 +08:00
|
|
|
import {InteractiveAuth} from "matrix-js-sdk";
|
2019-12-08 20:16:17 +08:00
|
|
|
import React, {createRef} from 'react';
|
2019-08-30 17:34:59 +08:00
|
|
|
import createReactClass from 'create-react-class';
|
2017-12-26 09:03:18 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2017-02-14 00:03:21 +08:00
|
|
|
|
2020-01-25 06:26:28 +08:00
|
|
|
import getEntryComponentForLoginType from '../views/auth/InteractiveAuthEntryComponents';
|
2017-02-14 00:03:21 +08:00
|
|
|
|
2019-12-20 09:19:56 +08:00
|
|
|
import * as sdk from '../../index';
|
2019-06-10 22:22:53 +08:00
|
|
|
|
2019-08-30 17:34:59 +08:00
|
|
|
export default createReactClass({
|
2017-02-14 00:03:21 +08:00
|
|
|
displayName: 'InteractiveAuth',
|
|
|
|
|
|
|
|
propTypes: {
|
2017-02-24 19:41:23 +08:00
|
|
|
// matrix client to use for UI auth requests
|
2017-12-26 09:03:18 +08:00
|
|
|
matrixClient: PropTypes.object.isRequired,
|
2017-02-24 19:41:23 +08:00
|
|
|
|
2017-02-14 00:03:21 +08:00
|
|
|
// response from initial request. If not supplied, will do a request on
|
|
|
|
// mount.
|
2017-12-26 09:03:18 +08:00
|
|
|
authData: PropTypes.shape({
|
|
|
|
flows: PropTypes.array,
|
|
|
|
params: PropTypes.object,
|
|
|
|
session: PropTypes.string,
|
2017-02-14 00:03:21 +08:00
|
|
|
}),
|
|
|
|
|
|
|
|
// callback
|
2017-12-26 09:03:18 +08:00
|
|
|
makeRequest: PropTypes.func.isRequired,
|
2017-02-14 00:03:21 +08:00
|
|
|
|
2017-03-03 20:08:26 +08:00
|
|
|
// callback called when the auth process has finished,
|
|
|
|
// successfully or unsuccessfully.
|
2017-02-14 03:09:43 +08:00
|
|
|
// @param {bool} status True if the operation requiring
|
|
|
|
// auth was completed sucessfully, false if canceled.
|
2017-03-07 01:31:21 +08:00
|
|
|
// @param {object} result The result of the authenticated call
|
|
|
|
// if successful, otherwise the error object
|
|
|
|
// @param {object} extra Additional information about the UI Auth
|
|
|
|
// process:
|
|
|
|
// * emailSid {string} If email auth was performed, the sid of
|
|
|
|
// the auth session.
|
|
|
|
// * clientSecret {string} The client secret used in auth
|
|
|
|
// sessions with the ID server.
|
2017-12-26 09:03:18 +08:00
|
|
|
onAuthFinished: PropTypes.func.isRequired,
|
2017-02-24 19:41:23 +08:00
|
|
|
|
|
|
|
// Inputs provided by the user to the auth process
|
|
|
|
// and used by various stages. As passed to js-sdk
|
|
|
|
// interactive-auth
|
2017-12-26 09:03:18 +08:00
|
|
|
inputs: PropTypes.object,
|
2017-02-24 19:41:23 +08:00
|
|
|
|
|
|
|
// As js-sdk interactive-auth
|
2019-05-22 18:51:26 +08:00
|
|
|
requestEmailToken: PropTypes.func,
|
2017-12-26 09:03:18 +08:00
|
|
|
sessionId: PropTypes.string,
|
|
|
|
clientSecret: PropTypes.string,
|
|
|
|
emailSid: PropTypes.string,
|
2017-02-25 01:24:10 +08:00
|
|
|
|
|
|
|
// If true, poll to see if the auth flow has been completed
|
|
|
|
// out-of-band
|
2017-12-26 09:03:18 +08:00
|
|
|
poll: PropTypes.bool,
|
2018-11-15 09:26:08 +08:00
|
|
|
|
|
|
|
// If true, components will be told that the 'Continue' button
|
|
|
|
// is managed by some other party and should not be managed by
|
|
|
|
// the component itself.
|
|
|
|
continueIsManaged: PropTypes.bool,
|
2017-02-14 00:03:21 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
authStage: null,
|
|
|
|
busy: false,
|
|
|
|
errorText: null,
|
|
|
|
stageErrorText: null,
|
|
|
|
submitButtonEnabled: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
this._unmounted = false;
|
|
|
|
this._authLogic = new InteractiveAuth({
|
|
|
|
authData: this.props.authData,
|
2019-06-10 23:18:58 +08:00
|
|
|
doRequest: this._requestCallback,
|
2019-06-10 23:27:27 +08:00
|
|
|
busyChanged: this._onBusyChanged,
|
2017-02-24 19:41:23 +08:00
|
|
|
inputs: this.props.inputs,
|
|
|
|
stateUpdated: this._authStateUpdated,
|
|
|
|
matrixClient: this.props.matrixClient,
|
|
|
|
sessionId: this.props.sessionId,
|
|
|
|
clientSecret: this.props.clientSecret,
|
|
|
|
emailSid: this.props.emailSid,
|
2019-06-07 02:41:57 +08:00
|
|
|
requestEmailToken: this._requestEmailToken,
|
2017-02-14 00:03:21 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
this._authLogic.attemptAuth().then((result) => {
|
2017-03-07 01:31:21 +08:00
|
|
|
const extra = {
|
|
|
|
emailSid: this._authLogic.getEmailSid(),
|
|
|
|
clientSecret: this._authLogic.getClientSecret(),
|
|
|
|
};
|
|
|
|
this.props.onAuthFinished(true, result, extra);
|
2017-02-14 00:03:21 +08:00
|
|
|
}).catch((error) => {
|
2017-03-03 20:08:26 +08:00
|
|
|
this.props.onAuthFinished(false, error);
|
2017-02-14 00:03:21 +08:00
|
|
|
console.error("Error during user-interactive auth:", error);
|
|
|
|
if (this._unmounted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const msg = error.message || error.toString();
|
|
|
|
this.setState({
|
2017-10-12 00:56:17 +08:00
|
|
|
errorText: msg,
|
2017-02-14 00:03:21 +08:00
|
|
|
});
|
2019-11-18 18:03:05 +08:00
|
|
|
});
|
2017-02-25 01:24:10 +08:00
|
|
|
|
|
|
|
this._intervalId = null;
|
|
|
|
if (this.props.poll) {
|
|
|
|
this._intervalId = setInterval(() => {
|
|
|
|
this._authLogic.poll();
|
|
|
|
}, 2000);
|
|
|
|
}
|
2019-12-08 20:16:17 +08:00
|
|
|
|
|
|
|
this._stageComponent = createRef();
|
2017-02-14 00:03:21 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
this._unmounted = true;
|
2017-02-25 01:24:10 +08:00
|
|
|
|
|
|
|
if (this._intervalId !== null) {
|
|
|
|
clearInterval(this._intervalId);
|
|
|
|
}
|
2019-06-07 02:41:57 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
_requestEmailToken: async function(...args) {
|
|
|
|
this.setState({
|
|
|
|
busy: true,
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
return await this.props.requestEmailToken(...args);
|
|
|
|
} finally {
|
|
|
|
this.setState({
|
|
|
|
busy: false,
|
|
|
|
});
|
|
|
|
}
|
2017-02-14 00:03:21 +08:00
|
|
|
},
|
|
|
|
|
2018-11-15 09:26:08 +08:00
|
|
|
tryContinue: function() {
|
2019-12-08 20:16:17 +08:00
|
|
|
if (this._stageComponent.current && this._stageComponent.current.tryContinue) {
|
|
|
|
this._stageComponent.current.tryContinue();
|
2018-11-15 09:26:08 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-02-24 19:41:23 +08:00
|
|
|
_authStateUpdated: function(stageType, stageState) {
|
|
|
|
const oldStage = this.state.authStage;
|
2017-02-14 00:03:21 +08:00
|
|
|
this.setState({
|
|
|
|
authStage: stageType,
|
2017-02-24 19:41:23 +08:00
|
|
|
stageState: stageState,
|
2017-03-02 00:59:25 +08:00
|
|
|
errorText: stageState.error,
|
2017-02-24 19:41:23 +08:00
|
|
|
}, () => {
|
|
|
|
if (oldStage != stageType) this._setFocus();
|
|
|
|
});
|
2017-02-14 00:03:21 +08:00
|
|
|
},
|
|
|
|
|
2019-06-10 23:18:58 +08:00
|
|
|
_requestCallback: function(auth) {
|
|
|
|
// This wrapper just exists because the js-sdk passes a second
|
|
|
|
// 'busy' param for backwards compat. This throws the tests off
|
|
|
|
// so discard it here.
|
|
|
|
return this.props.makeRequest(auth);
|
|
|
|
},
|
|
|
|
|
2019-06-10 23:27:27 +08:00
|
|
|
_onBusyChanged: function(busy) {
|
2019-06-10 22:22:53 +08:00
|
|
|
// if we've started doing stuff, reset the error messages
|
|
|
|
if (busy) {
|
|
|
|
this.setState({
|
|
|
|
busy: true,
|
|
|
|
errorText: null,
|
|
|
|
stageErrorText: null,
|
|
|
|
});
|
|
|
|
} else {
|
2017-03-22 19:25:33 +08:00
|
|
|
this.setState({
|
|
|
|
busy: false,
|
|
|
|
});
|
2019-06-10 22:22:53 +08:00
|
|
|
}
|
2017-02-14 00:03:21 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
_setFocus: function() {
|
2019-12-08 20:16:17 +08:00
|
|
|
if (this._stageComponent.current && this._stageComponent.current.focus) {
|
|
|
|
this._stageComponent.current.focus();
|
2017-02-14 00:03:21 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_submitAuthDict: function(authData) {
|
|
|
|
this._authLogic.submitAuthDict(authData);
|
|
|
|
},
|
|
|
|
|
|
|
|
_renderCurrentStage: function() {
|
|
|
|
const stage = this.state.authStage;
|
2019-06-10 22:22:53 +08:00
|
|
|
if (!stage) {
|
|
|
|
if (this.state.busy) {
|
|
|
|
const Loader = sdk.getComponent("elements.Spinner");
|
|
|
|
return <Loader />;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2017-02-24 19:41:23 +08:00
|
|
|
|
|
|
|
const StageComponent = getEntryComponentForLoginType(stage);
|
2017-02-14 00:03:21 +08:00
|
|
|
return (
|
2019-12-08 20:16:17 +08:00
|
|
|
<StageComponent
|
|
|
|
ref={this._stageComponent}
|
2017-02-14 00:03:21 +08:00
|
|
|
loginType={stage}
|
2017-02-24 19:41:23 +08:00
|
|
|
matrixClient={this.props.matrixClient}
|
2017-02-14 00:03:21 +08:00
|
|
|
authSessionId={this._authLogic.getSessionId()}
|
2017-03-02 00:04:15 +08:00
|
|
|
clientSecret={this._authLogic.getClientSecret()}
|
2017-02-14 00:03:21 +08:00
|
|
|
stageParams={this._authLogic.getStageParams(stage)}
|
|
|
|
submitAuthDict={this._submitAuthDict}
|
|
|
|
errorText={this.state.stageErrorText}
|
2017-02-14 02:52:33 +08:00
|
|
|
busy={this.state.busy}
|
2017-02-24 19:41:23 +08:00
|
|
|
inputs={this.props.inputs}
|
|
|
|
stageState={this.state.stageState}
|
2017-03-02 00:04:15 +08:00
|
|
|
fail={this._onAuthStageFailed}
|
|
|
|
setEmailSid={this._setEmailSid}
|
2018-11-17 03:15:44 +08:00
|
|
|
showContinue={!this.props.continueIsManaged}
|
2017-02-14 00:03:21 +08:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
2017-03-02 00:04:15 +08:00
|
|
|
_onAuthStageFailed: function(e) {
|
2017-03-03 20:08:26 +08:00
|
|
|
this.props.onAuthFinished(false, e);
|
2017-03-02 00:04:15 +08:00
|
|
|
},
|
|
|
|
_setEmailSid: function(sid) {
|
|
|
|
this._authLogic.setEmailSid(sid);
|
|
|
|
},
|
|
|
|
|
2017-02-14 00:03:21 +08:00
|
|
|
render: function() {
|
|
|
|
let error = null;
|
|
|
|
if (this.state.errorText) {
|
|
|
|
error = (
|
|
|
|
<div className="error">
|
2017-10-12 00:56:17 +08:00
|
|
|
{ this.state.errorText }
|
2017-02-14 00:03:21 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<div>
|
2017-10-12 00:56:17 +08:00
|
|
|
{ this._renderCurrentStage() }
|
|
|
|
{ error }
|
2017-02-14 00:03:21 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|