mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
|
|
#ifndef IPSPLITTUNNELINGCONTROLLER_H
|
||
|
|
#define IPSPLITTUNNELINGCONTROLLER_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include <QVector>
|
||
|
|
#include <QMap>
|
||
|
|
#include <QPair>
|
||
|
|
#include <QStringList>
|
||
|
|
#include <QJsonDocument>
|
||
|
|
#include <QJsonArray>
|
||
|
|
#include <QHostInfo>
|
||
|
|
|
||
|
|
#include "core/utils/errorCodes.h"
|
||
|
|
#include "core/utils/routeModes.h"
|
||
|
|
#include "core/utils/commonStructs.h"
|
||
|
|
#include "core/repositories/secureAppSettingsRepository.h"
|
||
|
|
|
||
|
|
using namespace amnezia;
|
||
|
|
|
||
|
|
class IpSplitTunnelingController : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit IpSplitTunnelingController(SecureAppSettingsRepository* appSettingsRepository, QObject* parent = nullptr);
|
||
|
|
|
||
|
|
bool addSite(const QString &hostname);
|
||
|
|
void addSites(const QMap<QString, QString> &sites, bool replaceExisting);
|
||
|
|
bool removeSite(const QString &hostname);
|
||
|
|
void removeSites();
|
||
|
|
void setRouteMode(RouteMode routeMode);
|
||
|
|
void toggleSplitTunneling(bool enabled);
|
||
|
|
|
||
|
|
RouteMode getRouteMode() const;
|
||
|
|
bool isSplitTunnelingEnabled() const;
|
||
|
|
QVector<QPair<QString, QString>> getCurrentSites() const;
|
||
|
|
|
||
|
|
bool importSitesFromJson(const QByteArray& jsonData, bool replaceExisting, QString &errorMessage);
|
||
|
|
QByteArray exportSitesToJson() const;
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
void onHostResolved(const QHostInfo &hostInfo);
|
||
|
|
|
||
|
|
private:
|
||
|
|
void fillSites();
|
||
|
|
bool addSiteInternal(const QString &hostname, const QString &ip);
|
||
|
|
QString normalizeHostname(const QString &hostname) const;
|
||
|
|
bool validateHostname(const QString &hostname) const;
|
||
|
|
void processSiteAfterResolve(const QString &hostname, const QString &ip);
|
||
|
|
void processSite(const QString &hostname, const QString &ip);
|
||
|
|
|
||
|
|
SecureAppSettingsRepository* m_appSettingsRepository;
|
||
|
|
RouteMode m_currentRouteMode;
|
||
|
|
QVector<QPair<QString, QString>> m_sites;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // IPSPLITTUNNELINGCONTROLLER_H
|
||
|
|
|