1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
import { connect } from 'react-redux';
import { IpVersion } from '../../shared/daemon-rpc-types';
import log from '../../shared/logging';
import RelaySettingsBuilder from '../../shared/relay-settings-builder';
import WireguardSettings from '../components/WireguardSettings';
import withAppContext, { IAppContext } from '../context';
import { IHistoryProps, withHistory } from '../lib/history';
import { RoutePath } from '../lib/routes';
import { RelaySettingsRedux } from '../redux/settings/reducers';
import { IReduxState, ReduxDispatch } from '../redux/store';
const mapStateToProps = (state: IReduxState) => {
const protocolAndPort = mapRelaySettingsToProtocolAndPort(state.settings.relaySettings);
return {
wireguardMtu: state.settings.wireguard.mtu,
...protocolAndPort,
};
};
const mapRelaySettingsToProtocolAndPort = (relaySettings: RelaySettingsRedux) => {
if ('normal' in relaySettings) {
const port = relaySettings.normal.wireguard.port;
const ipVersion = relaySettings.normal.wireguard.ipVersion;
return {
wireguard: {
port: port === 'any' ? undefined : port,
ipVersion: ipVersion === 'any' ? undefined : ipVersion,
},
};
// since the GUI doesn't display custom settings, just display the default ones.
// If the user sets any settings, then those will be applied.
} else if ('customTunnelEndpoint' in relaySettings) {
return {
wireguard: { port: undefined },
};
} else {
throw new Error('Unknown type of relay settings.');
}
};
const mapDispatchToProps = (_dispatch: ReduxDispatch, props: IHistoryProps & IAppContext) => {
return {
onClose: () => {
props.history.pop();
},
setWireguardRelayPortAndIpVersion: async (port?: number, ipVersion?: IpVersion) => {
const relayUpdate = RelaySettingsBuilder.normal()
.tunnel.wireguard((wireguard) => {
if (port) {
wireguard.port.exact(port);
} else {
wireguard.port.any();
}
if (ipVersion) {
wireguard.ipVersion.exact(ipVersion);
} else {
wireguard.ipVersion.any();
}
})
.build();
try {
await props.app.updateRelaySettings(relayUpdate);
} catch (e) {
const error = e as Error;
log.error('Failed to update relay settings', error.message);
}
},
setWireguardMtu: async (mtu?: number) => {
try {
await props.app.setWireguardMtu(mtu);
} catch (e) {
const error = e as Error;
log.error('Failed to update mtu value', error.message);
}
},
onViewWireguardKeys: () => props.history.push(RoutePath.wireguardKeys),
};
};
export default withAppContext(
withHistory(connect(mapStateToProps, mapDispatchToProps)(WireguardSettings)),
);
|