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
251 lines
6.2 KiB
C++
251 lines
6.2 KiB
C++
#include "pageController.h"
|
|
|
|
#include "ui/utils/converter.h"
|
|
#include "core/utils/errorStrings.h"
|
|
#if defined(MACOS_NE)
|
|
#include "platforms/ios/ios_controller.h"
|
|
#endif
|
|
|
|
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS) || defined(MACOS_NE)
|
|
#include <QGuiApplication>
|
|
#else
|
|
#include <QApplication>
|
|
#endif
|
|
|
|
#ifdef Q_OS_ANDROID
|
|
#include "platforms/android/android_controller.h"
|
|
#endif
|
|
#if defined Q_OS_MAC
|
|
#include "ui/utils/macosUtil.h"
|
|
#endif
|
|
|
|
PageController::PageController(ServersController* serversController, SettingsController* settingsController,
|
|
QObject *parent)
|
|
: QObject(parent), m_serversController(serversController), m_settingsController(settingsController)
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
auto initialPageNavigationBarColor = getInitialPageNavigationBarColor();
|
|
AndroidController::instance()->setNavigationBarColor(initialPageNavigationBarColor);
|
|
|
|
connect(AndroidController::instance(), &AndroidController::imeInsetsChanged, this, [this](int heightDp) {
|
|
m_imeHeight = heightDp;
|
|
emit imeHeightChanged(heightDp);
|
|
emit safeAreaBottomMarginChanged();
|
|
});
|
|
connect(AndroidController::instance(), &AndroidController::systemBarsInsetsChanged, this, [this](int navBarHeightDp, int statusBarHeightDp) {
|
|
m_cachedNavigationBarHeight = navBarHeightDp;
|
|
m_cachedStatusBarHeight = statusBarHeightDp;
|
|
emit safeAreaBottomMarginChanged();
|
|
emit safeAreaTopMarginChanged();
|
|
});
|
|
#endif
|
|
|
|
#if defined Q_OS_MACX
|
|
connect(this, &PageController::raiseMainWindow, []() {
|
|
setDockIconVisible(true);
|
|
});
|
|
connect(this, &PageController::hideMainWindow, []() {
|
|
setDockIconVisible(false);
|
|
});
|
|
#endif
|
|
|
|
connect(this, qOverload<ErrorCode>(&PageController::showErrorMessage), this, &PageController::onShowErrorMessage);
|
|
|
|
m_isTriggeredByConnectButton = false;
|
|
}
|
|
|
|
bool PageController::isStartPageVisible()
|
|
{
|
|
return m_serversController->getServersCount() == 0;
|
|
}
|
|
|
|
QString PageController::getPagePath(PageLoader::PageEnum page)
|
|
{
|
|
QMetaEnum metaEnum = QMetaEnum::fromType<PageLoader::PageEnum>();
|
|
QString pageName = metaEnum.valueToKey(static_cast<int>(page));
|
|
return "qrc:/ui/qml/Pages2/" + pageName + ".qml";
|
|
}
|
|
|
|
void PageController::closeWindow()
|
|
{
|
|
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
|
|
qApp->quit();
|
|
#else
|
|
emit hideMainWindow();
|
|
#endif
|
|
}
|
|
|
|
void PageController::hideWindow()
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
AndroidController::instance()->minimizeApp();
|
|
#endif
|
|
}
|
|
|
|
void PageController::keyPressEvent(Qt::Key key)
|
|
{
|
|
switch (key) {
|
|
case Qt::Key_Back:
|
|
case Qt::Key_Escape: {
|
|
if (m_drawerDepth) {
|
|
emit closeTopDrawer();
|
|
decrementDrawerDepth();
|
|
} else {
|
|
emit escapePressed();
|
|
}
|
|
break;
|
|
}
|
|
default: return;
|
|
}
|
|
}
|
|
|
|
unsigned int PageController::getInitialPageNavigationBarColor()
|
|
{
|
|
if (m_serversController->getServersCount()) {
|
|
return 0xFF1C1D21;
|
|
} else {
|
|
return 0xFF0E0E11;
|
|
}
|
|
}
|
|
|
|
void PageController::updateNavigationBarColor(const int color)
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
AndroidController::instance()->setNavigationBarColor(color);
|
|
#endif
|
|
}
|
|
|
|
void PageController::showOnStartup()
|
|
{
|
|
if (!m_settingsController->isStartMinimizedEnabled()) {
|
|
emit raiseMainWindow();
|
|
} else {
|
|
#if defined(Q_OS_WIN) || (defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID))
|
|
emit hideMainWindow();
|
|
#elif defined(Q_OS_MACX)
|
|
setDockIconVisible(false);
|
|
#endif
|
|
}
|
|
}
|
|
|
|
bool PageController::isTriggeredByConnectButton()
|
|
{
|
|
return m_isTriggeredByConnectButton;
|
|
}
|
|
|
|
void PageController::setTriggeredByConnectButton(bool trigger)
|
|
{
|
|
m_isTriggeredByConnectButton = trigger;
|
|
}
|
|
|
|
void PageController::closeApplication()
|
|
{
|
|
qApp->quit();
|
|
}
|
|
|
|
void PageController::setDrawerDepth(const int depth)
|
|
{
|
|
if (depth >= 0) {
|
|
m_drawerDepth = depth;
|
|
}
|
|
}
|
|
|
|
int PageController::getDrawerDepth() const
|
|
{
|
|
return m_drawerDepth;
|
|
}
|
|
|
|
int PageController::incrementDrawerDepth()
|
|
{
|
|
return ++m_drawerDepth;
|
|
}
|
|
|
|
int PageController::decrementDrawerDepth()
|
|
{
|
|
if (m_drawerDepth == 0) {
|
|
return m_drawerDepth;
|
|
} else {
|
|
return --m_drawerDepth;
|
|
}
|
|
}
|
|
|
|
bool PageController::isEdgeToEdgeEnabled()
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
if (!m_edgeToEdgeCached) {
|
|
m_cachedEdgeToEdgeEnabled = AndroidController::instance()->isEdgeToEdgeEnabled();
|
|
m_edgeToEdgeCached = true;
|
|
}
|
|
return m_cachedEdgeToEdgeEnabled;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
int PageController::getStatusBarHeight()
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
if (m_cachedStatusBarHeight < 0) {
|
|
m_cachedStatusBarHeight = AndroidController::instance()->getStatusBarHeight();
|
|
}
|
|
return m_cachedStatusBarHeight;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
int PageController::getNavigationBarHeight()
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
if (m_cachedNavigationBarHeight < 0) {
|
|
m_cachedNavigationBarHeight = AndroidController::instance()->getNavigationBarHeight();
|
|
}
|
|
return m_cachedNavigationBarHeight;
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
int PageController::getSafeAreaTopMargin()
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
if (isEdgeToEdgeEnabled()) {
|
|
int height = getStatusBarHeight();
|
|
int result = height > 0 ? height : 40;
|
|
return result;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
int PageController::getSafeAreaBottomMargin()
|
|
{
|
|
#ifdef Q_OS_ANDROID
|
|
if (isEdgeToEdgeEnabled()) {
|
|
if (m_imeHeight > 0) {
|
|
return 0;
|
|
}
|
|
|
|
int height = getNavigationBarHeight();
|
|
int result = height > 0 ? height : 56;
|
|
return result;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
int PageController::getImeHeight()
|
|
{
|
|
return m_imeHeight;
|
|
}
|
|
|
|
void PageController::onShowErrorMessage(ErrorCode errorCode)
|
|
{
|
|
const auto fullErrorMessage = errorString(errorCode);
|
|
const auto errorMessage = fullErrorMessage.mid(fullErrorMessage.indexOf(". ") + 1); // remove ErrorCode %1.
|
|
const auto errorUrl = QStringLiteral("troubleshooting/error-codes/#error-%1-%2").arg(static_cast<int>(errorCode)).arg(utils::enumToString(errorCode).toLower());
|
|
const auto fullMessage = QStringLiteral("<a href=\"%1\" style=\"color: #FBB26A;\">ErrorCode: %2</a>. %3").arg(errorUrl).arg(static_cast<int>(errorCode)).arg(errorMessage);
|
|
|
|
emit showErrorMessage(fullMessage);
|
|
}
|