Merge pull request #33 in DNS/adguard-dns from feature/321 to master

* commit '1c1b952d485e572eb2320b641429e07757b2d65f':
  Fix message checking
  Check upstream length in component
  Add a test upstreams button
This commit is contained in:
Ildar Kamalov 2018-09-21 19:06:25 +03:00
commit 92b681cb41
7 changed files with 77 additions and 3 deletions

View File

@ -420,3 +420,31 @@ export const setUpstream = url => async (dispatch) => {
dispatch(setUpstreamFailure()); dispatch(setUpstreamFailure());
} }
}; };
export const testUpstreamRequest = createAction('TEST_UPSTREAM_REQUEST');
export const testUpstreamFailure = createAction('TEST_UPSTREAM_FAILURE');
export const testUpstreamSuccess = createAction('TEST_UPSTREAM_SUCCESS');
export const testUpstream = servers => async (dispatch) => {
dispatch(testUpstreamRequest());
try {
const upstreamResponse = await apiClient.testUpstream(servers);
const testMessages = Object.keys(upstreamResponse).map((key) => {
const message = upstreamResponse[key];
if (message !== 'OK') {
dispatch(addErrorToast({ error: `Server "${key}": could not be used, please check that you've written it correctly` }));
}
return message;
});
if (testMessages.every(message => message === 'OK')) {
dispatch(addSuccessToast('All servers is OK'));
}
dispatch(testUpstreamSuccess());
} catch (error) {
dispatch(addErrorToast({ error }));
dispatch(testUpstreamFailure());
}
};

View File

@ -31,6 +31,7 @@ export default class Api {
GLOBAL_QUERY_LOG_ENABLE = { path: 'querylog_enable', method: 'POST' }; GLOBAL_QUERY_LOG_ENABLE = { path: 'querylog_enable', method: 'POST' };
GLOBAL_QUERY_LOG_DISABLE = { path: 'querylog_disable', method: 'POST' }; GLOBAL_QUERY_LOG_DISABLE = { path: 'querylog_disable', method: 'POST' };
GLOBAL_SET_UPSTREAM_DNS = { path: 'set_upstream_dns', method: 'POST' }; GLOBAL_SET_UPSTREAM_DNS = { path: 'set_upstream_dns', method: 'POST' };
GLOBAL_TEST_UPSTREAM_DNS = { path: 'test_upstream_dns', method: 'POST' };
GLOBAL_VERSION = { path: 'version.json', method: 'GET' }; GLOBAL_VERSION = { path: 'version.json', method: 'GET' };
restartGlobalFiltering() { restartGlobalFiltering() {
@ -108,6 +109,15 @@ export default class Api {
return this.makeRequest(path, method, config); return this.makeRequest(path, method, config);
} }
testUpstream(servers) {
const { path, method } = this.GLOBAL_TEST_UPSTREAM_DNS;
const config = {
data: servers,
header: { 'Content-Type': 'text/plain' },
};
return this.makeRequest(path, method, config);
}
getGlobalVersion() { getGlobalVersion() {
const { path, method } = this.GLOBAL_VERSION; const { path, method } = this.GLOBAL_VERSION;
return this.makeRequest(path, method); return this.makeRequest(path, method);

View File

@ -27,7 +27,7 @@ export default class UserRules extends Component {
type="submit" type="submit"
onClick={this.handleSubmit} onClick={this.handleSubmit}
> >
Apply... Apply
</button> </button>
</div> </div>
</form> </form>

View File

@ -1,5 +1,6 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import classnames from 'classnames';
import Card from '../ui/Card'; import Card from '../ui/Card';
export default class Upstream extends Component { export default class Upstream extends Component {
@ -13,7 +14,16 @@ export default class Upstream extends Component {
this.props.handleUpstreamSubmit(); this.props.handleUpstreamSubmit();
}; };
handleTest = () => {
this.props.handleUpstreamTest();
}
render() { render() {
const testButtonClass = classnames({
'btn btn-primary btn-standart mr-2': true,
'btn btn-primary btn-standart mr-2 btn-loading': this.props.processingTestUpstream,
});
return ( return (
<Card <Card
title="Upstream DNS servers" title="Upstream DNS servers"
@ -29,6 +39,13 @@ export default class Upstream extends Component {
onChange={this.handleChange} onChange={this.handleChange}
/> />
<div className="card-actions"> <div className="card-actions">
<button
className={testButtonClass}
type="button"
onClick={this.handleTest}
>
Test upstreams
</button>
<button <button
className="btn btn-success btn-standart" className="btn btn-success btn-standart"
type="submit" type="submit"
@ -47,6 +64,8 @@ export default class Upstream extends Component {
Upstream.propTypes = { Upstream.propTypes = {
upstream: PropTypes.string, upstream: PropTypes.string,
processingTestUpstream: PropTypes.bool,
handleUpstreamChange: PropTypes.func, handleUpstreamChange: PropTypes.func,
handleUpstreamSubmit: PropTypes.func, handleUpstreamSubmit: PropTypes.func,
handleUpstreamTest: PropTypes.func,
}; };

View File

@ -43,6 +43,14 @@ export default class Settings extends Component {
this.props.setUpstream(this.props.settings.upstream); this.props.setUpstream(this.props.settings.upstream);
}; };
handleUpstreamTest = () => {
if (this.props.settings.upstream.length > 0) {
this.props.testUpstream(this.props.settings.upstream);
} else {
this.props.addErrorToast({ error: 'No servers specified' });
}
};
renderSettings = (settings) => { renderSettings = (settings) => {
if (Object.keys(settings).length > 0) { if (Object.keys(settings).length > 0) {
return Object.keys(settings).map((key) => { return Object.keys(settings).map((key) => {
@ -77,8 +85,10 @@ export default class Settings extends Component {
</Card> </Card>
<Upstream <Upstream
upstream={upstream} upstream={upstream}
processingTestUpstream={settings.processingTestUpstream}
handleUpstreamChange={this.handleUpstreamChange} handleUpstreamChange={this.handleUpstreamChange}
handleUpstreamSubmit={this.handleUpstreamSubmit} handleUpstreamSubmit={this.handleUpstreamSubmit}
handleUpstreamTest={this.handleUpstreamTest}
/> />
</div> </div>
</div> </div>

View File

@ -1,5 +1,5 @@
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { initSettings, toggleSetting, handleUpstreamChange, setUpstream } from '../actions'; import { initSettings, toggleSetting, handleUpstreamChange, setUpstream, testUpstream, addErrorToast } from '../actions';
import Settings from '../components/Settings'; import Settings from '../components/Settings';
const mapStateToProps = (state) => { const mapStateToProps = (state) => {
@ -13,6 +13,8 @@ const mapDispatchToProps = {
toggleSetting, toggleSetting,
handleUpstreamChange, handleUpstreamChange,
setUpstream, setUpstream,
testUpstream,
addErrorToast,
}; };
export default connect( export default connect(

View File

@ -31,9 +31,14 @@ const settings = handleActions({
const { upstream } = payload; const { upstream } = payload;
return { ...state, upstream }; return { ...state, upstream };
}, },
[actions.testUpstreamRequest]: state => ({ ...state, processingTestUpstream: true }),
[actions.testUpstreamFailure]: state => ({ ...state, processingTestUpstream: false }),
[actions.testUpstreamSuccess]: state => ({ ...state, processingTestUpstream: false }),
}, { }, {
processing: true, processing: true,
processingUpstream: true, processingTestUpstream: false,
processingSetUpstream: false,
upstream: '', upstream: '',
}); });