summaryrefslogtreecommitdiff
path: root/controller.cxx
blob: 8354974546ae6432bdde7086af1c6a2dd7d1ed20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <QtQml>
#include <icclient.h>
#include <qicclient.hxx>
#include "controller.hxx"

static Controller* controller;
static QQmlApplicationEngine* engine;
static QString* certFile = nullptr;
using namespace QICClient;
static Client* shop = nullptr;
static Catalog* allProducts = nullptr;

extern "C" {
	void sign_up(char const*, char const*,	void (*)(icclient_response*));
	struct icclient_catalog* catalog(char const*, char const*);
}

Controller::Controller(QObject* parent) : QObject{parent}
{
	controller = this;
	engine = static_cast<QQmlApplicationEngine*>(parent);
	engine->load(QUrl{QStringLiteral("qrc:/main.qml")});
	auto window = engine->rootObjects()[0];
	connect(window, SIGNAL(signUp(QString)), this, SIGNAL(signUp(QString)));
	connect(this, &Controller::signUp, [](QString const& brand) {
#ifdef __ANDROID__
		QString certAsset{CA_BUNDLE};
		certFile = new QString{QDir{
					QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)
				}.absolutePath() % certAsset.remove(0, certAsset.lastIndexOf("/"))};
		QFile{"assets:" % certAsset}.copy(*certFile);
#endif
		sign_up(brand.toLatin1().constData(), certFile ? certFile->toLatin1().constData() : nullptr,
			[](icclient_response* response) {
				QString brand{response->data};
				icclient_free_response(response);
				QString sampleUrl{QString{SECURE_SERVER} % "/" % brand};
				QString imageDir{"/" % brand % "/images"};
				shop = new Client{
					sampleUrl.toLatin1().constData(),
					imageDir.toLatin1().constData(),
					certFile ? certFile->toLatin1().constData() : nullptr
				};
				if (certFile) delete certFile;
				auto window = engine->rootObjects()[0];
				window->setProperty("imageBase", QString{sampleUrl % "/images/"});
				controller->connect(shop, &Client::gotCatalog,
					[imageDir,window](QString const& response) {
						allProducts = new Catalog{catalog(
								response.toLatin1().constData(),
								imageDir.toLatin1().constData())};
						engine->rootContext()->setContextProperty("catalog",
								allProducts);
						QMetaObject::invokeMethod(window, "pushCatalog");
					});
				shop->allProducts();
			}
		);
	});
}

Controller::~Controller()
{
	if (allProducts) delete allProducts;
	if (shop) delete shop;
}