forked from viewup/up-wp-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWPCart.php
231 lines (192 loc) · 3.69 KB
/
WPCart.php
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
/**
* Cart Class
*
* User: viewup
* Date: 05/06/17
* Time: 3:43 PM
*/
// Require item
require_once __DIR__ . '/WPCartItem.php';
/**
* Class WPCart
*/
class WPCart {
// cart ID (for external identification)
private $ID = null;
// Total price
private $total = 0;
// Array of items
private $items = array();
/**
* WPCart constructor.
* TODO: import old JSON cart
*
* @param array $options cart options
*/
function __construct( $options = array() ) {
// cart ID for external identification
if ( $options['ID'] ) {
$this->ID = $options['ID'];
}
}
/**
* @return object cart object
*/
public function get() {
return (object) array(
'items' => $this->items,
'total' => $this->total,
);
}
/**
* ADD item
*
* @param int $id
* @param int $amount
*
* @return WPCart
*/
public function add( $id, $amount = 1 ) {
// check if item is already on the array
$item = $this->getItem( $id );
if ( $item ) {
return $this->update( $item->ID, $amount + $item->amount );
}
// Create new item if new
$item = new WPCartItem( $id, $amount );
// Add item to the items array
array_push( $this->items, $item );
return $this->updateCart();
}
/**
* REMOVE item
*
* @param int $id
*
* @return WPCart
*/
public function remove( $id ) {
// Gets the item position
$itemPos = $this->getItemPos( $id );
// removes the item from the array, if exists
if ( $itemPos >= 0 ) {
array_splice( $this->items, $itemPos, 1 );
}
return $this->updateCart();
}
/**
* UPDATE item
*
* @param int $id
* @param int $amount
*
* @return WPCart
*/
public function update( $id, $amount = 0 ) {
// get the item by ID
$item = $this->getItem( $id );
// if exists, update the item total
if ( $item ) {
$item->update( $amount );
}
if ( $item && ! $item->amount ) {
return $this->remove( $id );
}
return $this->updateCart();
}
/**
* CLEAN cart
* @return WPCart
*/
public function clean() {
// clear the items array
$this->items = array();
return $this->updateCart();
}
/**
* Get item by ID
*
* @param $id
*
* @return WPCartItem|null
*/
public function getItem( $id ) {
$id = (int) $id;
// get the item by position
$item = $this->items[ $this->getItemPos( $id ) ];
// if no item, return NULL
if ( ! $item ) {
$item = null;
}
return $item;
}
/**
* returns the cart ID
* @return mixed
*/
public function getID() {
return $this->ID;
}
/**
* returns the cart total
* @return float
*/
public function getTotal() {
return $this->total;
}
/**
* verify if the cart is empty
* @return bool is empty
*/
public function isEmpty() {
return sizeof( $this->items ) == 0;
}
// PRIVATE
/**
* Get item position by ID
*
* @param $id
*
* @return int
*/
private function getItemPos( $id ) {
// try to find the item with the mathing ID
foreach ( $this->items as $pos => $item ) {
/* @var $item WPCartItem */
if ( $item->ID == $id ) {
return $pos;
}
}
// if not found, returns '-1'
return - 1;
}
/**
* UPDATE cart info middleware
*
* makes all the necessary updates and calls the action, passing the instance
* @return WPCart
*/
private function updateCart() {
$this->calculateTotal();
// warns the update
do_action( 'upwpcart_update', $this );
return $this->calculateTotal();
}
/**
* UPDATE cart total
* @return $this
*/
private function calculateTotal() {
// starts with 0
$total = 0;
foreach ( $this->items as $item ) {
/* @var $item WPCartItem */
// increments with the item total
$total += $item->total;
}
// Replace the total with new value
$this->total = $total;
return $this;
}
}