summaryrefslogtreecommitdiff
path: root/ord.c
blob: fdfc2637ce7a240e73ad881199a4c53a63103b3c (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include "request.h"
#include "icclient.h"
#include "icclient/member.h"
#include "icclient/ord.h"

void icclient_ord_init(struct icclient_ord_order *order)
{
	order->subtotal = .0;
	order->shipping = .0;
	order->subtotal = .0;
	order->nitems = 0;
}

static int prodcmp(const void *product1, const void *product2)
{
	return strcmp((*(struct icclient_product * const *)product1)->sku
			, (*(struct icclient_product * const *)product2)->sku);
}

static int itemcmp(const void *item1, const void *item2)
{
	return strcmp((*(struct icclient_ord_item * const *)item1)->product->sku
			, (*(struct icclient_ord_item * const *)item2)->product->sku);
}

void icclient_ord_order(const char *sku, const struct icclient_catalog *catalog,
		struct icclient_ord_order **orderptr)
{
	struct icclient_product **products = ((struct icclient_catalog *)catalog)->products;
	qsort(products, catalog->length, sizeof(struct icclient_product *), prodcmp);
	struct icclient_product *key_product = malloc(sizeof(struct icclient_product));
	memset(key_product, '\0', sizeof(struct icclient_product));
	key_product->sku = malloc(strlen(sku) + 1);
	strcpy(key_product->sku, sku);
	struct icclient_product *product = *(struct icclient_product **)bsearch(&key_product
			, products, catalog->length, sizeof(struct icclient_product *)
			, prodcmp);
	icclient_free_product(key_product);

	struct icclient_ord_order *order = *orderptr;
	struct icclient_ord_item *item = NULL;

	if (order) {
		struct icclient_ord_item **items = order->items;
		qsort(items, order->nitems, sizeof(struct icclient_ord_item *), itemcmp);
		struct icclient_ord_item *key_item = malloc(sizeof(struct icclient_ord_item));
		key_item->product = product;
		struct icclient_ord_item **itemptr = bsearch(&key_item, items
				, order->nitems, sizeof(struct icclient_ord_item *)
				, itemcmp);
		if (itemptr)
			item = *itemptr;
		free(key_item);
	} else {
		*orderptr = malloc(sizeof(struct icclient_ord_order));
		order = *orderptr;
		icclient_ord_init(order);
	}

	if (item)
		item->quantity++;
	else {
		size_t i = order->nitems;
		*orderptr = realloc(order, sizeof(struct icclient_ord_order)
				+ (i + 1) * sizeof(struct icclient_ord_item));
		order = *orderptr;
		order->items[i] = malloc(sizeof(struct icclient_ord_item));
		order->nitems++;
		item = order->items[i];
		item->product = product;
		item->quantity = 1;
	}

	order->subtotal += item->product->price;
	order->total_cost += item->product->price;

	request(NULL, NULL, NULL, "%s%s", "order?mv_arg=", sku);
}

void icclient_ord_checkout(struct icclient_ord_order *order,
		struct icclient_member *member)
{
	request(NULL, NULL, &(struct body){ 14, {
			{ "mv_todo", "submit" },
			{ "mv_action", "refresh" },
			{ "mv_order_profile", order->profile },
			{ "fname", member->fname },
			{ "lname", member->lname },
			{ "address1", member->address1 },
			{ "address2", member->address2 },
			{ "city", member->city },
			{ "state", member->state },
			{ "zip", member->zip },
			{ "email", member->email },
			{ "phone_day", member->phone_day },
			{ "mv_same_billing", member->preferences->mv_same_billing? "1" : "0" },
			{ "email_copy", member->preferences->email_copy? "1" : "0" }
			}}, "%s", "ord/checkout");
}

void icclient_ord_free(struct icclient_ord_order *order)
{
	for (size_t i = 0; i < order->nitems; i++)
		icclient_free_product(order->items[i]->product);
}