/* 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'; import React from 'react'; import ReactDOM from 'react-dom'; import { _t, _tJsx } from '../../../languageHandler'; const DIV_ID = 'mx_recaptcha'; /** * A pure UI component which displays a captcha form. */ module.exports = React.createClass({ displayName: 'CaptchaForm', propTypes: { sitePublicKey: React.PropTypes.string, // called with the captcha response onCaptchaResponse: React.PropTypes.func, }, getDefaultProps: function() { return { onCaptchaResponse: () => {}, }; }, getInitialState: function() { return { errorText: null, }; }, componentWillMount: function() { this._captchaWidgetId = null; }, componentDidMount: function() { // Just putting a script tag into the returned jsx doesn't work, annoyingly, // so we do this instead. if (global.grecaptcha) { // already loaded this._onCaptchaLoaded(); } else { console.log("Loading recaptcha script..."); window.mx_on_recaptcha_loaded = () => {this._onCaptchaLoaded();}; const protocol = global.location.protocol; if (protocol === "file:") { const warning = document.createElement('div'); // XXX: fix hardcoded app URL. Better solutions include: // * jumping straight to a hosted captcha page (but we don't support that yet) // * embedding the captcha in an iframe (if that works) // * using a better captcha lib ReactDOM.render(_tJsx( "Robot check is currently unavailable on desktop - please use a web browser", /(.*?)<\/a>/, (sub) => { return { sub }; }), warning); this.refs.recaptchaContainer.appendChild(warning); } else { const scriptTag = document.createElement('script'); scriptTag.setAttribute( 'src', protocol+"//www.google.com/recaptcha/api.js?onload=mx_on_recaptcha_loaded&render=explicit", ); this.refs.recaptchaContainer.appendChild(scriptTag); } } }, componentWillUnmount: function() { this._resetRecaptcha(); }, _renderRecaptcha: function(divId) { if (!global.grecaptcha) { console.error("grecaptcha not loaded!"); throw new Error("Recaptcha did not load successfully"); } const publicKey = this.props.sitePublicKey; if (!publicKey) { console.error("No public key for recaptcha!"); throw new Error( "This server has not supplied enough information for Recaptcha " + "authentication"); } console.log("Rendering to %s", divId); this._captchaWidgetId = global.grecaptcha.render(divId, { sitekey: publicKey, callback: this.props.onCaptchaResponse, }); }, _resetRecaptcha: function() { if (this._captchaWidgetId !== null) { global.grecaptcha.reset(this._captchaWidgetId); } }, _onCaptchaLoaded: function() { console.log("Loaded recaptcha script."); try { this._renderRecaptcha(DIV_ID); } catch (e) { this.setState({ errorText: e.toString(), }); } }, render: function() { let error = null; if (this.state.errorText) { error = (