Skip to content

Commit

Permalink
qml, proxy: Allow IPv6 and move out UI validation
Browse files Browse the repository at this point in the history
Allowed to configure the proxy with an IPv6 address and moved
the validation out from the UI/ control to the node interface.
  • Loading branch information
pablomartin4btc committed Nov 6, 2024
1 parent c117acc commit 5e227d8
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 35 deletions.
9 changes: 9 additions & 0 deletions src/interfaces/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
#include <tuple>
#include <vector>

static const char DEFAULT_PROXY_HOST[] = "127.0.0.1";
static constexpr uint16_t DEFAULT_PROXY_PORT = 9050;

class BanMan;
class CFeeRate;
class CNodeStats;
Expand Down Expand Up @@ -126,6 +129,12 @@ class Node
//! Get proxy.
virtual bool getProxy(Network net, Proxy& proxy_info) = 0;

//! Get default proxy address.
virtual std::string defaultProxyAddress() = 0;

//! Validate a proxy address.
virtual bool validateProxyAddress(const std::string& ip_address) = 0;

//! Get number of connections.
virtual size_t getNodeCount(ConnectionDirection flags) = 0;

Expand Down
12 changes: 12 additions & 0 deletions src/node/interfaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#include <uint256.h>
#include <univalue.h>
#include <util/check.h>
#include <util/strencodings.h>
#include <util/translation.h>
#include <validation.h>
#include <validationinterface.h>
Expand Down Expand Up @@ -169,6 +170,17 @@ class NodeImpl : public Node
}
void mapPort(bool use_upnp, bool use_natpmp) override { StartMapPort(use_upnp, use_natpmp); }
bool getProxy(Network net, Proxy& proxy_info) override { return GetProxy(net, proxy_info); }
std::string defaultProxyAddress() override
{
return std::string(DEFAULT_PROXY_HOST) + ":" + ToString(DEFAULT_PROXY_PORT);
}
bool validateProxyAddress(const std::string& proxy_address) override
{
CService serv(LookupNumeric(proxy_address, DEFAULT_PROXY_PORT));

Proxy addrProxy = Proxy(serv, true);
return addrProxy.IsValid();
}
size_t getNodeCount(ConnectionDirection flags) override
{
return m_context->connman ? m_context->connman->GetNodeCount(flags) : 0;
Expand Down
23 changes: 17 additions & 6 deletions src/qml/components/ProxySettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import "../controls"

import org.bitcoincore.qt 1.0

ColumnLayout {
property string ipAndPortHeader: qsTr("IP and Port")
property string invalidIpError: qsTr("Invalid IP address or port format. Use '255.255.255.255:65535' or '[ffff::]:65535'")

spacing: 4
Header {
headerBold: true
Expand Down Expand Up @@ -41,14 +46,17 @@ ColumnLayout {
Setting {
id: defaultProxy
Layout.fillWidth: true
header: qsTr("IP and Port")
errorText: qsTr("Invalid IP address or port format. Please use the format '255.255.255.255:65535'.")
header: ipAndPortHeader
errorText: invalidIpError
state: !defaultProxyEnable.loadedItem.checked ? "DISABLED" : "FILLED"
showErrorText: !defaultProxy.loadedItem.validInput && defaultProxyEnable.loadedItem.checked
actionItem: IPAddressValueInput {
parentState: defaultProxy.state
description: "127.0.0.1:9050"
description: nodeModel.defaultProxyAddress()
activeFocusOnTab: true
onTextChanged: {
validInput = nodeModel.validateProxyAddress(text);
}
}
onClicked: {
loadedItem.filled = true
Expand Down Expand Up @@ -89,14 +97,17 @@ ColumnLayout {
Setting {
id: torProxy
Layout.fillWidth: true
header: qsTr("IP and Port")
errorText: qsTr("Invalid IP address or port format. Please use the format '255.255.255.255:65535'.")
header: ipAndPortHeader
errorText: invalidIpError
state: !torProxyEnable.loadedItem.checked ? "DISABLED" : "FILLED"
showErrorText: !torProxy.loadedItem.validInput && torProxyEnable.loadedItem.checked
actionItem: IPAddressValueInput {
parentState: torProxy.state
description: "127.0.0.1:9050"
description: nodeModel.defaultProxyAddress()
activeFocusOnTab: true
onTextChanged: {
validInput = nodeModel.validateProxyAddress(text);
}
}
onClicked: {
loadedItem.filled = true
Expand Down
32 changes: 3 additions & 29 deletions src/qml/controls/IPAddressValueInput.qml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ TextInput {
property bool validInput: true
enabled: true
state: root.parentState
validator: RegExpValidator { regExp: /[0-9.:]*/ } // Allow only digits, dots, and colons

maximumLength: 21
validator: RegularExpressionValidator { regularExpression: /^[][0-9A-Fa-f.:]*$/ } // Allow only IPv4/ IPv6 chars
maximumLength: 45

states: [
State {
Expand Down Expand Up @@ -53,30 +53,4 @@ TextInput {
Behavior on color {
ColorAnimation { duration: 150 }
}

function isValidIPPort(input)
{
var parts = input.split(":");
if (parts.length !== 2) return false;
if (parts[1].length === 0) return false; // port part is empty
var ipAddress = parts[0];
var ipAddressParts = ipAddress.split(".");
if (ipAddressParts.length !== 4) return false;
for (var i = 0; (i < ipAddressParts.length); i++) {
if (ipAddressParts[i].length === 0) return false; // ip group number part is empty
if (parseInt(ipAddressParts[i]) > 255) return false;
}
var port = parseInt(parts[1]);
if (port < 1 || port > 65535) return false;
return true;
}

// Connections element to ensure validation on editing finished
Connections {
target: root
function onTextChanged() {
// Validate the input whenever editing is finished
validInput = isValidIPPort(root.text);
}
}
}
10 changes: 10 additions & 0 deletions src/qml/models/nodemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,13 @@ void NodeModel::ConnectToNumConnectionsChangedSignal()
setNumOutboundPeers(new_num_peers.outbound_full_relay + new_num_peers.block_relay);
});
}

bool NodeModel::validateProxyAddress(QString proxy_address)
{
return m_node.validateProxyAddress(proxy_address.toStdString());
}

QString NodeModel::defaultProxyAddress()
{
return QString::fromStdString(m_node.defaultProxyAddress());
}
3 changes: 3 additions & 0 deletions src/qml/models/nodemodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ class NodeModel : public QObject
void startShutdownPolling();
void stopShutdownPolling();

Q_INVOKABLE bool validateProxyAddress(QString proxy_address);
Q_INVOKABLE QString defaultProxyAddress();

public Q_SLOTS:
void initializeResult(bool success, interfaces::BlockAndHeaderTipInfo tip_info);

Expand Down

0 comments on commit 5e227d8

Please sign in to comment.