summaryrefslogtreecommitdiff
path: root/main.c
blob: 03dd6211ea1dc7d748daca05d0b5aef3c86e09b3 (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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include "icclient/typedefs.h"
#include "icclient/product.h"
#include "icclient/catalog.h"
#include "icclient/client.h"

static void callback(struct icclient_catalog *catalog)
{
	for (size_t i = 0; i < catalog->length; i++) {
		struct icclient_product *product = catalog->products[i];
		printf("SKU: %s\n"
				"Description: %s\n"
				"Thumb: %s\n"
				"Image: %s\n"
				"Price: %f\n"
				"Product Group: %s\n",
				product->sku,
				product->description,
				product->thumb,
				product->image,
				product->price,
				product->prod_group
		      );
	}
}

int main(void)
{
	/*
	char *url_line = NULL, *name_line = NULL, *pass_line = NULL;
	printf("URL: ");
	ssize_t url_nread = getline(&url_line, &(size_t){0}, stdin);
	printf("Name: ");
	ssize_t name_nread = getline(&name_line, &(size_t){0}, stdin);
	printf("Pass: ");
	ssize_t pass_nread = getline(&pass_line, &(size_t){0}, stdin);

	char *url =  malloc(--url_nread + 1), *name = malloc(--name_nread + 1), *pass = malloc(--pass_nread + 1);
	strncpy(url, url_line, url_nread);
	free(url_line);
	strncpy(name, name_line, name_nread);
	free(name_line);
	strncpy(pass, pass_line, pass_nread);
	free(pass_line);
	*/

	icclient_init("http://localhost/namatoko", NULL);
	/*
	free(url);

	icclient_login(NULL, NULL, name, pass, NULL, NULL, NULL);
	free(name);
	free(pass);

	icclient_logout();
	*/

	struct icclient_catalog *catalog;
	icclient_allproducts(callback, &catalog, NULL);
	icclient_catalog_free(catalog);

	icclient_cleanup();
}