|
|
@@ -1,213 +1,31 @@
|
|
|
/* eslint-disable react/no-danger */
|
|
|
-import React from 'react';
|
|
|
+import React, { Suspense } from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
|
-import { withTranslation } from 'react-i18next';
|
|
|
|
|
|
import { withUnstatedContainers } from '../../UnstatedUtils';
|
|
|
-import { toastSuccess, toastError } from '../../../util/apiNotification';
|
|
|
+import { toastError } from '../../../util/apiNotification';
|
|
|
|
|
|
import AppContainer from '../../../services/AppContainer';
|
|
|
import AdminGeneralSecurityContainer from '../../../services/AdminGeneralSecurityContainer';
|
|
|
import AdminGoogleSecurityContainer from '../../../services/AdminGoogleSecurityContainer';
|
|
|
-
|
|
|
-class GoogleSecurityManagement extends React.Component {
|
|
|
-
|
|
|
- constructor(props) {
|
|
|
- super(props);
|
|
|
-
|
|
|
- this.state = {
|
|
|
- isRetrieving: true,
|
|
|
- };
|
|
|
-
|
|
|
- this.onClickSubmit = this.onClickSubmit.bind(this);
|
|
|
- }
|
|
|
-
|
|
|
- async componentDidMount() {
|
|
|
- const { adminGoogleSecurityContainer } = this.props;
|
|
|
-
|
|
|
- try {
|
|
|
- await adminGoogleSecurityContainer.retrieveSecurityData();
|
|
|
- }
|
|
|
- catch (err) {
|
|
|
- toastError(err);
|
|
|
- }
|
|
|
- this.setState({ isRetrieving: false });
|
|
|
- }
|
|
|
-
|
|
|
- async onClickSubmit() {
|
|
|
- const { t, adminGoogleSecurityContainer, adminGeneralSecurityContainer } = this.props;
|
|
|
-
|
|
|
- try {
|
|
|
- await adminGoogleSecurityContainer.updateGoogleSetting();
|
|
|
- await adminGeneralSecurityContainer.retrieveSetupStratedies();
|
|
|
- toastSuccess(t('security_setting.OAuth.Google.updated_google'));
|
|
|
- }
|
|
|
- catch (err) {
|
|
|
- toastError(err);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- render() {
|
|
|
- const { t, adminGeneralSecurityContainer, adminGoogleSecurityContainer } = this.props;
|
|
|
- const { isGoogleEnabled } = adminGeneralSecurityContainer.state;
|
|
|
-
|
|
|
- if (this.state.isRetrieving) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- return (
|
|
|
-
|
|
|
- <React.Fragment>
|
|
|
-
|
|
|
- <h2 className="alert-anchor border-bottom">
|
|
|
- {t('security_setting.OAuth.Google.name')}
|
|
|
- </h2>
|
|
|
-
|
|
|
- {this.state.retrieveError != null && (
|
|
|
- <div className="alert alert-danger">
|
|
|
- <p>{t('Error occurred')} : {this.state.err}</p>
|
|
|
- </div>
|
|
|
- )}
|
|
|
-
|
|
|
- <div className="form-group row">
|
|
|
- <div className="col-6 offset-3">
|
|
|
- <div className="custom-control custom-switch custom-checkbox-success">
|
|
|
- <input
|
|
|
- id="isGoogleEnabled"
|
|
|
- className="custom-control-input"
|
|
|
- type="checkbox"
|
|
|
- checked={adminGeneralSecurityContainer.state.isGoogleEnabled || false}
|
|
|
- onChange={() => { adminGeneralSecurityContainer.switchIsGoogleOAuthEnabled() }}
|
|
|
- />
|
|
|
- <label className="custom-control-label" htmlFor="isGoogleEnabled">
|
|
|
- {t('security_setting.OAuth.Google.enable_google')}
|
|
|
- </label>
|
|
|
- </div>
|
|
|
- {(!adminGeneralSecurityContainer.state.setupStrategies.includes('google') && isGoogleEnabled)
|
|
|
- && <div className="badge badge-warning">{t('security_setting.setup_is_not_yet_complete')}</div>}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div className="row mb-5">
|
|
|
- <label className="col-12 col-md-3 text-left text-md-right py-2">{t('security_setting.callback_URL')}</label>
|
|
|
- <div className="col-12 col-md-6">
|
|
|
- <input
|
|
|
- className="form-control"
|
|
|
- type="text"
|
|
|
- value={adminGoogleSecurityContainer.state.callbackUrl}
|
|
|
- readOnly
|
|
|
- />
|
|
|
- <p className="form-text text-muted small">{t('security_setting.desc_of_callback_URL', { AuthName: 'OAuth' })}</p>
|
|
|
- {!adminGeneralSecurityContainer.state.appSiteUrl && (
|
|
|
- <div className="alert alert-danger">
|
|
|
- <i
|
|
|
- className="icon-exclamation"
|
|
|
- // eslint-disable-next-line max-len
|
|
|
- dangerouslySetInnerHTML={{ __html: t('security_setting.alert_siteUrl_is_not_set', { link: `<a href="/admin/app">${t('App Settings')}<i class="icon-login"></i></a>` }) }}
|
|
|
- />
|
|
|
- </div>
|
|
|
- )}
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
- {isGoogleEnabled && (
|
|
|
- <React.Fragment>
|
|
|
-
|
|
|
- <h3 className="border-bottom">{t('security_setting.configuration')}</h3>
|
|
|
-
|
|
|
- <div className="row mb-5">
|
|
|
- <label htmlFor="googleClientId" className="col-3 text-right py-2">{t('security_setting.clientID')}</label>
|
|
|
- <div className="col-6">
|
|
|
- <input
|
|
|
- className="form-control"
|
|
|
- type="text"
|
|
|
- name="googleClientId"
|
|
|
- defaultValue={adminGoogleSecurityContainer.state.googleClientId || ''}
|
|
|
- onChange={e => adminGoogleSecurityContainer.changeGoogleClientId(e.target.value)}
|
|
|
- />
|
|
|
- <p className="form-text text-muted">
|
|
|
- <small dangerouslySetInnerHTML={{ __html: t('security_setting.Use env var if empty', { env: 'OAUTH_GOOGLE_CLIENT_ID' }) }} />
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div className="row mb-5">
|
|
|
- <label htmlFor="googleClientSecret" className="col-3 text-right py-2">{t('security_setting.client_secret')}</label>
|
|
|
- <div className="col-6">
|
|
|
- <input
|
|
|
- className="form-control"
|
|
|
- type="text"
|
|
|
- name="googleClientSecret"
|
|
|
- defaultValue={adminGoogleSecurityContainer.state.googleClientSecret || ''}
|
|
|
- onChange={e => adminGoogleSecurityContainer.changeGoogleClientSecret(e.target.value)}
|
|
|
- />
|
|
|
- <p className="form-text text-muted">
|
|
|
- <small dangerouslySetInnerHTML={{ __html: t('security_setting.Use env var if empty', { env: 'OAUTH_GOOGLE_CLIENT_SECRET' }) }} />
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div className="row mb-5">
|
|
|
- <div className="offset-3 col-6">
|
|
|
- <div className="custom-control custom-checkbox custom-checkbox-success">
|
|
|
- <input
|
|
|
- id="bindByUserNameGoogle"
|
|
|
- className="custom-control-input"
|
|
|
- type="checkbox"
|
|
|
- checked={adminGoogleSecurityContainer.state.isSameUsernameTreatedAsIdenticalUser || false}
|
|
|
- onChange={() => { adminGoogleSecurityContainer.switchIsSameUsernameTreatedAsIdenticalUser() }}
|
|
|
- />
|
|
|
- <label
|
|
|
- className="custom-control-label"
|
|
|
- htmlFor="bindByUserNameGoogle"
|
|
|
- dangerouslySetInnerHTML={{ __html: t('security_setting.Treat email matching as identical') }}
|
|
|
- />
|
|
|
- </div>
|
|
|
- <p className="form-text text-muted">
|
|
|
- <small dangerouslySetInnerHTML={{ __html: t('security_setting.Treat email matching as identical_warn') }} />
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div className="row my-3">
|
|
|
- <div className="offset-3 col-5">
|
|
|
- <button
|
|
|
- type="button"
|
|
|
- className="btn btn-primary"
|
|
|
- disabled={adminGoogleSecurityContainer.state.retrieveError != null}
|
|
|
- onClick={this.onClickSubmit}
|
|
|
- >
|
|
|
- {t('Update')}
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- </React.Fragment>
|
|
|
- )}
|
|
|
-
|
|
|
- <hr />
|
|
|
-
|
|
|
- <div style={{ minHeight: '300px' }}>
|
|
|
- <h4>
|
|
|
- <i className="icon-question" aria-hidden="true"></i>
|
|
|
- <a href="#collapseHelpForGoogleOauth" data-toggle="collapse"> {t('security_setting.OAuth.how_to.google')}</a>
|
|
|
- </h4>
|
|
|
- <ol id="collapseHelpForGoogleOauth" className="collapse">
|
|
|
- {/* eslint-disable-next-line max-len */}
|
|
|
- <li dangerouslySetInnerHTML={{ __html: t('security_setting.OAuth.Google.register_1', { link: '<a href="https://console.cloud.google.com/apis/credentials" target=_blank>Google Cloud Platform API Manager</a>' }) }} />
|
|
|
- <li dangerouslySetInnerHTML={{ __html: t('security_setting.OAuth.Google.register_2') }} />
|
|
|
- <li dangerouslySetInnerHTML={{ __html: t('security_setting.OAuth.Google.register_3') }} />
|
|
|
- <li dangerouslySetInnerHTML={{ __html: t('security_setting.OAuth.Google.register_4', { url: adminGoogleSecurityContainer.state.callbackUrl }) }} />
|
|
|
- <li dangerouslySetInnerHTML={{ __html: t('security_setting.OAuth.Google.register_5') }} />
|
|
|
- </ol>
|
|
|
- </div>
|
|
|
-
|
|
|
- </React.Fragment>
|
|
|
-
|
|
|
-
|
|
|
- );
|
|
|
+import GoogleSecurityManagementContents from './GoogleSecuritySettingContents';
|
|
|
+
|
|
|
+function GoogleSecurityManagement(props) {
|
|
|
+
|
|
|
+ const { adminGoogleSecurityContainer } = props;
|
|
|
+ if (adminGoogleSecurityContainer.state.googleClientId === adminGoogleSecurityContainer.dummyGoogleClientId) {
|
|
|
+ throw new Promise(async() => {
|
|
|
+ try {
|
|
|
+ await adminGoogleSecurityContainer.retrieveSecurityData();
|
|
|
+ }
|
|
|
+ catch (err) {
|
|
|
+ toastError(err);
|
|
|
+ adminGoogleSecurityContainer.setState({ retrieveError: err.message });
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
+ return <GoogleSecurityManagementContents />;
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -218,9 +36,24 @@ GoogleSecurityManagement.propTypes = {
|
|
|
adminGoogleSecurityContainer: PropTypes.instanceOf(AdminGoogleSecurityContainer).isRequired,
|
|
|
};
|
|
|
|
|
|
-const GoogleSecurityManagementWrapper = withUnstatedContainers(
|
|
|
- GoogleSecurityManagement,
|
|
|
- [AppContainer, AdminGeneralSecurityContainer, AdminGoogleSecurityContainer],
|
|
|
-);
|
|
|
+const GoogleSecurityManagementWithUnstatedContainer = withUnstatedContainers(GoogleSecurityManagement, [
|
|
|
+ AppContainer,
|
|
|
+ AdminGeneralSecurityContainer,
|
|
|
+ AdminGoogleSecurityContainer,
|
|
|
+]);
|
|
|
+
|
|
|
+function GoogleSecurityManagementWithContainerWithSuspense(props) {
|
|
|
+ return (
|
|
|
+ <Suspense
|
|
|
+ fallback={(
|
|
|
+ <div className="row">
|
|
|
+ <i className="fa fa-5x fa-spinner fa-pulse mx-auto text-muted"></i>
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+ >
|
|
|
+ <GoogleSecurityManagementWithUnstatedContainer />
|
|
|
+ </Suspense>
|
|
|
+ );
|
|
|
+}
|
|
|
|
|
|
-export default withTranslation()(GoogleSecurityManagementWrapper);
|
|
|
+export default GoogleSecurityManagementWithContainerWithSuspense;
|