mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* Add in-app purchase methods
* fix: init StoreKit controller on startup
* fix: Add transaction details to StoreKit callbacks
* nullpointer access fixed
* feat: in app purchase for ios
* feat: add IAP product fetching and logging for iOS platform
* feat: iOS Simulator building pipeline made
* feat: add support for multiple IAP product IDs and attempt purchase of the first valid one
* feat: add support for retrieving Base64-encoded app receipt after successful IAP purchase
* refactor: inapp-purchase code cleanup
* feat: iap processing
* refactor: move to storekit 2
* feat: add request to billing
* chore: add ios ifdef
* feat: remove iOS simulator specific code and exclusions
* refactor: remove unused StoreKit 2 transaction observer and simplify IAP product fetching logic
* feat: implement StoreKit 2 for iOS and macOS, add restore purchases functionality
* fix: Restore Purchases button appearance updated
* feat: enhance error handling and duplicate config detection in ApiConfigsController
* feat: add support for Mac OS NE in-app purchases and StoreKitController
* ci-cd fix
* Revert "ci-cd fix"
This reverts commit f22fd7a13b.
---------
Co-authored-by: vladimir.kuznetsov <nethiuswork@gmail.com>
Co-authored-by: vkamn <vk@amnezia.org>
Co-authored-by: spectrum <yyy@amnezia.org>
70 lines
2.5 KiB
C++
70 lines
2.5 KiB
C++
#ifndef APICONFIGSCONTROLLER_H
|
|
#define APICONFIGSCONTROLLER_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "configurators/openvpn_configurator.h"
|
|
#include "ui/models/api/apiServicesModel.h"
|
|
#include "ui/models/servers_model.h"
|
|
|
|
class ApiConfigsController : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ApiConfigsController(const QSharedPointer<ServersModel> &serversModel, const QSharedPointer<ApiServicesModel> &apiServicesModel,
|
|
const std::shared_ptr<Settings> &settings, QObject *parent = nullptr);
|
|
|
|
Q_PROPERTY(QList<QString> qrCodes READ getQrCodes NOTIFY vpnKeyExportReady)
|
|
Q_PROPERTY(int qrCodesCount READ getQrCodesCount NOTIFY vpnKeyExportReady)
|
|
Q_PROPERTY(QString vpnKey READ getVpnKey NOTIFY vpnKeyExportReady)
|
|
|
|
public slots:
|
|
bool exportNativeConfig(const QString &serverCountryCode, const QString &fileName);
|
|
bool revokeNativeConfig(const QString &serverCountryCode);
|
|
bool exportVpnKey(const QString &fileName);
|
|
void prepareVpnKeyExport();
|
|
void copyVpnKeyToClipboard();
|
|
|
|
bool fillAvailableServices();
|
|
bool importSerivceFromAppStore();
|
|
bool restoreSerivceFromAppStore();
|
|
bool importServiceFromGateway();
|
|
bool updateServiceFromGateway(const int serverIndex, const QString &newCountryCode, const QString &newCountryName,
|
|
bool reloadServiceConfig = false);
|
|
bool updateServiceFromTelegram(const int serverIndex);
|
|
bool deactivateDevice(const bool isRemoveEvent);
|
|
bool deactivateExternalDevice(const QString &uuid, const QString &serverCountryCode);
|
|
|
|
bool isConfigValid();
|
|
|
|
void setCurrentProtocol(const QString &protocolName);
|
|
bool isVlessProtocol();
|
|
|
|
signals:
|
|
void errorOccurred(ErrorCode errorCode);
|
|
|
|
void installServerFromApiFinished(const QString &message);
|
|
void changeApiCountryFinished(const QString &message);
|
|
void reloadServerFromApiFinished(const QString &message);
|
|
void updateServerFromApiFinished();
|
|
|
|
void vpnKeyExportReady();
|
|
|
|
private:
|
|
QList<QString> getQrCodes();
|
|
int getQrCodesCount();
|
|
QString getVpnKey();
|
|
|
|
ErrorCode executeRequest(const QString &endpoint, const QJsonObject &apiPayload, QByteArray &responseBody);
|
|
bool installServerFromSubscriptionResponse(const QByteArray &responseBody, ErrorCode *errorOut = nullptr);
|
|
|
|
QList<QString> m_qrCodes;
|
|
QString m_vpnKey;
|
|
|
|
QSharedPointer<ServersModel> m_serversModel;
|
|
QSharedPointer<ApiServicesModel> m_apiServicesModel;
|
|
std::shared_ptr<Settings> m_settings;
|
|
};
|
|
|
|
#endif // APICONFIGSCONTROLLER_H
|