/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2017 Vector Creations Ltd Copyright 2018, 2019 New Vector Ltd Copyright 2019 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 Matrix from 'matrix-js-sdk'; import Promise from 'bluebird'; import React from 'react'; import PropTypes from 'prop-types'; import sdk from '../../../index'; import { _t, _td } from '../../../languageHandler'; import SdkConfig from '../../../SdkConfig'; import { messageForResourceLimitError } from '../../../utils/ErrorUtils'; import * as ServerType from '../../views/auth/ServerTypeSelector'; import AutoDiscoveryUtils, {ValidatedServerConfig} from "../../../utils/AutoDiscoveryUtils"; import classNames from "classnames"; import * as Lifecycle from '../../../Lifecycle'; import MatrixClientPeg from "../../../MatrixClientPeg"; // Phases // Show controls to configure server details const PHASE_SERVER_DETAILS = 0; // Show the appropriate registration flow(s) for the server const PHASE_REGISTRATION = 1; // Enable phases for registration const PHASES_ENABLED = true; module.exports = React.createClass({ displayName: 'Registration', propTypes: { onLoggedIn: PropTypes.func.isRequired, clientSecret: PropTypes.string, sessionId: PropTypes.string, makeRegistrationUrl: PropTypes.func.isRequired, idSid: PropTypes.string, serverConfig: PropTypes.instanceOf(ValidatedServerConfig).isRequired, brand: PropTypes.string, email: PropTypes.string, // registration shouldn't know or care how login is done. onLoginClick: PropTypes.func.isRequired, onServerConfigChange: PropTypes.func.isRequired, }, getInitialState: function() { const serverType = ServerType.getTypeFromServerConfig(this.props.serverConfig); return { busy: false, errorText: null, // We remember the values entered by the user because // the registration form will be unmounted during the // course of registration, but if there's an error we // want to bring back the registration form with the // values the user entered still in it. We can keep // them in this component's state since this component // persist for the duration of the registration process. formVals: { email: this.props.email, }, // true if we're waiting for the user to complete // user-interactive auth // If we've been given a session ID, we're resuming // straight back into UI auth doingUIAuth: Boolean(this.props.sessionId), serverType, // Phase of the overall registration dialog. phase: PHASE_REGISTRATION, flows: null, // If set, we've registered but are not going to log // the user in to their new account automatically. completedNoSignin: false, // We perform liveliness checks later, but for now suppress the errors. // We also track the server dead errors independently of the regular errors so // that we can render it differently, and override any other error the user may // be seeing. serverIsAlive: true, serverErrorIsFatal: false, serverDeadError: "", // Our matrix client - part of state because we can't render the UI auth // component without it. matrixClient: null, }; }, componentWillMount: function() { this._unmounted = false; this._replaceClient(); }, componentWillReceiveProps(newProps) { if (newProps.serverConfig.hsUrl === this.props.serverConfig.hsUrl && newProps.serverConfig.isUrl === this.props.serverConfig.isUrl) return; this._replaceClient(newProps.serverConfig); // Handle cases where the user enters "https://matrix.org" for their server // from the advanced option - we should default to FREE at that point. const serverType = ServerType.getTypeFromServerConfig(newProps.serverConfig); if (serverType !== this.state.serverType) { // Reset the phase to default phase for the server type. this.setState({ serverType, phase: this.getDefaultPhaseForServerType(serverType), }); } }, getDefaultPhaseForServerType(type) { switch (type) { case ServerType.FREE: { // Move directly to the registration phase since the server // details are fixed. return PHASE_REGISTRATION; } case ServerType.PREMIUM: case ServerType.ADVANCED: return PHASE_SERVER_DETAILS; } }, onServerTypeChange(type) { this.setState({ serverType: type, }); // When changing server types, set the HS / IS URLs to reasonable defaults for the // the new type. switch (type) { case ServerType.FREE: { const { serverConfig } = ServerType.TYPES.FREE; this.props.onServerConfigChange(serverConfig); break; } case ServerType.PREMIUM: // We can accept whatever server config was the default here as this essentially // acts as a slightly different "custom server"/ADVANCED option. break; case ServerType.ADVANCED: // Use the default config from the config this.props.onServerConfigChange(SdkConfig.get()["validated_server_config"]); break; } // Reset the phase to default phase for the server type. this.setState({ phase: this.getDefaultPhaseForServerType(type), }); }, _replaceClient: async function(serverConfig) { this.setState({ errorText: null, serverDeadError: null, serverErrorIsFatal: false, // busy while we do liveness check (we need to avoid trying to render // the UI auth component while we don't have a matrix client) busy: true, }); if (!serverConfig) serverConfig = this.props.serverConfig; // Do a liveliness check on the URLs try { await AutoDiscoveryUtils.validateServerConfigWithStaticUrls( serverConfig.hsUrl, serverConfig.isUrl, ); this.setState({ serverIsAlive: true, serverErrorIsFatal: false, }); } catch (e) { this.setState({ busy: false, ...AutoDiscoveryUtils.authComponentStateForError(e, "register"), }); if (this.state.serverErrorIsFatal) { return; // Server is dead - do not continue. } } const {hsUrl, isUrl} = serverConfig; this.setState({ matrixClient: Matrix.createClient({ baseUrl: hsUrl, idBaseUrl: isUrl, }), }); this.setState({busy: false}); try { await this._makeRegisterRequest({}); // This should never succeed since we specified an empty // auth object. console.log("Expecting 401 from register request but got success!"); } catch (e) { if (e.httpStatus === 401) { this.setState({ flows: e.data.flows, }); } else if (e.httpStatus === 403 && e.errcode === "M_UNKNOWN") { this.setState({ errorText: _t("Registration has been disabled on this homeserver."), }); } else { console.log("Unable to query for supported registration methods.", e); this.setState({ errorText: _t("Unable to query for supported registration methods."), }); } } }, onFormSubmit: function(formVals) { this.setState({ errorText: "", busy: true, formVals: formVals, doingUIAuth: true, }); }, _requestEmailToken: function(emailAddress, clientSecret, sendAttempt, sessionId) { return this.state.matrixClient.requestRegisterEmailToken( emailAddress, clientSecret, sendAttempt, this.props.makeRegistrationUrl({ client_secret: clientSecret, hs_url: this.state.matrixClient.getHomeserverUrl(), is_url: this.state.matrixClient.getIdentityServerUrl(), session_id: sessionId, }), ); }, _onUIAuthFinished: async function(success, response, extra) { if (!success) { let msg = response.message || response.toString(); // can we give a better error message? if (response.errcode === 'M_RESOURCE_LIMIT_EXCEEDED') { const errorTop = messageForResourceLimitError( response.data.limit_type, response.data.admin_contact, { 'monthly_active_user': _td( "This homeserver has hit its Monthly Active User limit.", ), '': _td( "This homeserver has exceeded one of its resource limits.", ), }); const errorDetail = messageForResourceLimitError( response.data.limit_type, response.data.admin_contact, { '': _td( "Please contact your service administrator to continue using this service.", ), }); msg =
{errorTop}
{errorDetail}