/* Copyright 2016 OpenMarket Ltd Copyright 2017 Vector Creations Ltd Copyright 2020 The Matrix.org Foundation C.I.C. 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. */ import React from 'react'; import createReactClass from 'create-react-class'; import PropTypes from 'prop-types'; import * as sdk from '../../../index'; import { _t } from '../../../languageHandler'; import AccessibleButton from '../elements/AccessibleButton'; import {ERROR_USER_CANCELLED} from "../../structures/InteractiveAuth"; export default createReactClass({ displayName: 'InteractiveAuthDialog', propTypes: { // matrix client to use for UI auth requests matrixClient: PropTypes.object.isRequired, // response from initial request. If not supplied, will do a request on // mount. authData: PropTypes.shape({ flows: PropTypes.array, params: PropTypes.object, session: PropTypes.string, }), // callback makeRequest: PropTypes.func.isRequired, onFinished: PropTypes.func.isRequired, // Optional title and body to show when not showing a particular stage title: PropTypes.string, body: PropTypes.string, // Optional title and body pairs for particular stages and phases within // those stages. Object structure/example is: // { // "org.example.stage_type": { // 1: { // "body": "This is a body for phase 1" of org.example.stage_type, // "title": "Title for phase 1 of org.example.stage_type" // }, // 2: { // "body": "This is a body for phase 2 of org.example.stage_type", // "title": "Title for phase 2 of org.example.stage_type" // "continueText": "Confirm identity with Example Auth", // "continueKind": "danger" // } // } // } aestheticsForStagePhases: PropTypes.object, }, getInitialState: function() { return { authError: null, // See _onUpdateStagePhase() uiaStage: null, uiaStagePhase: null, }; }, _onAuthFinished: function(success, result) { if (success) { this.props.onFinished(true, result); } else { if (result === ERROR_USER_CANCELLED) { this.props.onFinished(false, null); } else { this.setState({ authError: result, }); } } }, _onUpdateStagePhase: function(newStage, newPhase) { // We copy the stage and stage phase params into state for title selection in render() this.setState({uiaStage: newStage, uiaStagePhase: newPhase}); }, _onDismissClick: function() { this.props.onFinished(false); }, render: function() { const InteractiveAuth = sdk.getComponent("structures.InteractiveAuth"); const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); // Let's pick a title, body, and other params text that we'll show to the user. The order // is most specific first, so stagePhase > our props > defaults. let title = this.state.authError ? 'Error' : (this.props.title || _t('Authentication')); let body = this.state.authError ? null : this.props.body; let continueText = null; let continueKind = null; if (!this.state.authError && this.props.aestheticsForStagePhases) { if (this.props.aestheticsForStagePhases[this.state.uiaStage]) { const aesthetics = this.props.aestheticsForStagePhases[this.state.uiaStage][this.state.uiaStagePhase]; if (aesthetics && aesthetics.title) title = aesthetics.title; if (aesthetics && aesthetics.body) body = aesthetics.body; if (aesthetics && aesthetics.continueText) continueText = aesthetics.continueText; if (aesthetics && aesthetics.continueKind) continueKind = aesthetics.continueKind; } } let content; if (this.state.authError) { content = (