summaryrefslogtreecommitdiff
path: root/client.cxx
blob: 1dad6fe02144240af5eea4d82dce7eb2f75e244b (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
#include <cstddef>
#include <icclient/client.h>
#include "qicclient/client.hxx"

namespace ICClient {

	Client::Client(char const* url, char const* certificate)
	{
		icclient_init(url, certificate);
	}

	Client::~Client()
	{
		icclient_cleanup();
	}

	void Client::allProducts(size_t (*handler)(void*, size_t, size_t, void*))
	{
		icclient_catalog* catalog = nullptr;
		icclient_allproducts(handler, &catalog);
		emit gotAllProducts(catalog);
	}

	void Client::order(icclient_ord_order** orderPtr, QString const& sku
			, icclient_catalog* catalog)
	{
		icclient_order(orderPtr, sku.toLatin1().constData(), catalog);
		icclient_ord_order* order = *orderPtr;
		emit ordered(order);
	}

	void Client::logIn(QString const& username, QString const& password)
	{
		icclient_login(username.toLatin1().constData()
				, password.toLatin1().constData(), nullptr, nullptr
				, nullptr);
		emit loggedIn(username);
	}

	void Client::logOut()
	{
		icclient_logout();
		emit loggedOut();
	}

}