Adding SQL settings to admin console
Этот коммит содержится в:
@@ -27,13 +27,11 @@
|
|||||||
"SqlSettings": {
|
"SqlSettings": {
|
||||||
"DriverName": "mysql",
|
"DriverName": "mysql",
|
||||||
"DataSource": "mmuser:mostest@tcp(dockerhost:3306)/mattermost_test?charset=utf8mb4,utf8",
|
"DataSource": "mmuser:mostest@tcp(dockerhost:3306)/mattermost_test?charset=utf8mb4,utf8",
|
||||||
"DataSourceReplicas": [
|
"DataSourceReplicas": [],
|
||||||
"mmuser:mostest@tcp(dockerhost:3306)/mattermost_test?charset=utf8mb4,utf8"
|
|
||||||
],
|
|
||||||
"MaxIdleConns": 10,
|
"MaxIdleConns": 10,
|
||||||
"MaxOpenConns": 10,
|
"MaxOpenConns": 10,
|
||||||
"Trace": false,
|
"Trace": false,
|
||||||
"AtRestEncryptKey": "Ya0xMrybACJ3sZZVWQC7e31h5nSDWZFS"
|
"AtRestEncryptKey": "7rAh6iwQCkV4cA1Gsg3fgGOXJAQ43QV"
|
||||||
},
|
},
|
||||||
"LogSettings": {
|
"LogSettings": {
|
||||||
"ConsoleEnable": true,
|
"ConsoleEnable": true,
|
||||||
@@ -84,7 +82,7 @@
|
|||||||
"ShowEmailAddress": true,
|
"ShowEmailAddress": true,
|
||||||
"ShowFullName": true
|
"ShowFullName": true
|
||||||
},
|
},
|
||||||
"GitLabSSOSettings": {
|
"GitLabSettings": {
|
||||||
"Allow": false,
|
"Allow": false,
|
||||||
"Secret": "",
|
"Secret": "",
|
||||||
"Id": "",
|
"Id": "",
|
||||||
|
|||||||
@@ -131,7 +131,7 @@ type Config struct {
|
|||||||
EmailSettings EmailSettings
|
EmailSettings EmailSettings
|
||||||
RateLimitSettings RateLimitSettings
|
RateLimitSettings RateLimitSettings
|
||||||
PrivacySettings PrivacySettings
|
PrivacySettings PrivacySettings
|
||||||
GitLabSSOSettings SSOSettings
|
GitLabSettings SSOSettings
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *Config) ToJson() string {
|
func (o *Config) ToJson() string {
|
||||||
@@ -145,7 +145,7 @@ func (o *Config) ToJson() string {
|
|||||||
|
|
||||||
func (o *Config) GetSSOService(service string) *SSOSettings {
|
func (o *Config) GetSSOService(service string) *SSOSettings {
|
||||||
if service == SERVICE_GITLAB {
|
if service == SERVICE_GITLAB {
|
||||||
return &o.GitLabSSOSettings
|
return &o.GitLabSettings
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
@@ -50,11 +50,18 @@ func NewSqlStore() Store {
|
|||||||
utils.Cfg.SqlSettings.DataSource, utils.Cfg.SqlSettings.MaxIdleConns,
|
utils.Cfg.SqlSettings.DataSource, utils.Cfg.SqlSettings.MaxIdleConns,
|
||||||
utils.Cfg.SqlSettings.MaxOpenConns, utils.Cfg.SqlSettings.Trace)
|
utils.Cfg.SqlSettings.MaxOpenConns, utils.Cfg.SqlSettings.Trace)
|
||||||
|
|
||||||
sqlStore.replicas = make([]*gorp.DbMap, len(utils.Cfg.SqlSettings.DataSourceReplicas))
|
if len(utils.Cfg.SqlSettings.DataSourceReplicas) == 0 {
|
||||||
for i, replica := range utils.Cfg.SqlSettings.DataSourceReplicas {
|
sqlStore.replicas = make([]*gorp.DbMap, 1)
|
||||||
sqlStore.replicas[i] = setupConnection(fmt.Sprintf("replica-%v", i), utils.Cfg.SqlSettings.DriverName, replica,
|
sqlStore.replicas[0] = setupConnection(fmt.Sprintf("replica-%v", 0), utils.Cfg.SqlSettings.DriverName, utils.Cfg.SqlSettings.DataSource,
|
||||||
utils.Cfg.SqlSettings.MaxIdleConns, utils.Cfg.SqlSettings.MaxOpenConns,
|
utils.Cfg.SqlSettings.MaxIdleConns, utils.Cfg.SqlSettings.MaxOpenConns,
|
||||||
utils.Cfg.SqlSettings.Trace)
|
utils.Cfg.SqlSettings.Trace)
|
||||||
|
} else {
|
||||||
|
sqlStore.replicas = make([]*gorp.DbMap, len(utils.Cfg.SqlSettings.DataSourceReplicas))
|
||||||
|
for i, replica := range utils.Cfg.SqlSettings.DataSourceReplicas {
|
||||||
|
sqlStore.replicas[i] = setupConnection(fmt.Sprintf("replica-%v", i), utils.Cfg.SqlSettings.DriverName, replica,
|
||||||
|
utils.Cfg.SqlSettings.MaxIdleConns, utils.Cfg.SqlSettings.MaxOpenConns,
|
||||||
|
utils.Cfg.SqlSettings.Trace)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
schemaVersion := sqlStore.GetCurrentSchemaVersion()
|
schemaVersion := sqlStore.GetCurrentSchemaVersion()
|
||||||
|
|||||||
@@ -183,7 +183,7 @@ func getClientProperties(c *model.Config) map[string]string {
|
|||||||
props["AllowSignUpWithEmail"] = strconv.FormatBool(c.EmailSettings.AllowSignUpWithEmail)
|
props["AllowSignUpWithEmail"] = strconv.FormatBool(c.EmailSettings.AllowSignUpWithEmail)
|
||||||
props["FeedbackEmail"] = c.EmailSettings.FeedbackEmail
|
props["FeedbackEmail"] = c.EmailSettings.FeedbackEmail
|
||||||
|
|
||||||
props["AllowSignUpWithGitLab"] = strconv.FormatBool(c.GitLabSSOSettings.Allow)
|
props["AllowSignUpWithGitLab"] = strconv.FormatBool(c.GitLabSettings.Allow)
|
||||||
|
|
||||||
props["ShowEmailAddress"] = strconv.FormatBool(c.PrivacySettings.ShowEmailAddress)
|
props["ShowEmailAddress"] = strconv.FormatBool(c.PrivacySettings.ShowEmailAddress)
|
||||||
props["AllowPublicLink"] = strconv.FormatBool(c.TeamSettings.AllowPublicLink)
|
props["AllowPublicLink"] = strconv.FormatBool(c.TeamSettings.AllowPublicLink)
|
||||||
|
|||||||
@@ -12,6 +12,8 @@ var LogsTab = require('./logs.jsx');
|
|||||||
var ImageSettingsTab = require('./image_settings.jsx');
|
var ImageSettingsTab = require('./image_settings.jsx');
|
||||||
var PrivacySettingsTab = require('./privacy_settings.jsx');
|
var PrivacySettingsTab = require('./privacy_settings.jsx');
|
||||||
var RateSettingsTab = require('./rate_settings.jsx');
|
var RateSettingsTab = require('./rate_settings.jsx');
|
||||||
|
var GitLabSettingsTab = require('./gitlab_settings.jsx');
|
||||||
|
var SqlSettingsTab = require('./sql_settings.jsx');
|
||||||
|
|
||||||
export default class AdminController extends React.Component {
|
export default class AdminController extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
@@ -22,7 +24,7 @@ export default class AdminController extends React.Component {
|
|||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
config: null,
|
config: null,
|
||||||
selected: 'email_settings'
|
selected: 'sql_settings'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,6 +64,10 @@ export default class AdminController extends React.Component {
|
|||||||
tab = <PrivacySettingsTab config={this.state.config} />;
|
tab = <PrivacySettingsTab config={this.state.config} />;
|
||||||
} else if (this.state.selected === 'rate_settings') {
|
} else if (this.state.selected === 'rate_settings') {
|
||||||
tab = <RateSettingsTab config={this.state.config} />;
|
tab = <RateSettingsTab config={this.state.config} />;
|
||||||
|
} else if (this.state.selected === 'gitlab_settings') {
|
||||||
|
tab = <GitLabSettingsTab config={this.state.config} />;
|
||||||
|
} else if (this.state.selected === 'sql_settings') {
|
||||||
|
tab = <SqlSettingsTab config={this.state.config} />;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,15 @@ export default class AdminSidebar extends React.Component {
|
|||||||
<ul className='nav nav-pills nav-stacked'>
|
<ul className='nav nav-pills nav-stacked'>
|
||||||
<li>
|
<li>
|
||||||
<ul className='nav nav__sub-menu'>
|
<ul className='nav nav__sub-menu'>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href='#'
|
||||||
|
className={this.isSelected('sql_settings')}
|
||||||
|
onClick={this.handleClick.bind(this, 'sql_settings')}
|
||||||
|
>
|
||||||
|
{'SQL Settings'}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href='#'
|
href='#'
|
||||||
@@ -47,6 +56,15 @@ export default class AdminSidebar extends React.Component {
|
|||||||
{'Email Settings'}
|
{'Email Settings'}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href='#'
|
||||||
|
className={this.isSelected('image_settings')}
|
||||||
|
onClick={this.handleClick.bind(this, 'image_settings')}
|
||||||
|
>
|
||||||
|
{'Image Settings'}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href='#'
|
href='#'
|
||||||
@@ -68,10 +86,10 @@ export default class AdminSidebar extends React.Component {
|
|||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href='#'
|
href='#'
|
||||||
className={this.isSelected('image_settings')}
|
className={this.isSelected('rate_settings')}
|
||||||
onClick={this.handleClick.bind(this, 'image_settings')}
|
onClick={this.handleClick.bind(this, 'rate_settings')}
|
||||||
>
|
>
|
||||||
{'Image Settings'}
|
{'Rate Limit Settings'}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
@@ -86,10 +104,10 @@ export default class AdminSidebar extends React.Component {
|
|||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href='#'
|
href='#'
|
||||||
className={this.isSelected('rate_settings')}
|
className={this.isSelected('gitlab_settings')}
|
||||||
onClick={this.handleClick.bind(this, 'rate_settings')}
|
onClick={this.handleClick.bind(this, 'gitlab_settings')}
|
||||||
>
|
>
|
||||||
{'Rate Limit Settings'}
|
{'GitLab Settings'}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
277
web/react/components/admin_console/gitlab_settings.jsx
Обычный файл
277
web/react/components/admin_console/gitlab_settings.jsx
Обычный файл
@@ -0,0 +1,277 @@
|
|||||||
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
|
// See License.txt for license information.
|
||||||
|
|
||||||
|
var Client = require('../../utils/client.jsx');
|
||||||
|
var AsyncClient = require('../../utils/async_client.jsx');
|
||||||
|
|
||||||
|
export default class GitLabSettings extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.handleChange = this.handleChange.bind(this);
|
||||||
|
this.handleSubmit = this.handleSubmit.bind(this);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
Allow: this.props.config.GitLabSettings.Allow,
|
||||||
|
saveNeeded: false,
|
||||||
|
serverError: null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
handleChange(action) {
|
||||||
|
var s = {saveNeeded: true, serverError: this.state.serverError};
|
||||||
|
|
||||||
|
if (action === 'AllowTrue') {
|
||||||
|
s.Allow = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (action === 'AllowFalse') {
|
||||||
|
s.Allow = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setState(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
handleSubmit(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('#save-button').button('loading');
|
||||||
|
|
||||||
|
var config = this.props.config;
|
||||||
|
config.GitLabSettings.Allow = React.findDOMNode(this.refs.Allow).checked;
|
||||||
|
config.GitLabSettings.Secret = React.findDOMNode(this.refs.Secret).value.trim();
|
||||||
|
config.GitLabSettings.Id = React.findDOMNode(this.refs.Id).value.trim();
|
||||||
|
config.GitLabSettings.Scope = React.findDOMNode(this.refs.Scope).value.trim();
|
||||||
|
config.GitLabSettings.AuthEndpoint = React.findDOMNode(this.refs.AuthEndpoint).value.trim();
|
||||||
|
config.GitLabSettings.TokenEndpoint = React.findDOMNode(this.refs.TokenEndpoint).value.trim();
|
||||||
|
config.GitLabSettings.UserApiEndpoint = React.findDOMNode(this.refs.UserApiEndpoint).value.trim();
|
||||||
|
|
||||||
|
Client.saveConfig(
|
||||||
|
config,
|
||||||
|
() => {
|
||||||
|
AsyncClient.getConfig();
|
||||||
|
this.setState({
|
||||||
|
serverError: null,
|
||||||
|
saveNeeded: false
|
||||||
|
});
|
||||||
|
$('#save-button').button('reset');
|
||||||
|
},
|
||||||
|
(err) => {
|
||||||
|
this.setState({
|
||||||
|
serverError: err.message,
|
||||||
|
saveNeeded: true
|
||||||
|
});
|
||||||
|
$('#save-button').button('reset');
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
var serverError = '';
|
||||||
|
if (this.state.serverError) {
|
||||||
|
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
var saveClass = 'btn';
|
||||||
|
if (this.state.saveNeeded) {
|
||||||
|
saveClass = 'btn btn-primary';
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='wrapper--fixed'>
|
||||||
|
|
||||||
|
<h3>{'GitLab Settings'}</h3>
|
||||||
|
<form
|
||||||
|
className='form-horizontal'
|
||||||
|
role='form'
|
||||||
|
>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='Allow'
|
||||||
|
>
|
||||||
|
{'Enable Sign Up With GitLab: '}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<label className='radio-inline'>
|
||||||
|
<input
|
||||||
|
type='radio'
|
||||||
|
name='Allow'
|
||||||
|
value='true'
|
||||||
|
ref='Allow'
|
||||||
|
defaultChecked={this.props.config.GitLabSettings.Allow}
|
||||||
|
onChange={this.handleChange.bind(this, 'AllowTrue')}
|
||||||
|
/>
|
||||||
|
{'true'}
|
||||||
|
</label>
|
||||||
|
<label className='radio-inline'>
|
||||||
|
<input
|
||||||
|
type='radio'
|
||||||
|
name='Allow'
|
||||||
|
value='false'
|
||||||
|
defaultChecked={!this.props.config.GitLabSettings.Allow}
|
||||||
|
onChange={this.handleChange.bind(this, 'AllowFalse')}
|
||||||
|
/>
|
||||||
|
{'false'}
|
||||||
|
</label>
|
||||||
|
<p className='help-text'>{'When true Mattermost will allow team creation and account signup utilizing GitLab OAuth.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='Secret'
|
||||||
|
>
|
||||||
|
{'Secret:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='Secret'
|
||||||
|
ref='Secret'
|
||||||
|
placeholder='Ex "jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY"'
|
||||||
|
defaultValue={this.props.config.GitLabSettings.Secret}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
disabled={!this.state.Allow}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Need help text.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='Id'
|
||||||
|
>
|
||||||
|
{'Id:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='Id'
|
||||||
|
ref='Id'
|
||||||
|
placeholder='Ex "jcuS8PuvcpGhpgHhlcpT1Mx42pnqMxQY"'
|
||||||
|
defaultValue={this.props.config.GitLabSettings.Id}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
disabled={!this.state.Allow}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Need help text.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='Scope'
|
||||||
|
>
|
||||||
|
{'Scope:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='Scope'
|
||||||
|
ref='Scope'
|
||||||
|
placeholder='Ex ""'
|
||||||
|
defaultValue={this.props.config.GitLabSettings.Scope}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
disabled={!this.state.Allow}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Need help text.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='AuthEndpoint'
|
||||||
|
>
|
||||||
|
{'Auth Endpoint:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='AuthEndpoint'
|
||||||
|
ref='AuthEndpoint'
|
||||||
|
placeholder='Ex ""'
|
||||||
|
defaultValue={this.props.config.GitLabSettings.AuthEndpoint}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
disabled={!this.state.Allow}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Need help text.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='TokenEndpoint'
|
||||||
|
>
|
||||||
|
{'Token Endpoint:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='TokenEndpoint'
|
||||||
|
ref='TokenEndpoint'
|
||||||
|
placeholder='Ex ""'
|
||||||
|
defaultValue={this.props.config.GitLabSettings.TokenEndpoint}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
disabled={!this.state.Allow}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Need help text.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='UserApiEndpoint'
|
||||||
|
>
|
||||||
|
{'User API Endpoint:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='UserApiEndpoint'
|
||||||
|
ref='UserApiEndpoint'
|
||||||
|
placeholder='Ex ""'
|
||||||
|
defaultValue={this.props.config.GitLabSettings.UserApiEndpoint}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
disabled={!this.state.Allow}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Need help text.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<div className='col-sm-12'>
|
||||||
|
{serverError}
|
||||||
|
<button
|
||||||
|
disabled={!this.state.saveNeeded}
|
||||||
|
type='submit'
|
||||||
|
className={saveClass}
|
||||||
|
onClick={this.handleSubmit}
|
||||||
|
id='save-button'
|
||||||
|
data-loading-text={'<span class=\'glyphicon glyphicon-refresh glyphicon-refresh-animate\'></span> Saving Config...'}
|
||||||
|
>
|
||||||
|
{'Save'}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GitLabSettings.propTypes = {
|
||||||
|
config: React.PropTypes.object
|
||||||
|
};
|
||||||
@@ -162,7 +162,7 @@ export default class RateSettings extends React.Component {
|
|||||||
onChange={this.handleChange}
|
onChange={this.handleChange}
|
||||||
disabled={!this.state.EnableRateLimiter}
|
disabled={!this.state.EnableRateLimiter}
|
||||||
/>
|
/>
|
||||||
<p className='help-text'>{'Height of profile picture.'}</p>
|
<p className='help-text'>{'Throttles API at this number of requests per second.'}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
283
web/react/components/admin_console/sql_settings.jsx
Обычный файл
283
web/react/components/admin_console/sql_settings.jsx
Обычный файл
@@ -0,0 +1,283 @@
|
|||||||
|
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
|
||||||
|
// See License.txt for license information.
|
||||||
|
|
||||||
|
var Client = require('../../utils/client.jsx');
|
||||||
|
var AsyncClient = require('../../utils/async_client.jsx');
|
||||||
|
var crypto = require('crypto');
|
||||||
|
|
||||||
|
export default class SqlSettings extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.handleChange = this.handleChange.bind(this);
|
||||||
|
this.handleSubmit = this.handleSubmit.bind(this);
|
||||||
|
this.handleGenerate = this.handleGenerate.bind(this);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
saveNeeded: false,
|
||||||
|
serverError: null
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
handleChange() {
|
||||||
|
var s = {saveNeeded: true, serverError: this.state.serverError};
|
||||||
|
this.setState(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
handleSubmit(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('#save-button').button('loading');
|
||||||
|
|
||||||
|
var config = this.props.config;
|
||||||
|
config.SqlSettings.Trace = React.findDOMNode(this.refs.Trace).checked;
|
||||||
|
config.SqlSettings.AtRestEncryptKey = React.findDOMNode(this.refs.AtRestEncryptKey).value.trim();
|
||||||
|
|
||||||
|
if (config.SqlSettings.AtRestEncryptKey === '') {
|
||||||
|
config.SqlSettings.AtRestEncryptKey = crypto.randomBytes(256).toString('base64').substring(0, 31);
|
||||||
|
React.findDOMNode(this.refs.AtRestEncryptKey).value = config.SqlSettings.AtRestEncryptKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
var MaxOpenConns = 10;
|
||||||
|
if (!isNaN(parseInt(React.findDOMNode(this.refs.MaxOpenConns).value, 10))) {
|
||||||
|
MaxOpenConns = parseInt(React.findDOMNode(this.refs.MaxOpenConns).value, 10);
|
||||||
|
}
|
||||||
|
config.SqlSettings.MaxOpenConns = MaxOpenConns;
|
||||||
|
React.findDOMNode(this.refs.MaxOpenConns).value = MaxOpenConns;
|
||||||
|
|
||||||
|
var MaxIdleConns = 10;
|
||||||
|
if (!isNaN(parseInt(React.findDOMNode(this.refs.MaxIdleConns).value, 10))) {
|
||||||
|
MaxIdleConns = parseInt(React.findDOMNode(this.refs.MaxIdleConns).value, 10);
|
||||||
|
}
|
||||||
|
config.SqlSettings.MaxIdleConns = MaxIdleConns;
|
||||||
|
React.findDOMNode(this.refs.MaxIdleConns).value = MaxIdleConns;
|
||||||
|
|
||||||
|
Client.saveConfig(
|
||||||
|
config,
|
||||||
|
() => {
|
||||||
|
AsyncClient.getConfig();
|
||||||
|
this.setState({
|
||||||
|
serverError: null,
|
||||||
|
saveNeeded: false
|
||||||
|
});
|
||||||
|
$('#save-button').button('reset');
|
||||||
|
},
|
||||||
|
(err) => {
|
||||||
|
this.setState({
|
||||||
|
serverError: err.message,
|
||||||
|
saveNeeded: true
|
||||||
|
});
|
||||||
|
$('#save-button').button('reset');
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
handleGenerate(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
React.findDOMNode(this.refs.AtRestEncryptKey).value = crypto.randomBytes(256).toString('base64').substring(0, 31);
|
||||||
|
var s = {saveNeeded: true, serverError: this.state.serverError};
|
||||||
|
this.setState(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
var serverError = '';
|
||||||
|
if (this.state.serverError) {
|
||||||
|
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
var saveClass = 'btn';
|
||||||
|
if (this.state.saveNeeded) {
|
||||||
|
saveClass = 'btn btn-primary';
|
||||||
|
}
|
||||||
|
|
||||||
|
var dataSource = '**********' + this.props.config.SqlSettings.DataSource.substring(this.props.config.SqlSettings.DataSource.indexOf('@'));
|
||||||
|
|
||||||
|
var dataSourceReplicas = '';
|
||||||
|
this.props.config.SqlSettings.DataSourceReplicas.forEach((replica) => {
|
||||||
|
dataSourceReplicas += '[**********' + replica.substring(replica.indexOf('@')) + '] ';
|
||||||
|
});
|
||||||
|
|
||||||
|
if (this.props.config.SqlSettings.DataSourceReplicas.length === 0) {
|
||||||
|
dataSourceReplicas = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='wrapper--fixed'>
|
||||||
|
|
||||||
|
<div className='banner'>
|
||||||
|
<div className='banner__content'>
|
||||||
|
<h4 className='banner__heading'>{'Note:'}</h4>
|
||||||
|
<p>{'Changing properties in this section will require a server restart before taking effect.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3>{'SQL Settings'}</h3>
|
||||||
|
<form
|
||||||
|
className='form-horizontal'
|
||||||
|
role='form'
|
||||||
|
>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='DriverName'
|
||||||
|
>
|
||||||
|
{'Driver Name:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<p className='help-text'>{this.props.config.SqlSettings.DriverName}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='DataSource'
|
||||||
|
>
|
||||||
|
{'Data Source:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<p className='help-text'>{dataSource}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='DataSourceReplicas'
|
||||||
|
>
|
||||||
|
{'Data Source Replicas:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<p className='help-text'>{dataSourceReplicas}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='MaxIdleConns'
|
||||||
|
>
|
||||||
|
{'Maximum Idle Connections:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='MaxIdleConns'
|
||||||
|
ref='MaxIdleConns'
|
||||||
|
placeholder='Ex "10"'
|
||||||
|
defaultValue={this.props.config.SqlSettings.MaxIdleConns}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Maximum number of idle connections held open to the database.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='MaxOpenConns'
|
||||||
|
>
|
||||||
|
{'Maximum Open Connections:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='MaxOpenConns'
|
||||||
|
ref='MaxOpenConns'
|
||||||
|
placeholder='Ex "10"'
|
||||||
|
defaultValue={this.props.config.SqlSettings.MaxOpenConns}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'Maximum number of open connections held open to the database.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='AtRestEncryptKey'
|
||||||
|
>
|
||||||
|
{'At Rest Encrypt Key:'}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
className='form-control'
|
||||||
|
id='AtRestEncryptKey'
|
||||||
|
ref='AtRestEncryptKey'
|
||||||
|
placeholder='Ex "10"'
|
||||||
|
defaultValue={this.props.config.SqlSettings.AtRestEncryptKey}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
/>
|
||||||
|
<p className='help-text'>{'32-character salt available to encrypt and decrypt sensitive fields in database.'}</p>
|
||||||
|
<div className='help-text'>
|
||||||
|
<button
|
||||||
|
className='help-link'
|
||||||
|
onClick={this.handleGenerate}
|
||||||
|
>
|
||||||
|
{'Re-Generate'}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<label
|
||||||
|
className='control-label col-sm-4'
|
||||||
|
htmlFor='Trace'
|
||||||
|
>
|
||||||
|
{'Trace: '}
|
||||||
|
</label>
|
||||||
|
<div className='col-sm-8'>
|
||||||
|
<label className='radio-inline'>
|
||||||
|
<input
|
||||||
|
type='radio'
|
||||||
|
name='Trace'
|
||||||
|
value='true'
|
||||||
|
ref='Trace'
|
||||||
|
defaultChecked={this.props.config.SqlSettings.Trace}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
/>
|
||||||
|
{'true'}
|
||||||
|
</label>
|
||||||
|
<label className='radio-inline'>
|
||||||
|
<input
|
||||||
|
type='radio'
|
||||||
|
name='Trace'
|
||||||
|
value='false'
|
||||||
|
defaultChecked={!this.props.config.SqlSettings.Trace}
|
||||||
|
onChange={this.handleChange}
|
||||||
|
/>
|
||||||
|
{'false'}
|
||||||
|
</label>
|
||||||
|
<p className='help-text'>{'Output executing SQL statements to the log. Typically used for development.'}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className='form-group'>
|
||||||
|
<div className='col-sm-12'>
|
||||||
|
{serverError}
|
||||||
|
<button
|
||||||
|
disabled={!this.state.saveNeeded}
|
||||||
|
type='submit'
|
||||||
|
className={saveClass}
|
||||||
|
onClick={this.handleSubmit}
|
||||||
|
id='save-button'
|
||||||
|
data-loading-text={'<span class=\'glyphicon glyphicon-refresh glyphicon-refresh-animate\'></span> Saving Config...'}
|
||||||
|
>
|
||||||
|
{'Save'}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SqlSettings.propTypes = {
|
||||||
|
config: React.PropTypes.object
|
||||||
|
};
|
||||||
Ссылка в новой задаче
Block a user