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
67
68
69
70
71
72
|
#include <cstddef>
#include <QObject>
#include <icclient/client.h>
#include <icclient/member.h>
#include "qicclient/product.hxx"
#include "qicclient/client.hxx"
namespace ICClient {
Client::Client(char const* url, char const* certificate)
{
icclient_init(url, certificate);
}
Client::~Client()
{
icclient_cleanup();
}
void Client::results(size_t (*handler)(void* contents, size_t size,
size_t nmemb, void* userdata),
QString const& prodGroup)
{
icclient_catalog* catalog = nullptr;
icclient_results(handler, &catalog, prodGroup.toLatin1().constData());
emit gotResults(catalog);
}
void Client::allProducts(size_t (*handler)(void*, size_t, size_t, void*))
{
icclient_catalog* catalog = nullptr;
icclient_allproducts(handler, &catalog);
emit gotResults(catalog);
}
void Client::flyPage(size_t (*handler)(void* contents, size_t size,
size_t nmemb, void* userdata),
QString const& sku)
{
icclient_product* product = nullptr;
icclient_flypage(handler, &product, sku.toLatin1().constData());
if (product) emit gotFlyPage(std::shared_ptr<Product>{new ICClient::Product{product}});
}
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(size_t (*handler)(void*, size_t, size_t, void*)
, icclient_user* user, QString const& username
, QString const& password, QString const& successPage
, QString const& nextPage, QString const& failPage)
{
icclient_login(handler, user, username.toLatin1().constData()
, password.toLatin1().constData()
, successPage.toLatin1().constData()
, nextPage.toLatin1().constData()
, failPage.toLatin1().constData());
emit loggedIn(user);
}
void Client::logOut()
{
icclient_logout();
emit loggedOut();
}
}
|