2015-06-25 14:39:39 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import Router from 'react-router';
|
|
|
|
|
|
|
|
import GlobalNotificationModel from '../models/global_notification_model';
|
|
|
|
import GlobalNotificationActions from '../actions/global_notification_actions';
|
|
|
|
|
|
|
|
import Form from './ascribe_forms/form';
|
|
|
|
import Property from './ascribe_forms/property';
|
|
|
|
import InputTextAreaToggable from './ascribe_forms/input_textarea_toggable';
|
|
|
|
|
2015-08-07 15:08:02 +02:00
|
|
|
import ApiUrls from '../constants/api_urls';
|
2015-07-01 18:58:13 +02:00
|
|
|
import { getLangText } from '../utils/lang_utils';
|
2015-06-25 14:39:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
let CoaVerifyContainer = React.createClass({
|
|
|
|
mixins: [Router.Navigation],
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="ascribe-login-wrapper">
|
|
|
|
<br/>
|
|
|
|
<div className="ascribe-login-text ascribe-login-header">
|
2015-07-03 19:08:56 +02:00
|
|
|
{getLangText('Verify your Certificate of Authenticity')}
|
2015-06-25 14:39:39 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<CoaVerifyForm />
|
|
|
|
<br />
|
|
|
|
<br />
|
2015-07-03 19:08:56 +02:00
|
|
|
{getLangText('ascribe is using the following public key for verification')}:
|
2015-06-25 14:39:39 +02:00
|
|
|
<br />
|
|
|
|
<pre>
|
|
|
|
-----BEGIN PUBLIC KEY-----
|
|
|
|
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDddadqY31kKPFYk8PQA8BWSTbm
|
|
|
|
gaGf9KEYBALp2nWAJcwq80qBzGF+gfi0Z+yb4ooeKHl27GnuxZYValE1Z5ZujfeJ
|
|
|
|
TgO4li59ZMYiah8oXZp/OysrBwCvWw0PtWd8/D9Nc4PqyOz5gzEh6kFah5VsuAke
|
|
|
|
Znu2w7KmeLZ85SmwEQIDAQAB
|
|
|
|
-----END PUBLIC KEY-----
|
|
|
|
</pre>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
let CoaVerifyForm = React.createClass({
|
|
|
|
mixins: [Router.Navigation],
|
|
|
|
|
|
|
|
handleSuccess(response){
|
|
|
|
let notification = null;
|
2015-07-08 10:15:58 +02:00
|
|
|
if (response.verdict) {
|
|
|
|
notification = new GlobalNotificationModel(getLangText('Certificate of Authenticity successfully verified'), 'success');
|
2015-06-25 14:39:39 +02:00
|
|
|
GlobalNotificationActions.appendGlobalNotification(notification);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Form
|
2015-08-07 15:08:02 +02:00
|
|
|
url={ApiUrls.coa_verify}
|
2015-06-25 14:39:39 +02:00
|
|
|
handleSuccess={this.handleSuccess}
|
|
|
|
buttons={
|
|
|
|
<button
|
|
|
|
type="submit"
|
|
|
|
className="btn ascribe-btn ascribe-btn-login">
|
2015-07-03 19:08:56 +02:00
|
|
|
{getLangText('Verify your Certificate of Authenticity')}
|
2015-06-25 14:39:39 +02:00
|
|
|
</button>}
|
|
|
|
spinner={
|
2015-07-13 18:13:47 +02:00
|
|
|
<span className="btn ascribe-btn ascribe-btn-login ascribe-btn-login-spinner">
|
2015-06-25 14:39:39 +02:00
|
|
|
<img src="https://s3-us-west-2.amazonaws.com/ascribe0/media/thumbnails/ascribe_animated_medium.gif" />
|
2015-07-13 18:13:47 +02:00
|
|
|
</span>
|
2015-06-25 14:39:39 +02:00
|
|
|
}>
|
|
|
|
<Property
|
|
|
|
name='message'
|
2015-07-03 19:08:56 +02:00
|
|
|
label={getLangText('Message')}>
|
2015-06-25 14:39:39 +02:00
|
|
|
<input
|
|
|
|
type="text"
|
2015-07-03 19:08:56 +02:00
|
|
|
placeholder={getLangText('Copy paste the message on the bottom of your Certificate of Authenticity')}
|
2015-06-25 14:39:39 +02:00
|
|
|
autoComplete="on"
|
|
|
|
name="username"
|
|
|
|
required/>
|
|
|
|
</Property>
|
|
|
|
<Property
|
|
|
|
name='signature'
|
|
|
|
label="Signature">
|
|
|
|
<InputTextAreaToggable
|
|
|
|
rows={3}
|
|
|
|
editable={true}
|
2015-07-03 19:08:56 +02:00
|
|
|
placeholder={getLangText('Copy paste the signature on the bottom of your Certificate of Authenticity')}
|
2015-06-25 14:39:39 +02:00
|
|
|
required/>
|
|
|
|
</Property>
|
|
|
|
<hr />
|
|
|
|
</Form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-07-03 19:08:56 +02:00
|
|
|
export default CoaVerifyContainer;
|