|
@@ -21,6 +21,147 @@ class SecurityManagement extends React.Component {
|
|
|
const { t } = this.props;
|
|
const { t } = this.props;
|
|
|
return (
|
|
return (
|
|
|
<Fragment>
|
|
<Fragment>
|
|
|
|
|
+ <fieldset>
|
|
|
|
|
+ <legend className="alert-anchor">{ t('security_settings') }</legend>
|
|
|
|
|
+ <div className="form-group">
|
|
|
|
|
+ <label htmlFor="settingForm[security:restrictGuestMode]" className="col-xs-3 control-label">{ t('security_setting.Guest Users Access') }</label>
|
|
|
|
|
+ <div className="col-xs-6">
|
|
|
|
|
+ <select
|
|
|
|
|
+ className="form-control selectpicker"
|
|
|
|
|
+ name="settingForm[security:restrictGuestMode]"
|
|
|
|
|
+ value="{ getConfig('crowi', 'security:restrictGuestMode') }"
|
|
|
|
|
+ >
|
|
|
|
|
+ <option value="{ t(modeValue) }">{ t('modeLabel') }</option>
|
|
|
|
|
+ </select>
|
|
|
|
|
+ <p className="alert alert-warning mt-2">
|
|
|
|
|
+ <i className="icon-exclamation icon-fw">
|
|
|
|
|
+ </i><b>FIXED</b>
|
|
|
|
|
+ { t('security_setting.Fixed by env var', 'FORCE_WIKI_MODE', getConfig('crowi', 'security:wikiMode')) }<br></br>
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className="form-group">
|
|
|
|
|
+ <label htmlFor="{{configName}}" className="col-xs-3 control-label">{ t('security_setting.page_listing_1') }</label>
|
|
|
|
|
+ <div className="col-xs-9">
|
|
|
|
|
+ <div className="btn-group btn-toggle" data-toggle="buttons">
|
|
|
|
|
+ <label className="btn btn-default btn-rounded btn-outline {% if isEnabled %}active{% endif %}" data-active-class="primary">
|
|
|
|
|
+ <input name="{{configName}}" value="false" type="radio"></input>
|
|
|
|
|
+ </label>
|
|
|
|
|
+ <label className="btn btn-default btn-rounded btn-outline {% if !isEnabled %}active{% endif %}" data-active-class="default">
|
|
|
|
|
+ <input name="{{configName}}" value="true" type="radio"></input>
|
|
|
|
|
+ </label>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <p className="help-block small">
|
|
|
|
|
+ { t('security_setting.page_listing_1_desc') }
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div className="form-group">
|
|
|
|
|
+ <label htmlFor="{{configName}}" className="col-xs-3 control-label">{ t('security_setting.page_listing_2') }</label>
|
|
|
|
|
+ <div className="col-xs-9">
|
|
|
|
|
+ <div className="btn-group btn-toggle" data-toggle="buttons">
|
|
|
|
|
+ <label className="btn btn-default btn-rounded btn-outline {% if isEnabled %}active{% endif %}" data-active-class="primary">
|
|
|
|
|
+ <input name="{{configName}}" value="false" type="radio" />
|
|
|
|
|
+ </label>
|
|
|
|
|
+ <label className="btn btn-default btn-rounded btn-outline {% if !isEnabled %}active{% endif %}" data-active-class="default">
|
|
|
|
|
+ <input name="{{configName}}" value="true" type="radio" />
|
|
|
|
|
+ </label>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <p className="help-block small">
|
|
|
|
|
+ { t('security_setting.page_listing_2_desc') }
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div className="form-group">
|
|
|
|
|
+ <label htmlFor="{{configName}}" className="col-xs-3 control-label">{ t('security_setting.complete_deletion') }</label>
|
|
|
|
|
+ <div className="col-xs-6">
|
|
|
|
|
+ <select className="form-control selectpicker" name="settingForm[security:pageCompleteDeletionAuthority]" value="{{ configValue }}">
|
|
|
|
|
+ <option value="anyOne">{ t('security_setting.anyone') }</option>
|
|
|
|
|
+ <option value="adminOnly">{ t('security_setting.admin_only') }</option>
|
|
|
|
|
+ <option value="adminAndAuthor">{ t('security_setting.admin_and_author') }</option>
|
|
|
|
|
+ </select>
|
|
|
|
|
+
|
|
|
|
|
+ <p className="help-block small">
|
|
|
|
|
+ { t('security_setting.complete_deletion_explain') }
|
|
|
|
|
+ </p>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div className="form-group">
|
|
|
|
|
+ <div className="col-xs-offset-3 col-xs-6">
|
|
|
|
|
+ <input type="hidden" name="_csrf" value={this.props.csrf} />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </fieldset>
|
|
|
|
|
+ <div className="mt-5">
|
|
|
|
|
+ <legend>{ t('security_setting.xss_prevent_setting') }</legend>
|
|
|
|
|
+ <div className="text-center">
|
|
|
|
|
+ <a className="flexbox" style={{ fontSize: 'large' }} href="/admin/markdown/#preventXSS">
|
|
|
|
|
+ <i className="fa-fw icon-login"></i> { t('security_setting.xss_prevent_setting_link') }}
|
|
|
|
|
+ </a>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div className="auth-mechanism-configurations m-t-10">
|
|
|
|
|
+ <legend>{ t('security_setting.Authentication mechanism settings') }</legend>
|
|
|
|
|
+ <div className="passport-settings">
|
|
|
|
|
+ <ul className="nav nav-tabs" role="tablist">
|
|
|
|
|
+ <li className="active">
|
|
|
|
|
+ <a href="#passport-local" data-toggle="tab" role="tab"><i className="fa fa-users"></i> ID/Pass</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-ldap" data-toggle="tab" role="tab"><i className="fa fa-sitemap"></i> LDAP</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-saml" data-toggle="tab" role="tab"><i className="fa fa-key"></i> SAML</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-oidc" data-toggle="tab" role="tab"><i className="fa fa-openid"></i> OIDC</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-basic" data-toggle="tab" role="tab"><i className="fa fa-lock"></i> Basic</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-google-oauth" data-toggle="tab" role="tab"><i className="fa fa-google"></i> Google</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-github" data-toggle="tab" role="tab"><i className="fa fa-github"></i> GitHub</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li>
|
|
|
|
|
+ <a href="#passport-twitter" data-toggle="tab" role="tab"><i className="fa fa-twitter"></i> Twitter</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ <li className="tbd">
|
|
|
|
|
+ <a href="#passport-facebook" data-toggle="tab" role="tab"><i className="fa fa-facebook"></i> (TBD) Facebook</a>
|
|
|
|
|
+ </li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ <div className="tab-content p-t-10">
|
|
|
|
|
+ <div id="passport-local" className="tab-pane active" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-ldap" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-saml" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-oidc" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-basic" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-google-oauth" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-facebook" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-twitter" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div id="passport-github" className="tab-pane" role="tabpanel">
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div>
|
|
|
|
|
+ <script>
|
|
|
|
|
+ </script>
|
|
|
|
|
+ </div>
|
|
|
</Fragment>
|
|
</Fragment>
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
@@ -30,6 +171,7 @@ class SecurityManagement extends React.Component {
|
|
|
SecurityManagement.propTypes = {
|
|
SecurityManagement.propTypes = {
|
|
|
t: PropTypes.func.isRequired, // i18next
|
|
t: PropTypes.func.isRequired, // i18next
|
|
|
appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
|
|
+ csrf: PropTypes.string,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
const SecurityManagementWrapper = (props) => {
|
|
const SecurityManagementWrapper = (props) => {
|