mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
847bb6923b
* refactor: move business logic from servers model * refactor: move containersModel initialization * refactor: added protocol ui controller and removed settings class from protocols model * refactor: moved cli management to separate controller * refactor: moved app split to separate controller * refactor: moved site split to separate controller * refactor: moved allowed dns to separate controller * refactor: moved language logic to separate ui controller * refactor: removed Settings from devices model * refactor: moved configs and services api logit to separate core controller * refactor: added a layer with a repository between the storage and controllers * refactor: use child parent system instead of smart pointers for controllers and models initialization * refactor: moved install functions from server controller to install controller * refactor: install controller refactoring * chore: renamed exportController to exportUiController * refactor: separate export controller * refactor: removed VpnConfigurationsController * chore: renamed ServerController to SshSession * refactor: replaced ServerController to SshSession * chore: moved qml controllers to separate folder * chore: include fixes * chore: moved utils from core root to core/utils * chore: include fixes * chore: rename core/utils files to camelCase foramt * chore: include fixes * chore: moved some utils to api and selfhosted folders * chore: include fixes * chore: remove unused file * chore: moved serialization folder to core/utils * chore: include fixes * chore: moved some files from client root to core/utils * chore: include fixes * chore: moved ui utils to ui/utils folder * chore: include fixes * chore: move utils from root to ui/utils * chore: include fixes * chore: moved configurators to core/configurators * chore: include fixes * refactor: moved iap logic from ui controller to core * refactor: moved remaining core logic from ApiConfigsController to SubscriptionController * chore: rename apiNewsController to apiNewsUiController * refactor: moved core logic from news ui controller to core * chore: renamed apiConfigsController to subscriptionUiController * chore: include fixes * refactor: merge ApiSettingsController with SubscriptionUiController * chore: moved ui selfhosted controllers to separate folder * chore: include fixes * chore: rename connectionController to connectiomUiController * refactor: moved core logic from connectionUiController * chore: rename settingsController to settingsUiController * refactor: move core logic from settingsUiController * refactor: moved core controller signal/slot connections to separate class * fix: newsController fixes after refactoring * chore: rename model to camelCase * chore: include fixes * chore: remove unused code * chore: move selfhosted core to separate folder * chore: include fixes * chore: rename importController to importUiController * refactor: move core logic from importUiController * chore: minor fixes * chore: remove prem v1 migration * refactor: remove openvpn over cloak and openvpn over shadowsocks * refactor: removed protocolsForContainer function * refactor: add core models * refactor: replace json with c++ structs for server config * refactor: move getDnsPair to ServerConfigUtils * feat: add admin selfhosted config export test * feat: add multi import test * refactor: use coreController for tests * feat: add few simple tests * chore: qrepos in all core controllers * feat: add test for settings * refactor: remove repo dependency from configurators * chore: moved protocols to core folder * chore: include fixes * refactor: moved containersDefs, defs, apiDefs, protocolsDefs to different places * chore: include fixes * chore: build fixes * chore: build fixes * refactor: remove q repo and interface repo * feat: add test for ui servers model and controller * chore: renamed to camelCase * chore: include fixes * refactor: moved core logic from sites ui controller * fix: fixed api config processing * fix: fixed processed server index processing * refactor: protocol models now use c++ structs instead of json configs * refactor: servers model now use c++ struct instead of json config * fix: fixed default server index processing * fix: fix logs init * fix: fix secure settings load keys * chore: build fixes * fix: fixed clear settings * fix: fixed restore backup * fix: sshSession usage * fix: fixed export functions signatures * fix: return missing part from buildContainerWorker * fix: fixed server description on page home * refactor: add container config helpers functions * refactor: c++ structs instead of json * chore: add dns protocol config struct * refactor: move config utils functions to config structs * feat: add test for selfhosted server setup * refactor: separate resources.qrc * fix: fixed server rename * chore: return nameOverriddenByUser * fix: build fixes * fix: fixed models init * refactor: cleanup models usage * fix: fixed models init * chore: cleanup connections and functions signatures * chore: cleanup updateModel calls * feat: added cache to servers repo * chore: cleanup unused functions * chore: ssxray processing * chore: remove transportProtoWithDefault and portWithDefault functions * chore: removed proto types any and l2tp * refactor: moved some constants * fix: fixed native configs export * refactor: remove json from processConfigWith functions * fix: fixed processed server index usage * fix: qml warning fixes * chore: merge fixes * chore: update tests * fix: fixed xray config processing * fix: fixed split tunneling processing * chore: rename sites controllers and model * chore: rename fixes * chore: minor fixes * chore: remove ability to load backup from "file with connection settings" button * fix: fixed api device revoke * fix: remove full model update when renaming a user * fix: fixed premium/free server rename * fix: fixed selfhosted new server install * fix: fixed updateContainer function * fix: fixed revoke for external premium configs * feat: add native configs qr processing * chore: codestyle fixes * fix: fixed admin config create * chore: again remove ability to load backup from "file with connection settings" button * chore: minor fixes * fix: fixed variables initialization * fix: fixed qml imports * fix: minor fixes * fix: fix vpnConnection function calls * feat: add buckup error handling * fix: fixed admin config revok * fix: fixed selfhosted awg installation * fix: ad visability * feat: add empty check for primary dns * chore: minor fixes
454 lines
12 KiB
C++
454 lines
12 KiB
C++
#include "secureAppSettingsRepository.h"
|
|
|
|
#include <QJsonDocument>
|
|
#include <QJsonArray>
|
|
#include <QUuid>
|
|
|
|
#include "core/utils/errorCodes.h"
|
|
#include "core/utils/routeModes.h"
|
|
#include "core/utils/commonStructs.h"
|
|
#include "core/utils/api/apiEnums.h"
|
|
#include "core/utils/constants/apiKeys.h"
|
|
#include "core/utils/constants/apiConstants.h"
|
|
#include "core/models/serverConfig.h"
|
|
#include "core/utils/networkUtilities.h"
|
|
|
|
using namespace amnezia;
|
|
|
|
namespace {
|
|
constexpr char gatewayEndpoint[] = "http://gw.amnezia.org:80/";
|
|
}
|
|
|
|
SecureAppSettingsRepository::SecureAppSettingsRepository(SecureQSettings* settings, QObject *parent)
|
|
: QObject(parent), m_settings(settings)
|
|
{
|
|
QString storedEndpoint = value("Conf/gatewayEndpoint", gatewayEndpoint).toString();
|
|
m_gatewayEndpoint = storedEndpoint.isEmpty() ? gatewayEndpoint : storedEndpoint;
|
|
}
|
|
|
|
QVariant SecureAppSettingsRepository::value(const QString &key, const QVariant &defaultValue) const
|
|
{
|
|
return m_settings->value(key, defaultValue);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setValue(const QString &key, const QVariant &value)
|
|
{
|
|
m_settings->setValue(key, value);
|
|
}
|
|
|
|
QLocale SecureAppSettingsRepository::getAppLanguage() const
|
|
{
|
|
QString localeStr = value("Conf/appLanguage", QLocale::system().name()).toString();
|
|
return QLocale(localeStr);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setAppLanguage(QLocale locale)
|
|
{
|
|
setValue("Conf/appLanguage", locale.name());
|
|
emit appLanguageChanged(locale);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::useAmneziaDns() const
|
|
{
|
|
return value("Conf/useAmneziaDns", true).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setUseAmneziaDns(bool enabled)
|
|
{
|
|
setValue("Conf/useAmneziaDns", enabled);
|
|
emit useAmneziaDnsChanged(enabled);
|
|
}
|
|
|
|
QStringList SecureAppSettingsRepository::getAllowedDnsServers() const
|
|
{
|
|
return value("Conf/allowedDnsServers").toStringList();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setAllowedDnsServers(const QStringList &servers)
|
|
{
|
|
setValue("Conf/allowedDnsServers", servers);
|
|
emit allowedDnsServersChanged(servers);
|
|
}
|
|
|
|
QString SecureAppSettingsRepository::primaryDns() const
|
|
{
|
|
constexpr char cloudFlareNs1[] = "1.1.1.1";
|
|
return value("Conf/primaryDns", cloudFlareNs1).toString();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setPrimaryDns(const QString &dns)
|
|
{
|
|
setValue("Conf/primaryDns", dns);
|
|
}
|
|
|
|
QString SecureAppSettingsRepository::secondaryDns() const
|
|
{
|
|
constexpr char cloudFlareNs2[] = "1.0.0.1";
|
|
return value("Conf/secondaryDns", cloudFlareNs2).toString();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setSecondaryDns(const QString &dns)
|
|
{
|
|
setValue("Conf/secondaryDns", dns);
|
|
}
|
|
|
|
namespace {
|
|
QString routeModeString(RouteMode mode) {
|
|
switch (mode) {
|
|
case RouteMode::VpnAllSites: return "AllSites";
|
|
case RouteMode::VpnOnlyForwardSites: return "ForwardSites";
|
|
case RouteMode::VpnAllExceptSites: return "ExceptSites";
|
|
}
|
|
return QString();
|
|
}
|
|
}
|
|
|
|
RouteMode SecureAppSettingsRepository::routeMode() const
|
|
{
|
|
return static_cast<RouteMode>(value("Conf/routeMode", 0).toInt());
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setRouteMode(RouteMode mode)
|
|
{
|
|
setValue("Conf/routeMode", static_cast<int>(mode));
|
|
emit routeModeChanged(mode);
|
|
}
|
|
|
|
QVariantMap SecureAppSettingsRepository::vpnSites(RouteMode mode) const
|
|
{
|
|
return value("Conf/" + routeModeString(mode)).toMap();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setVpnSites(RouteMode mode, const QVariantMap &sites)
|
|
{
|
|
setValue("Conf/" + routeModeString(mode), sites);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::addVpnSite(RouteMode mode, const QString &site, const QString &ip)
|
|
{
|
|
QVariantMap sites = vpnSites(mode);
|
|
if (sites.contains(site) && ip.isEmpty())
|
|
return false;
|
|
|
|
sites.insert(site, ip);
|
|
setVpnSites(mode, sites);
|
|
emit sitesChanged(mode);
|
|
return true;
|
|
}
|
|
|
|
void SecureAppSettingsRepository::addVpnSites(RouteMode mode, const QMap<QString, QString> &sites)
|
|
{
|
|
QVariantMap allSites = vpnSites(mode);
|
|
for (auto i = sites.constBegin(); i != sites.constEnd(); ++i) {
|
|
const QString &site = i.key();
|
|
const QString &ip = i.value();
|
|
|
|
if (allSites.contains(site) && allSites.value(site) == ip)
|
|
continue;
|
|
|
|
allSites.insert(site, ip);
|
|
}
|
|
|
|
setVpnSites(mode, allSites);
|
|
emit sitesChanged(mode);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::removeVpnSite(RouteMode mode, const QString &site)
|
|
{
|
|
QVariantMap sites = vpnSites(mode);
|
|
if (!sites.contains(site))
|
|
return;
|
|
|
|
sites.remove(site);
|
|
setVpnSites(mode, sites);
|
|
emit sitesChanged(mode);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::removeAllVpnSites(RouteMode mode)
|
|
{
|
|
setVpnSites(mode, QVariantMap());
|
|
emit sitesChanged(mode);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isSitesSplitTunnelingEnabled() const
|
|
{
|
|
return value("Conf/sitesSplitTunnelingEnabled", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setSitesSplitTunnelingEnabled(bool enabled)
|
|
{
|
|
setValue("Conf/sitesSplitTunnelingEnabled", enabled);
|
|
emit sitesSplitTunnelingEnabledChanged(enabled);
|
|
}
|
|
|
|
namespace {
|
|
QString appsRouteModeString(AppsRouteMode mode) {
|
|
switch (mode) {
|
|
case AppsRouteMode::VpnAllApps: return "AllApps";
|
|
case AppsRouteMode::VpnOnlyForwardApps: return "ForwardApps";
|
|
case AppsRouteMode::VpnAllExceptApps: return "ExceptApps";
|
|
}
|
|
return QString();
|
|
}
|
|
}
|
|
|
|
AppsRouteMode SecureAppSettingsRepository::appsRouteMode() const
|
|
{
|
|
return static_cast<AppsRouteMode>(value("Conf/appsRouteMode", 0).toInt());
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setAppsRouteMode(AppsRouteMode mode)
|
|
{
|
|
setValue("Conf/appsRouteMode", static_cast<int>(mode));
|
|
emit appsRouteModeChanged(mode);
|
|
}
|
|
|
|
QVector<InstalledAppInfo> SecureAppSettingsRepository::vpnApps(AppsRouteMode mode) const
|
|
{
|
|
QVector<InstalledAppInfo> apps;
|
|
auto appsArray = value("Conf/" + appsRouteModeString(mode)).toJsonArray();
|
|
for (const auto &app : appsArray) {
|
|
InstalledAppInfo appInfo;
|
|
appInfo.appName = app.toObject().value("appName").toString();
|
|
appInfo.packageName = app.toObject().value("packageName").toString();
|
|
appInfo.appPath = app.toObject().value("appPath").toString();
|
|
|
|
apps.push_back(appInfo);
|
|
}
|
|
return apps;
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setVpnApps(AppsRouteMode mode, const QVector<InstalledAppInfo> &apps)
|
|
{
|
|
QJsonArray appsArray;
|
|
for (const auto &app : apps) {
|
|
QJsonObject appInfo;
|
|
appInfo.insert("appName", app.appName);
|
|
appInfo.insert("packageName", app.packageName);
|
|
appInfo.insert("appPath", app.appPath);
|
|
appsArray.push_back(appInfo);
|
|
}
|
|
setValue("Conf/" + appsRouteModeString(mode), appsArray);
|
|
emit appsChanged(mode);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isAppsSplitTunnelingEnabled() const
|
|
{
|
|
return value("Conf/appsSplitTunnelingEnabled", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setAppsSplitTunnelingEnabled(bool enabled)
|
|
{
|
|
setValue("Conf/appsSplitTunnelingEnabled", enabled);
|
|
emit appsSplitTunnelingEnabledChanged(enabled);
|
|
}
|
|
|
|
QString SecureAppSettingsRepository::getGatewayEndpoint(bool isTestPurchase) const
|
|
{
|
|
if (isTestPurchase) {
|
|
return QString(DEV_AGW_ENDPOINT);
|
|
}
|
|
return m_gatewayEndpoint;
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setGatewayEndpoint(const QString &endpoint)
|
|
{
|
|
m_gatewayEndpoint = endpoint;
|
|
setValue("Conf/gatewayEndpoint", endpoint);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::resetGatewayEndpoint()
|
|
{
|
|
m_gatewayEndpoint = gatewayEndpoint;
|
|
setValue("Conf/gatewayEndpoint", gatewayEndpoint);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setDevGatewayEndpoint()
|
|
{
|
|
m_gatewayEndpoint = QString(DEV_AGW_ENDPOINT);
|
|
setValue("Conf/gatewayEndpoint", DEV_AGW_ENDPOINT);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isDevGatewayEnv(bool isTestPurchase) const
|
|
{
|
|
return isTestPurchase ? true : value("Conf/devGatewayEnv", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::toggleDevGatewayEnv(bool enabled)
|
|
{
|
|
setValue("Conf/devGatewayEnv", enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isKillSwitchEnabled() const
|
|
{
|
|
return value("Conf/killSwitchEnabled", true).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setKillSwitchEnabled(bool enabled)
|
|
{
|
|
setValue("Conf/killSwitchEnabled", enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isStrictKillSwitchEnabled() const
|
|
{
|
|
return value("Conf/strictKillSwitchEnabled", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setStrictKillSwitchEnabled(bool enabled)
|
|
{
|
|
setValue("Conf/strictKillSwitchEnabled", enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isAutoConnect() const
|
|
{
|
|
return value("Conf/autoConnect", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setAutoConnect(bool enabled)
|
|
{
|
|
setValue("Conf/autoConnect", enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isStartMinimized() const
|
|
{
|
|
return value("Conf/startMinimized", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setStartMinimized(bool enabled)
|
|
{
|
|
setValue("Conf/startMinimized", enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isScreenshotsEnabled() const
|
|
{
|
|
return value("Conf/screenshotsEnabled", true).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setScreenshotsEnabled(bool enabled)
|
|
{
|
|
setValue("Conf/screenshotsEnabled", enabled);
|
|
emit screenshotsEnabledChanged(enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isNewsNotifications() const
|
|
{
|
|
return value("Conf/newsNotifications", true).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setNewsNotifications(bool enabled)
|
|
{
|
|
setValue("Conf/newsNotifications", enabled);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isSaveLogs() const
|
|
{
|
|
return value("Conf/saveLogs", false).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setSaveLogs(bool enabled)
|
|
{
|
|
setValue("Conf/saveLogs", enabled);
|
|
emit saveLogsChanged(enabled);
|
|
}
|
|
|
|
QDateTime SecureAppSettingsRepository::getLogEnableDate() const
|
|
{
|
|
return value("Conf/logEnableDate").toDateTime();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setLogEnableDate(const QDateTime &date)
|
|
{
|
|
setValue("Conf/logEnableDate", date);
|
|
}
|
|
|
|
QString SecureAppSettingsRepository::getInstallationUuid(bool createIfNotExists) const
|
|
{
|
|
auto uuid = value("Conf/installationUuid", "").toString();
|
|
if (createIfNotExists && uuid.isEmpty()) {
|
|
uuid = QUuid::createUuid().toString();
|
|
uuid.remove(0, 1);
|
|
uuid.chop(1);
|
|
const_cast<SecureAppSettingsRepository*>(this)->setValue("Conf/installationUuid", uuid);
|
|
} else if (uuid.contains("{") && uuid.contains("}")) {
|
|
uuid.remove(0, 1);
|
|
uuid.chop(1);
|
|
const_cast<SecureAppSettingsRepository*>(this)->setValue("Conf/installationUuid", uuid);
|
|
}
|
|
return uuid;
|
|
}
|
|
|
|
QStringList SecureAppSettingsRepository::getReadNewsIds() const
|
|
{
|
|
return value("News/readIds").toStringList();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setReadNewsIds(const QStringList &ids)
|
|
{
|
|
setValue("News/readIds", ids);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isHomeAdLabelVisible() const
|
|
{
|
|
return value("Conf/homeAdLabelVisible", true).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::disableHomeAdLabel()
|
|
{
|
|
setValue("Conf/homeAdLabelVisible", false);
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::isPremV1MigrationReminderActive() const
|
|
{
|
|
return value("Conf/premV1MigrationReminderActive", true).toBool();
|
|
}
|
|
|
|
void SecureAppSettingsRepository::disablePremV1MigrationReminder()
|
|
{
|
|
setValue("Conf/premV1MigrationReminderActive", false);
|
|
}
|
|
|
|
QByteArray SecureAppSettingsRepository::backupAppConfig() const
|
|
{
|
|
return m_settings->backupAppConfig();
|
|
}
|
|
|
|
bool SecureAppSettingsRepository::restoreAppConfig(const QByteArray &cfg)
|
|
{
|
|
return m_settings->restoreAppConfig(cfg);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::clearSettings()
|
|
{
|
|
auto uuid = getInstallationUuid(false);
|
|
m_settings->clearSettings();
|
|
m_settings->setValue("Conf/installationUuid", uuid);
|
|
emit settingsCleared();
|
|
}
|
|
|
|
QString SecureAppSettingsRepository::nextAvailableServerName() const
|
|
{
|
|
int i = 0;
|
|
bool nameExist = false;
|
|
|
|
do {
|
|
i++;
|
|
nameExist = false;
|
|
QJsonArray servers = QJsonDocument::fromJson(value("Servers/serversList").toByteArray()).array();
|
|
for (const QJsonValue &server : servers) {
|
|
if (server.toObject().value(configKey::description).toString() == QString("Server") + " " + QString::number(i)) {
|
|
nameExist = true;
|
|
break;
|
|
}
|
|
}
|
|
} while (nameExist);
|
|
|
|
return QString("Server") + " " + QString::number(i);
|
|
}
|
|
|
|
void SecureAppSettingsRepository::setInstallationUuid(const QString &uuid)
|
|
{
|
|
m_settings->setValue("Conf/installationUuid", uuid);
|
|
}
|
|
|
|
|