mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
* There's a common issue of building iOS apps on Qt 6.8 because of new introduced ffmpeg dependency in multimedia Qt package ref: https://community.esri.com/t5/qt-maps-sdk-questions/build-failure-on-ios-with-qt-6-8/m-p/1548701#M5339 * Cmake related changes * Source code changes * Various entitlements * Ci-cd config update * Resources changes * Submodules updated * Remove me * QtWidget exclusion omitted * Distribution errors fixed * Outdated files deleted * macos_ne cmake fixed * fix: update provisioning profile specifiers for macOS network extension * fix: update provisioning profile specifiers and code sign flags for macOS build * Revert me (temporary 3rd-build commit pointer) * fix: Welcome screen fix * fix: ci/cd hanging forever fix * fix: Fixed error popup on macos on file save * refactor: rename networkextension target to AmneziaVPNNetworkExtension in macos build configuration * feat: add autostart support for Mac App Store builds on macOS Fixes: QA-8 * feat: add debug logging to Autostart functionality on macOS * Revert "feat: add autostart support for Mac App Store builds on macOS" This reverts commit 3bd25656fb4986d01e5bd6dd265f7279a73bd2a8. * feat: add platform-specific close window behavior for macOS App Store build with Network Extension Closes: QA-12 * When the application starts with "Start minimized" enabled on macOS (especially the sandboxed App-Store build compiled with MACOS_NE), fully hiding the window prevents it from being restored by clicking the Dock icon. The proper behaviour is to start the window in the *minimized* state instead. That way the window is still part of the window list and the system automatically brings it back when the user clicks the Dock icon, replicating the native experience. On the other platforms we keep the old behaviour (hide the window completely and rely on the tray icon), therefore we switch at runtime by checking the current OS. Closes: QA-7 Closes: QA-8 * Revert "When the application starts with "Start minimized" enabled on macOS (especially the" This reverts commit 7b0d17987cdfdbc4cedc3822bf3fd2e4973da452. * feat: MACOS_NE systray menu support * feat: add macOS notification handler and install event filter on main window * feat: implement custom close behavior for Amnezia application on different platforms * fix: update provisioning profile specifiers for macos builds * fix: Fatal error in logs CLI-216 * fix: disabled unavailable on macos ne service logs * fix: dock icon now hides only when window is closed; menubar icon shows always Initial state of the docker icon to be presented follows "Start minimized" setting in app settings. * temp-fix: temporary disable all OpenVPN options of VPN on MACOS_NE since it's not working yet. * fix: build script updated * feat: add macOS NE build workflow to GitHub Actions * fix: Not working Auto start toggle is hidden * fix: Log spamming during xray connection fixed * 3rd-prebuild points to commit that stores macos_ne universal binaries. * fix: missing native dependency on linking stage fixed * chore: update link to submodule --------- Co-authored-by: vladimir.kuznetsov <nethiuswork@gmail.com>
255 lines
7.8 KiB
C++
255 lines
7.8 KiB
C++
#include "amnezia_application.h"
|
|
|
|
#include <QClipboard>
|
|
#include <QFontDatabase>
|
|
#include <QLocalServer>
|
|
#include <QLocalSocket>
|
|
#include <QMimeData>
|
|
#include <QQuickItem>
|
|
#include <QQuickStyle>
|
|
#include <QResource>
|
|
#include <QStandardPaths>
|
|
#include <QTextDocument>
|
|
#include <QTimer>
|
|
#include <QTranslator>
|
|
#include <QEvent>
|
|
|
|
#include "logger.h"
|
|
#include "ui/controllers/pageController.h"
|
|
#include "ui/models/installedAppsModel.h"
|
|
#include "version.h"
|
|
|
|
#include "platforms/ios/QRCodeReaderBase.h"
|
|
|
|
#include "protocols/qml_register_protocols.h"
|
|
#include <QtQuick/QQuickWindow> // for QQuickWindow
|
|
#include <QWindow> // for qobject_cast<QWindow*>
|
|
|
|
AmneziaApplication::AmneziaApplication(int &argc, char *argv[]) : AMNEZIA_BASE_CLASS(argc, argv)
|
|
{
|
|
setQuitOnLastWindowClosed(false);
|
|
|
|
// Fix config file permissions
|
|
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
|
|
{
|
|
QSettings s(ORGANIZATION_NAME, APPLICATION_NAME);
|
|
s.setValue("permFixed", true);
|
|
}
|
|
|
|
QString configLoc1 = QStandardPaths::standardLocations(QStandardPaths::ConfigLocation).first() + "/" + ORGANIZATION_NAME + "/"
|
|
+ APPLICATION_NAME + ".conf";
|
|
QFile::setPermissions(configLoc1, QFileDevice::ReadOwner | QFileDevice::WriteOwner);
|
|
|
|
QString configLoc2 = QStandardPaths::standardLocations(QStandardPaths::ConfigLocation).first() + "/" + ORGANIZATION_NAME + "/"
|
|
+ APPLICATION_NAME + "/" + APPLICATION_NAME + ".conf";
|
|
QFile::setPermissions(configLoc2, QFileDevice::ReadOwner | QFileDevice::WriteOwner);
|
|
#endif
|
|
|
|
m_settings = std::shared_ptr<Settings>(new Settings);
|
|
m_nam = new QNetworkAccessManager(this);
|
|
}
|
|
|
|
AmneziaApplication::~AmneziaApplication()
|
|
{
|
|
if (m_vpnConnection) {
|
|
QMetaObject::invokeMethod(m_vpnConnection.get(), "disconnectFromVpn", Qt::QueuedConnection);
|
|
QMetaObject::invokeMethod(m_vpnConnection.get(), "deleteLater", Qt::QueuedConnection);
|
|
}
|
|
|
|
m_vpnConnectionThread.quit();
|
|
|
|
if (!m_vpnConnectionThread.wait(5000)) {
|
|
m_vpnConnectionThread.terminate();
|
|
m_vpnConnectionThread.wait();
|
|
}
|
|
|
|
if (m_engine) {
|
|
QObject::disconnect(m_engine, 0, 0, 0);
|
|
delete m_engine;
|
|
}
|
|
}
|
|
|
|
void AmneziaApplication::init()
|
|
{
|
|
m_engine = new QQmlApplicationEngine;
|
|
|
|
const QUrl url(QStringLiteral("qrc:/ui/qml/main2.qml"));
|
|
QObject::connect(
|
|
m_engine, &QQmlApplicationEngine::objectCreated, this,
|
|
[this, url](QObject *obj, const QUrl &objUrl) {
|
|
if (!obj && url == objUrl) {
|
|
QCoreApplication::exit(-1);
|
|
return;
|
|
}
|
|
// install filter on main window
|
|
if (auto win = qobject_cast<QQuickWindow*>(obj)) {
|
|
win->installEventFilter(this);
|
|
win->show();
|
|
}
|
|
},
|
|
Qt::QueuedConnection);
|
|
|
|
m_engine->rootContext()->setContextProperty("Debug", &Logger::Instance());
|
|
|
|
#ifdef MACOS_NE
|
|
m_engine->rootContext()->setContextProperty("IsMacOsNeBuild", true);
|
|
#else
|
|
m_engine->rootContext()->setContextProperty("IsMacOsNeBuild", false);
|
|
#endif
|
|
|
|
m_vpnConnection.reset(new VpnConnection(m_settings));
|
|
m_vpnConnection->moveToThread(&m_vpnConnectionThread);
|
|
m_vpnConnectionThread.start();
|
|
|
|
m_coreController.reset(new CoreController(m_vpnConnection, m_settings, m_engine));
|
|
|
|
m_engine->addImportPath("qrc:/ui/qml/Modules/");
|
|
m_engine->load(url);
|
|
|
|
m_coreController->setQmlRoot();
|
|
|
|
bool enabled = m_settings->isSaveLogs();
|
|
#ifndef Q_OS_ANDROID
|
|
if (enabled) {
|
|
if (!Logger::init(false)) {
|
|
qWarning() << "Initialization of debug subsystem failed";
|
|
}
|
|
}
|
|
#endif
|
|
Logger::setServiceLogsEnabled(enabled);
|
|
|
|
#ifdef Q_OS_WIN //TODO
|
|
if (m_parser.isSet("a"))
|
|
m_coreController->pageController()->showOnStartup();
|
|
else
|
|
emit m_coreController->pageController()->raiseMainWindow();
|
|
#else
|
|
m_coreController->pageController()->showOnStartup();
|
|
#endif
|
|
|
|
// Android TextArea clipboard workaround
|
|
// Text from TextArea always has "text/html" mime-type:
|
|
// /qt/6.6.1/Src/qtdeclarative/src/quick/items/qquicktextcontrol.cpp:1865
|
|
// Next, html is created for this mime-type:
|
|
// /qt/6.6.1/Src/qtdeclarative/src/quick/items/qquicktextcontrol.cpp:1885
|
|
// And this html goes to the Androids clipboard, i.e. text from TextArea is always copied as richText:
|
|
// /qt/6.6.1/Src/qtbase/src/plugins/platforms/android/androidjniclipboard.cpp:46
|
|
// So we catch all the copies to the clipboard and clear them from "text/html"
|
|
#ifdef Q_OS_ANDROID
|
|
connect(QGuiApplication::clipboard(), &QClipboard::dataChanged, []() {
|
|
auto clipboard = QGuiApplication::clipboard();
|
|
if (clipboard->mimeData()->hasHtml()) {
|
|
clipboard->setText(clipboard->text());
|
|
}
|
|
});
|
|
#endif
|
|
}
|
|
|
|
void AmneziaApplication::registerTypes()
|
|
{
|
|
qRegisterMetaType<ServerCredentials>("ServerCredentials");
|
|
|
|
qRegisterMetaType<DockerContainer>("DockerContainer");
|
|
qRegisterMetaType<TransportProto>("TransportProto");
|
|
qRegisterMetaType<Proto>("Proto");
|
|
qRegisterMetaType<ServiceType>("ServiceType");
|
|
|
|
declareQmlProtocolEnum();
|
|
declareQmlContainerEnum();
|
|
|
|
qmlRegisterType<QRCodeReader>("QRCodeReader", 1, 0, "QRCodeReader");
|
|
|
|
m_containerProps.reset(new ContainerProps());
|
|
qmlRegisterSingletonInstance("ContainerProps", 1, 0, "ContainerProps", m_containerProps.get());
|
|
|
|
m_protocolProps.reset(new ProtocolProps());
|
|
qmlRegisterSingletonInstance("ProtocolProps", 1, 0, "ProtocolProps", m_protocolProps.get());
|
|
|
|
qmlRegisterSingletonType(QUrl("qrc:/ui/qml/Filters/ContainersModelFilters.qml"), "ContainersModelFilters", 1, 0,
|
|
"ContainersModelFilters");
|
|
|
|
qmlRegisterType<InstalledAppsModel>("InstalledAppsModel", 1, 0, "InstalledAppsModel");
|
|
|
|
Vpn::declareQmlVpnConnectionStateEnum();
|
|
PageLoader::declareQmlPageEnum();
|
|
}
|
|
|
|
void AmneziaApplication::loadFonts()
|
|
{
|
|
QQuickStyle::setStyle("Basic");
|
|
|
|
QFontDatabase::addApplicationFont(":/fonts/pt-root-ui_vf.ttf");
|
|
}
|
|
|
|
bool AmneziaApplication::parseCommands()
|
|
{
|
|
m_parser.setApplicationDescription(APPLICATION_NAME);
|
|
m_parser.addHelpOption();
|
|
m_parser.addVersionOption();
|
|
|
|
QCommandLineOption c_autostart { { "a", "autostart" }, "System autostart" };
|
|
m_parser.addOption(c_autostart);
|
|
|
|
QCommandLineOption c_cleanup { { "c", "cleanup" }, "Cleanup logs" };
|
|
m_parser.addOption(c_cleanup);
|
|
|
|
m_parser.process(*this);
|
|
|
|
if (m_parser.isSet(c_cleanup)) {
|
|
Logger::cleanUp();
|
|
QTimer::singleShot(100, this, [this] { quit(); });
|
|
exec();
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
#if !defined(Q_OS_ANDROID) && !defined(Q_OS_IOS) && !defined(MACOS_NE)
|
|
void AmneziaApplication::startLocalServer() {
|
|
const QString serverName("AmneziaVPNInstance");
|
|
QLocalServer::removeServer(serverName);
|
|
|
|
QLocalServer *server = new QLocalServer(this);
|
|
server->listen(serverName);
|
|
|
|
QObject::connect(server, &QLocalServer::newConnection, this, [server, this]() {
|
|
if (server) {
|
|
QLocalSocket *clientConnection = server->nextPendingConnection();
|
|
clientConnection->deleteLater();
|
|
}
|
|
emit m_coreController->pageController()->raiseMainWindow(); //TODO
|
|
});
|
|
}
|
|
#endif
|
|
|
|
bool AmneziaApplication::eventFilter(QObject *watched, QEvent *event)
|
|
{
|
|
if (event->type() == QEvent::Close) {
|
|
#if defined(Q_OS_ANDROID) || defined(Q_OS_IOS)
|
|
quit();
|
|
#else
|
|
if (m_coreController && m_coreController->pageController()) {
|
|
m_coreController->pageController()->hideMainWindow();
|
|
}
|
|
#endif
|
|
return true; // eat the close
|
|
}
|
|
// call base QObject::eventFilter
|
|
return QObject::eventFilter(watched, event);
|
|
}
|
|
|
|
QQmlApplicationEngine *AmneziaApplication::qmlEngine() const
|
|
{
|
|
return m_engine;
|
|
}
|
|
|
|
QNetworkAccessManager *AmneziaApplication::networkManager()
|
|
{
|
|
return m_nam;
|
|
}
|
|
|
|
QClipboard *AmneziaApplication::getClipboard()
|
|
{
|
|
return this->clipboard();
|
|
}
|