/* Copyright 2015 OpenMarket Ltd 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. */ 'use strict'; var React = require('react'); var sdk = require('matrix-react-sdk'); var MatrixClientPeg = require('matrix-react-sdk/lib/MatrixClientPeg'); var dis = require('matrix-react-sdk/lib/dispatcher'); var ServerConfig = require("./ServerConfig"); var RegistrationForm = require("./RegistrationForm"); var CaptchaForm = require("./CaptchaForm"); var Signup = require("matrix-react-sdk/lib/Signup"); var MIN_PASSWORD_LENGTH = 6; module.exports = React.createClass({ displayName: 'Registration', propTypes: { onLoggedIn: React.PropTypes.func.isRequired, clientSecret: React.PropTypes.string, sessionId: React.PropTypes.string, registrationUrl: React.PropTypes.string, idSid: React.PropTypes.string, hsUrl: React.PropTypes.string, isUrl: React.PropTypes.string, // registration shouldn't know or care how login is done. onLoginClick: React.PropTypes.func.isRequired }, getInitialState: function() { return { busy: false, errorText: null, enteredHomeserverUrl: this.props.hsUrl, enteredIdentityServerUrl: this.props.isUrl }; }, componentWillMount: function() { this.dispatcherRef = dis.register(this.onAction); // attach this to the instance rather than this.state since it isn't UI this.registerLogic = new Signup.Register( this.props.hsUrl, this.props.isUrl ); this.registerLogic.setClientSecret(this.props.clientSecret); this.registerLogic.setSessionId(this.props.sessionId); this.registerLogic.setRegistrationUrl(this.props.registrationUrl); this.registerLogic.setIdSid(this.props.idSid); this.registerLogic.recheckState(); }, componentWillUnmount: function() { dis.unregister(this.dispatcherRef); }, componentDidMount: function() { // may have already done an HTTP hit (e.g. redirect from an email) so // check for any pending response var promise = this.registerLogic.getPromise(); if (promise) { this.onProcessingRegistration(promise); } }, onHsUrlChanged: function(newHsUrl) { this.registerLogic.setHomeserverUrl(newHsUrl); }, onIsUrlChanged: function(newIsUrl) { this.registerLogic.setIdentityServerUrl(newIsUrl); }, onAction: function(payload) { if (payload.action !== "registration_step_update") { return; } this.forceUpdate(); // registration state has changed. }, onFormSubmit: function(formVals) { var self = this; this.onProcessingRegistration(this.registerLogic.register(formVals)); }, // Promise is resolved when the registration process is FULLY COMPLETE onProcessingRegistration: function(promise) { var self = this; promise.done(function(response) { if (!response || !response.access_token) { console.warn( "FIXME: Register fulfilled without a final response, " + "did you break the promise chain?" ); // no matter, we'll grab it direct response = self.registerLogic.getCredentials(); } if (!response || !response.user_id || !response.access_token) { console.error("Final response is missing keys."); self.setState({ errorText: "There was a problem processing the response." }); return; } self.props.onLoggedIn({ userId: response.user_id, homeserverUrl: self.registerLogic.getHomeserverUrl(), identityServerUrl: self.registerLogic.getIdentityServerUrl(), accessToken: response.access_token }); }, function(err) { if (err.message) { self.setState({ errorText: err.message }); } console.log(err); }); }, onFormValidationFailed: function(errCode) { var errMsg; switch (errCode) { case "RegistrationForm.ERR_PASSWORD_MISSING": errMsg = "Missing password."; break; case "RegistrationForm.ERR_PASSWORD_MISMATCH": errMsg = "Passwords don't match."; break; case "RegistrationForm.ERR_PASSWORD_LENGTH": errMsg = `Password too short (min ${MIN_PASSWORD_LENGTH}).`; break; default: console.error("Unknown error code: %s", errCode); errMsg = "An unknown error occurred."; break; } this.setState({ errorText: errMsg }); }, onCaptchaLoaded: function() { this.registerLogic.tellStage("m.login.recaptcha", "loaded"); }, // TODO: // This should really be a different component which MatrixChat then // instantiates rather than having it pollute registration logic. There is // no reason to wedge them together here. This function is currently NOT CALLED. _getPostRegisterJsx: function() { var ChangeDisplayName = sdk.getComponent('molecules.ChangeDisplayName'); var ChangeAvatar = sdk.getComponent('molecules.ChangeAvatar'); return (
Set a display name: Upload an avatar:
); }, _getRegisterContentJsx: function() { var currStep = this.registerLogic.getStep(); var registerStep; switch (currStep) { case "Register.COMPLETE": return this._getPostRegisterJsx(); case "Register.START": case "Register.STEP_m.login.dummy": registerStep = ( ); break; case "Register.STEP_m.login.email.identity": registerStep = (
Please check your email to continue registration.
); break; case "Register.STEP_m.login.recaptcha": registerStep = ( ); break; default: console.error("Unknown register state: %s", currStep); break; } return (

Create an account

{registerStep}
{this.state.errorText}
I already have an account
); }, render: function() { return (
vector
{this._getRegisterContentJsx()}
); } });