2016-11-03 19:21:38 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { Checkbox } from 'material-ui';
|
2016-11-09 19:04:13 +01:00
|
|
|
import InfoIcon from 'material-ui/svg-icons/action/info-outline';
|
2016-11-09 17:57:30 +01:00
|
|
|
import SuccessIcon from 'material-ui/svg-icons/navigation/check';
|
2016-11-09 18:42:21 +01:00
|
|
|
import ErrorIcon from 'material-ui/svg-icons/navigation/close';
|
2016-11-09 17:57:30 +01:00
|
|
|
|
2016-11-03 19:21:38 +01:00
|
|
|
import phone from 'phoneformat.js';
|
|
|
|
|
2016-11-09 13:23:07 +01:00
|
|
|
import { fromWei } from '../../../api/util/wei';
|
2016-11-03 19:21:38 +01:00
|
|
|
import { Form, Input } from '../../../ui';
|
2016-11-10 13:37:32 +01:00
|
|
|
import checkIfVerified from '../check-if-verified';
|
|
|
|
import checkIfRequested from '../check-if-requested';
|
2016-11-03 19:21:38 +01:00
|
|
|
|
2016-11-14 12:31:26 +01:00
|
|
|
import terms from '../terms-of-service';
|
2016-11-07 10:23:42 +01:00
|
|
|
import styles from './gatherData.css';
|
2016-11-03 19:21:38 +01:00
|
|
|
|
2016-11-07 10:23:42 +01:00
|
|
|
export default class GatherData extends Component {
|
2016-11-09 17:57:30 +01:00
|
|
|
static contextTypes = {
|
|
|
|
api: PropTypes.object.isRequired
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:21:38 +01:00
|
|
|
static propTypes = {
|
2016-11-09 17:57:30 +01:00
|
|
|
account: PropTypes.string.isRequired,
|
2016-11-09 13:23:07 +01:00
|
|
|
contract: PropTypes.object.isRequired,
|
|
|
|
data: PropTypes.object.isRequired,
|
|
|
|
onData: PropTypes.func.isRequired,
|
2016-11-03 19:21:38 +01:00
|
|
|
onDataIsValid: PropTypes.func.isRequired,
|
2016-11-09 13:23:07 +01:00
|
|
|
onDataIsInvalid: PropTypes.func.isRequired
|
2016-11-03 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
state = {
|
2016-11-09 13:23:07 +01:00
|
|
|
init: true,
|
2016-11-03 19:21:38 +01:00
|
|
|
numberIsValid: null,
|
|
|
|
consentGiven: false
|
|
|
|
};
|
|
|
|
|
2016-11-09 13:23:07 +01:00
|
|
|
componentWillMount () {
|
|
|
|
const { init } = this.state;
|
|
|
|
if (init) {
|
|
|
|
this.setState({ init: false });
|
2016-11-09 17:57:30 +01:00
|
|
|
this.queryFee();
|
|
|
|
this.checkIfCertified();
|
2016-11-09 18:42:21 +01:00
|
|
|
this.checkIfRequested();
|
2016-11-09 13:23:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:21:38 +01:00
|
|
|
render () {
|
|
|
|
const { numberIsValid } = this.state;
|
2016-11-10 16:23:09 +01:00
|
|
|
const { isVerified } = this.props.data;
|
2016-11-03 19:21:38 +01:00
|
|
|
|
2016-11-09 19:04:13 +01:00
|
|
|
// TODO: proper legal text
|
2016-11-03 19:21:38 +01:00
|
|
|
return (
|
|
|
|
<Form>
|
2016-11-10 14:31:30 +01:00
|
|
|
<p>The following steps will let you prove that you control both an account and a phone number.</p>
|
|
|
|
<ol className={ styles.list }>
|
|
|
|
<li>You send a verification request to a specific contract.</li>
|
|
|
|
<li>Our server puts a puzzle into this contract.</li>
|
|
|
|
<li>The code you receive via SMS is the solution to this puzzle.</li>
|
|
|
|
</ol>
|
2016-11-09 19:04:13 +01:00
|
|
|
{ this.renderFee() }
|
2016-11-09 17:57:30 +01:00
|
|
|
{ this.renderCertified() }
|
2016-11-09 18:42:21 +01:00
|
|
|
{ this.renderRequested() }
|
2016-11-03 19:21:38 +01:00
|
|
|
<Input
|
|
|
|
label={ 'phone number' }
|
2016-11-10 14:31:30 +01:00
|
|
|
hint={ 'the SMS will be sent to this number' }
|
2016-11-03 19:21:38 +01:00
|
|
|
error={ numberIsValid ? null : 'invalid number' }
|
2016-11-10 16:23:09 +01:00
|
|
|
disabled={ isVerified }
|
2016-11-03 19:21:38 +01:00
|
|
|
onChange={ this.numberOnChange }
|
|
|
|
onSubmit={ this.numberOnSubmit }
|
|
|
|
/>
|
|
|
|
<Checkbox
|
|
|
|
className={ styles.spacing }
|
2016-11-14 12:31:26 +01:00
|
|
|
label={ 'I agree to the terms and conditions below.' }
|
2016-11-10 16:23:09 +01:00
|
|
|
disabled={ isVerified }
|
2016-11-03 19:21:38 +01:00
|
|
|
onCheck={ this.consentOnChange }
|
|
|
|
/>
|
2016-11-14 12:31:26 +01:00
|
|
|
<div className={ styles.terms }>{ terms }</div>
|
2016-11-03 19:21:38 +01:00
|
|
|
</Form>
|
|
|
|
);
|
|
|
|
}
|
2016-11-09 19:04:13 +01:00
|
|
|
|
|
|
|
renderFee () {
|
|
|
|
const { fee } = this.props.data;
|
|
|
|
|
|
|
|
if (!fee) {
|
|
|
|
return (<p>Fetching the fee…</p>);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<InfoIcon />
|
|
|
|
<p className={ styles.message }>The fee is { fromWei(fee).toFixed(3) } ETH.</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-11-03 19:21:38 +01:00
|
|
|
|
2016-11-09 17:57:30 +01:00
|
|
|
renderCertified () {
|
2016-11-10 13:37:32 +01:00
|
|
|
const { isVerified } = this.props.data;
|
2016-11-09 17:57:30 +01:00
|
|
|
|
2016-11-10 13:37:32 +01:00
|
|
|
if (isVerified) {
|
2016-11-09 17:57:30 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<ErrorIcon />
|
|
|
|
<p className={ styles.message }>Your account is already verified.</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-11-10 13:37:32 +01:00
|
|
|
if (isVerified === false) {
|
2016-11-09 17:57:30 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<SuccessIcon />
|
|
|
|
<p className={ styles.message }>Your account is not verified yet.</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (<p className={ styles.message }>Checking if your account is verified…</p>);
|
|
|
|
}
|
|
|
|
|
2016-11-09 18:42:21 +01:00
|
|
|
renderRequested () {
|
2016-11-10 13:54:09 +01:00
|
|
|
const { isVerified, hasRequested } = this.props.data;
|
|
|
|
|
|
|
|
// If the account is verified, don't show that it has requested verification.
|
|
|
|
if (isVerified) {
|
|
|
|
return null;
|
|
|
|
}
|
2016-11-09 18:42:21 +01:00
|
|
|
|
|
|
|
if (hasRequested) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
2016-11-10 16:23:09 +01:00
|
|
|
<InfoIcon />
|
2016-11-09 18:42:21 +01:00
|
|
|
<p className={ styles.message }>You already requested verification.</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (hasRequested === false) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<SuccessIcon />
|
|
|
|
<p className={ styles.message }>You did not request verification yet.</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (<p className={ styles.message }>Checking if you requested verification…</p>);
|
|
|
|
}
|
|
|
|
|
2016-11-09 13:23:07 +01:00
|
|
|
queryFee = () => {
|
|
|
|
const { contract, onData } = this.props;
|
|
|
|
|
|
|
|
contract.instance.fee.call()
|
|
|
|
.then((fee) => {
|
|
|
|
onData({ fee });
|
|
|
|
this.onChange();
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error('error fetching fee', err);
|
|
|
|
this.onChange();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-09 17:57:30 +01:00
|
|
|
checkIfCertified = () => {
|
|
|
|
const { account, contract, onData } = this.props;
|
|
|
|
|
2016-11-10 13:37:32 +01:00
|
|
|
checkIfVerified(contract, account)
|
|
|
|
.then((isVerified) => {
|
|
|
|
onData({ isVerified });
|
2016-11-09 17:57:30 +01:00
|
|
|
this.onChange();
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error('error checking if certified', err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-09 18:42:21 +01:00
|
|
|
checkIfRequested = () => {
|
|
|
|
const { account, contract, onData } = this.props;
|
|
|
|
|
2016-11-10 13:37:32 +01:00
|
|
|
checkIfRequested(contract, account)
|
|
|
|
.then((hasRequested) => {
|
2016-11-09 18:42:21 +01:00
|
|
|
onData({ hasRequested });
|
|
|
|
this.onChange();
|
2016-11-10 13:37:32 +01:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error('error checking if requested', err);
|
2016-11-09 18:42:21 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:21:38 +01:00
|
|
|
numberOnSubmit = (value) => {
|
|
|
|
this.numberOnChange(null, value);
|
2016-11-07 13:34:53 +01:00
|
|
|
this.props.onData({ number: value });
|
2016-11-03 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
numberOnChange = (_, value) => {
|
|
|
|
this.setState({
|
|
|
|
numberIsValid: phone.isValidNumber(value)
|
|
|
|
}, this.onChange);
|
|
|
|
}
|
|
|
|
|
|
|
|
consentOnChange = (_, consentGiven) => {
|
|
|
|
this.setState({
|
|
|
|
consentGiven: !!consentGiven
|
|
|
|
}, this.onChange);
|
2016-11-07 13:34:53 +01:00
|
|
|
this.props.onData({ consent: consentGiven });
|
2016-11-03 19:21:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
onChange = () => {
|
2016-11-10 13:54:09 +01:00
|
|
|
const { fee, isVerified } = this.props.data;
|
2016-11-03 19:21:38 +01:00
|
|
|
const { numberIsValid, consentGiven } = this.state;
|
|
|
|
|
2016-11-10 13:37:32 +01:00
|
|
|
if (fee && numberIsValid && consentGiven && isVerified === false) {
|
2016-11-03 19:21:38 +01:00
|
|
|
this.props.onDataIsValid();
|
|
|
|
} else {
|
|
|
|
this.props.onDataIsInvalid();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|