/* Copyright 2015, 2016 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('../../../index'); var dis = require('../../../dispatcher'); var Signup = require("../../../Signup"); var ServerConfig = require("../../views/login/ServerConfig"); var MatrixClientPeg = require("../../../MatrixClientPeg"); var RegistrationForm = require("../../views/login/RegistrationForm"); var CaptchaForm = require("../../views/login/CaptchaForm"); var MIN_PASSWORD_LENGTH = 6; /** * TODO: It would be nice to make use of the InteractiveAuthEntryComponents * here, rather than inventing our own. */ 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, customHsUrl: React.PropTypes.string, customIsUrl: React.PropTypes.string, defaultHsUrl: React.PropTypes.string, defaultIsUrl: React.PropTypes.string, brand: React.PropTypes.string, email: React.PropTypes.string, username: React.PropTypes.string, guestAccessToken: React.PropTypes.string, teamsConfig: React.PropTypes.shape({ // Email address to request new teams supportEmail: React.PropTypes.string, teams: React.PropTypes.arrayOf(React.PropTypes.shape({ // The displayed name of the team "name": React.PropTypes.string, // The suffix with which every team email address ends "emailSuffix": React.PropTypes.string, // The rooms to use during auto-join "rooms": React.PropTypes.arrayOf(React.PropTypes.shape({ "id": React.PropTypes.string, "autoJoin": React.PropTypes.bool, })), })).required, }), defaultDeviceDisplayName: React.PropTypes.string, // registration shouldn't know or care how login is done. onLoginClick: React.PropTypes.func.isRequired, onCancelClick: React.PropTypes.func }, getInitialState: function() { 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, }, }; }, 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.customHsUrl, this.props.customIsUrl, { defaultDeviceDisplayName: this.props.defaultDeviceDisplayName, } ); 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.setGuestAccessToken(this.props.guestAccessToken); 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; } // If the registration state has changed, this means the // user now needs to do something. It would be better // to expose the explicitly in the register logic. this.setState({ busy: false }); }, onFormSubmit: function(formVals) { var self = this; this.setState({ errorText: "", busy: true, formVals: formVals, }); if (formVals.username !== this.props.username) { // don't try to upgrade if we changed our username this.registerLogic.setGuestAccessToken(null); } 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) { self.setState({ busy: false }); 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: "Registration failed on server" }); return; } self.props.onLoggedIn({ userId: response.user_id, deviceId: response.device_id, homeserverUrl: self.registerLogic.getHomeserverUrl(), identityServerUrl: self.registerLogic.getIdentityServerUrl(), accessToken: response.access_token }); // Auto-join rooms if (self.props.teamsConfig && self.props.teamsConfig.teams) { for (let i = 0; i < self.props.teamsConfig.teams.length; i++) { let team = self.props.teamsConfig.teams[i]; if (self.state.formVals.email.endsWith(team.emailSuffix)) { console.log("User successfully registered with team " + team.name); if (!team.rooms) { break; } team.rooms.forEach((room) => { if (room.autoJoin) { console.log("Auto-joining " + room.id); MatrixClientPeg.get().joinRoom(room.id); } }); break; } } } if (self.props.brand) { MatrixClientPeg.get().getPushers().done((resp)=>{ var pushers = resp.pushers; for (var i = 0; i < pushers.length; ++i) { if (pushers[i].kind == 'email') { var emailPusher = pushers[i]; emailPusher.data = { brand: self.props.brand }; MatrixClientPeg.get().setPusher(emailPusher).done(() => { console.log("Set email branding to " + self.props.brand); }, (error) => { console.error("Couldn't set email branding: " + error); }); } } }, (error) => { console.error("Couldn't get pushers: " + error); }); } }, function(err) { if (err.message) { self.setState({ errorText: err.message }); } self.setState({ busy: false }); 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; case "RegistrationForm.ERR_EMAIL_INVALID": errMsg = "This doesn't look like a valid email address"; break; case "RegistrationForm.ERR_USERNAME_INVALID": errMsg = "User names may only contain letters, numbers, dots, hyphens and underscores."; break; case "RegistrationForm.ERR_USERNAME_BLANK": errMsg = "You need to enter a user name"; break; default: console.error("Unknown error code: %s", errCode); errMsg = "An unknown error occurred."; break; } this.setState({ errorText: errMsg }); }, onCaptchaResponse: function(response) { this.registerLogic.tellStage("m.login.recaptcha", { response: response }); }, _getRegisterContentJsx: function() { var currStep = this.registerLogic.getStep(); var registerStep; switch (currStep) { case "Register.COMPLETE": break; // NOP case "Register.START": case "Register.STEP_m.login.dummy": // NB. Our 'username' prop is specifically for upgrading // a guest account registerStep = ( ); break; case "Register.STEP_m.login.email.identity": registerStep = (
Please check your email to continue registration.
); break; case "Register.STEP_m.login.recaptcha": var publicKey; var serverParams = this.registerLogic.getServerData().params; if (serverParams && serverParams["m.login.recaptcha"]) { publicKey = serverParams["m.login.recaptcha"].public_key; } registerStep = ( ); break; default: console.error("Unknown register state: %s", currStep); break; } var busySpinner; if (this.state.busy) { var Spinner = sdk.getComponent("elements.Spinner"); busySpinner = ( ); } var returnToAppJsx; if (this.props.onCancelClick) { returnToAppJsx = Return to app ; } return (

Create an account

{registerStep}
{this.state.errorText}
{busySpinner}
I already have an account { returnToAppJsx }
); }, render: function() { var LoginHeader = sdk.getComponent('login.LoginHeader'); var LoginFooter = sdk.getComponent('login.LoginFooter'); return (
{this._getRegisterContentJsx()}
); } });