mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-17 08:16:06 +03:00
* refactor: remove serverConfig struct * refactor: add warnings for api v1 configs * refactor: moved the server type definition to a separate namespace * refactor: simplified gateway stacks * fix: fixed server description * fix: fixed postAsync reply usage * fix: fixed validateConfig call * fix: fixed server name in notifications * fix: fixed initPrepareConfigHandler for lagacy configs
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
#ifndef APIV2SERVERCONFIG_H
|
|
#define APIV2SERVERCONFIG_H
|
|
|
|
#include <QJsonObject>
|
|
#include <QMap>
|
|
|
|
#include "core/utils/containerEnum.h"
|
|
#include "core/utils/containers/containerUtils.h"
|
|
#include "core/utils/protocolEnum.h"
|
|
#include "core/models/containerConfig.h"
|
|
#include "core/models/api/apiConfig.h"
|
|
#include "core/models/api/authData.h"
|
|
#include "core/utils/serverConfigUtils.h"
|
|
#include "core/utils/constants/apiKeys.h"
|
|
#include "core/utils/constants/apiConstants.h"
|
|
|
|
namespace amnezia
|
|
{
|
|
|
|
using namespace ContainerEnumNS;
|
|
|
|
struct ApiV2ServerConfig {
|
|
QString description;
|
|
QString displayName;
|
|
QString hostName;
|
|
QMap<DockerContainer, ContainerConfig> containers;
|
|
DockerContainer defaultContainer;
|
|
QString dns1;
|
|
QString dns2;
|
|
|
|
QString name;
|
|
bool nameOverriddenByUser = false;
|
|
int crc;
|
|
int configVersion;
|
|
ApiConfig apiConfig;
|
|
AuthData authData;
|
|
|
|
QString vpnKey() const;
|
|
QString serviceType() const;
|
|
QString serviceProtocol() const;
|
|
bool isPremium() const;
|
|
bool isFree() const;
|
|
bool isExternalPremium() const;
|
|
bool hasContainers() const;
|
|
ContainerConfig containerConfig(DockerContainer container) const;
|
|
QJsonObject toJson() const;
|
|
static ApiV2ServerConfig fromJson(const QJsonObject& json);
|
|
};
|
|
|
|
} // namespace amnezia
|
|
|
|
#endif // APIV2SERVERCONFIG_H
|
|
|