
* Attempt to fix API error 1100 * NSURLSession fake call to exec iOS network settings dialog * use http://captive.apple.com/generate_204 for requesting internet permission * moved MobileUtils to IosController * replaced callbacks with signal-slots in apiController
97 lines
2.3 KiB
Objective-C
97 lines
2.3 KiB
Objective-C
#ifndef IOS_CONTROLLER_H
|
|
#define IOS_CONTROLLER_H
|
|
|
|
#include "protocols/vpnprotocol.h"
|
|
|
|
#ifdef __OBJC__
|
|
#import <Foundation/Foundation.h>
|
|
@class NETunnelProviderManager;
|
|
#endif
|
|
|
|
using namespace amnezia;
|
|
|
|
struct Action
|
|
{
|
|
static const char *start;
|
|
static const char *restart;
|
|
static const char *stop;
|
|
static const char *getTunnelId;
|
|
static const char *getStatus;
|
|
};
|
|
|
|
struct MessageKey
|
|
{
|
|
static const char *action;
|
|
static const char *tunnelId;
|
|
static const char *config;
|
|
static const char *errorCode;
|
|
static const char *host;
|
|
static const char *port;
|
|
static const char *isOnDemand;
|
|
static const char *SplitTunnelType;
|
|
static const char *SplitTunnelSites;
|
|
};
|
|
|
|
class IosController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static IosController *Instance();
|
|
|
|
virtual ~IosController() override = default;
|
|
|
|
bool initialize();
|
|
bool connectVpn(amnezia::Proto proto, const QJsonObject &configuration);
|
|
void disconnectVpn();
|
|
|
|
void vpnStatusDidChange(void *pNotification);
|
|
void vpnConfigurationDidChange(void *pNotification);
|
|
|
|
void getBackendLogs(std::function<void(const QString &)> &&callback);
|
|
void checkStatus();
|
|
|
|
bool shareText(const QStringList &filesToSend);
|
|
QString openFile();
|
|
|
|
void requestInetAccess();
|
|
signals:
|
|
void connectionStateChanged(Vpn::ConnectionState state);
|
|
void bytesChanged(quint64 receivedBytes, quint64 sentBytes);
|
|
void importConfigFromOutside(const QString);
|
|
void importBackupFromOutside(const QString);
|
|
|
|
void finished();
|
|
|
|
protected slots:
|
|
|
|
private:
|
|
explicit IosController();
|
|
|
|
bool setupOpenVPN();
|
|
bool setupCloak();
|
|
bool setupWireGuard();
|
|
bool setupAwg();
|
|
|
|
bool startOpenVPN(const QString &config);
|
|
bool startWireGuard(const QString &jsonConfig);
|
|
|
|
void startTunnel();
|
|
|
|
private:
|
|
void *m_iosControllerWrapper {};
|
|
#ifdef __OBJC__
|
|
NETunnelProviderManager *m_currentTunnel {};
|
|
NSString *m_serverAddress {};
|
|
bool isOurManager(NETunnelProviderManager *manager);
|
|
void sendVpnExtensionMessage(NSDictionary *message, std::function<void(NSDictionary *)> callback = nullptr);
|
|
#endif
|
|
|
|
amnezia::Proto m_proto;
|
|
QJsonObject m_rawConfig;
|
|
QString m_tunnelId;
|
|
uint64_t m_txBytes;
|
|
uint64_t m_rxBytes;
|
|
};
|
|
|
|
#endif // IOS_CONTROLLER_H
|