bigbuffet-rw/app/soapbox/features/security/index.js

234 lines
7 KiB
JavaScript
Raw Normal View History

2020-06-05 12:25:26 -07:00
import React from 'react';
import { connect } from 'react-redux';
import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
import PropTypes from 'prop-types';
2020-06-05 13:43:03 -07:00
import ImmutablePropTypes from 'react-immutable-proptypes';
2020-06-05 12:25:26 -07:00
import Column from '../ui/components/column';
import {
SimpleForm,
SimpleInput,
FieldsGroup,
TextInput,
} from 'soapbox/features/forms';
2020-06-05 13:43:03 -07:00
import {
changeEmail,
changePassword,
fetchOAuthTokens,
} from 'soapbox/actions/auth';
2020-06-05 12:39:27 -07:00
import { showAlert } from 'soapbox/actions/alerts';
2020-06-05 12:25:26 -07:00
const messages = defineMessages({
heading: { id: 'column.security', defaultMessage: 'Security' },
submit: { id: 'security.submit', defaultMessage: 'Save changes' },
2020-06-05 12:39:27 -07:00
updateEmailSuccess: { id: 'security.update_email.success', defaultMessage: 'Email successfully updated.' },
updateEmailFail: { id: 'security.update_email.fail', defaultMessage: 'Update email failed.' },
2020-06-05 13:14:27 -07:00
updatePasswordSuccess: { id: 'security.update_password.success', defaultMessage: 'Password successfully updated.' },
updatePasswordFail: { id: 'security.update_password.fail', defaultMessage: 'Update password failed.' },
2020-06-05 13:21:29 -07:00
emailFieldLabel: { id: 'security.fields.email.label', defaultMessage: 'Email address' },
passwordFieldLabel: { id: 'security.fields.password.label', defaultMessage: 'Password' },
oldPasswordFieldLabel: { id: 'security.fields.old_password.label', defaultMessage: 'Current password' },
newPasswordFieldLabel: { id: 'security.fields.new_password.label', defaultMessage: 'New password' },
confirmationFieldLabel: { id: 'security.fields.password_confirmation.label', defaultMessage: 'New password (again)' },
2020-06-05 12:25:26 -07:00
});
export default @injectIntl
2020-06-05 13:00:24 -07:00
class SecurityForm extends ImmutablePureComponent {
2020-06-05 12:25:26 -07:00
render() {
const { intl } = this.props;
return (
<Column icon='lock' heading={intl.formatMessage(messages.heading)} backBtnSlim>
<ChangeEmailForm />
2020-06-05 13:14:27 -07:00
<ChangePasswordForm />
2020-06-05 13:43:03 -07:00
<AuthTokenList />
</Column>
);
}
}
@connect()
@injectIntl
class ChangeEmailForm extends ImmutablePureComponent {
2020-06-05 12:25:26 -07:00
static propTypes = {
email: PropTypes.string,
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
};
2020-06-05 12:39:27 -07:00
state = {
email: '',
password: '',
2020-06-05 12:50:24 -07:00
isLoading: false,
2020-06-05 12:39:27 -07:00
}
2020-06-05 12:25:26 -07:00
handleInputChange = e => {
this.setState({ [e.target.name]: e.target.value });
}
handleSubmit = e => {
const { email, password } = this.state;
2020-06-05 12:39:27 -07:00
const { dispatch, intl } = this.props;
2020-06-05 12:50:24 -07:00
this.setState({ isLoading: true });
return dispatch(changeEmail(email, password)).then(() => {
2020-06-05 12:45:00 -07:00
this.setState({ email: '', password: '' }); // TODO: Maybe redirect user
2020-06-05 12:39:27 -07:00
dispatch(showAlert('', intl.formatMessage(messages.updateEmailSuccess)));
}).catch(error => {
2020-06-05 12:45:00 -07:00
this.setState({ password: '' });
2020-06-05 12:39:27 -07:00
dispatch(showAlert('', intl.formatMessage(messages.updateEmailFail)));
2020-06-05 12:50:24 -07:00
}).then(() => {
this.setState({ isLoading: false });
2020-06-05 12:39:27 -07:00
});
2020-06-05 12:25:26 -07:00
}
render() {
const { intl } = this.props;
return (
<SimpleForm onSubmit={this.handleSubmit}>
<fieldset disabled={this.state.isLoading}>
<FieldsGroup>
<TextInput
2020-06-05 13:21:29 -07:00
label={intl.formatMessage(messages.emailFieldLabel)}
placeholder='me@example.com'
name='email'
onChange={this.handleInputChange}
value={this.state.email}
/>
<SimpleInput
type='password'
2020-06-05 13:21:29 -07:00
label={intl.formatMessage(messages.passwordFieldLabel)}
name='password'
onChange={this.handleInputChange}
value={this.state.password}
/>
<div className='actions'>
<button name='button' type='submit' className='btn button button-primary'>
{intl.formatMessage(messages.submit)}
</button>
</div>
</FieldsGroup>
</fieldset>
</SimpleForm>
2020-06-05 12:25:26 -07:00
);
}
}
2020-06-05 13:14:27 -07:00
@connect()
@injectIntl
class ChangePasswordForm extends ImmutablePureComponent {
static propTypes = {
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
};
state = {
oldPassword: '',
newPassword: '',
confirmation: '',
isLoading: false,
}
handleInputChange = e => {
this.setState({ [e.target.name]: e.target.value });
}
clearForm = () => {
this.setState({ oldPassword: '', newPassword: '', confirmation: '' });
}
handleSubmit = e => {
const { oldPassword, newPassword, confirmation } = this.state;
const { dispatch, intl } = this.props;
this.setState({ isLoading: true });
return dispatch(changePassword(oldPassword, newPassword, confirmation)).then(() => {
this.clearForm(); // TODO: Maybe redirect user
dispatch(showAlert('', intl.formatMessage(messages.updatePasswordSuccess)));
}).catch(error => {
this.clearForm();
dispatch(showAlert('', intl.formatMessage(messages.updatePasswordFail)));
}).then(() => {
this.setState({ isLoading: false });
});
}
render() {
const { intl } = this.props;
return (
<SimpleForm onSubmit={this.handleSubmit}>
<fieldset disabled={this.state.isLoading}>
<FieldsGroup>
<SimpleInput
type='password'
2020-06-05 13:21:29 -07:00
label={intl.formatMessage(messages.oldPasswordFieldLabel)}
2020-06-05 13:14:27 -07:00
name='oldPassword'
onChange={this.handleInputChange}
value={this.state.oldPassword}
/>
<SimpleInput
type='password'
2020-06-05 13:21:29 -07:00
label={intl.formatMessage(messages.newPasswordFieldLabel)}
2020-06-05 13:14:27 -07:00
name='newPassword'
onChange={this.handleInputChange}
value={this.state.newPassword}
/>
<SimpleInput
type='password'
2020-06-05 13:21:29 -07:00
label={intl.formatMessage(messages.confirmationFieldLabel)}
2020-06-05 13:14:27 -07:00
name='confirmation'
onChange={this.handleInputChange}
value={this.state.confirmation}
/>
<div className='actions'>
<button name='button' type='submit' className='btn button button-primary'>
{intl.formatMessage(messages.submit)}
</button>
</div>
</FieldsGroup>
</fieldset>
</SimpleForm>
);
}
}
2020-06-05 13:43:03 -07:00
const mapStateToProps = state => ({
tokens: state.getIn(['auth', 'tokens']),
});
@connect(mapStateToProps)
@injectIntl
class AuthTokenList extends ImmutablePureComponent {
static propTypes = {
tokens: ImmutablePropTypes.list,
}
componentDidMount() {
this.props.dispatch(fetchOAuthTokens());
}
render() {
if (this.props.tokens.isEmpty()) return null;
return (
<SimpleForm>
{this.props.tokens.map((token, i) => (
<div key={i} className='authtoken'>
<div>{token.get('app_name')}</div>
<div>{token.get('id')}</div>
<div>{token.get('valid_until')}</div>
<div><button>Revoke</button></div>
</div>
))}
</SimpleForm>
);
}
}