-
Notifications
You must be signed in to change notification settings - Fork 29
/
class-tax-request-body.php
486 lines (428 loc) · 9.06 KB
/
class-tax-request-body.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<?php
/**
* Tax Request Body
*
* @package TaxJar\TaxCalculation
*/
namespace TaxJar;
use TaxJar_Tax_Calculation;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Class Tax_Request_Body
*/
class Tax_Request_Body {
/**
* Shi to country code.
*
* @var null|string
*/
private $to_country = null;
/**
* Ship to state code.
*
* @var null|string
*/
private $to_state = null;
/**
* Ship to zip code.
*
* @var null|string
*/
private $to_zip = null;
/**
* Ship to city.
*
* @var null|string
*/
private $to_city = null;
/**
* Ship to street.
*
* @var null|string
*/
private $to_street = null;
/**
* Ship from country code.
*
* @var null|string
*/
private $from_country = null;
/**
* Ship from state code.
*
* @var null|string
*/
private $from_state = null;
/**
* Ship from zip code.
*
* @var null|string
*/
private $from_zip = null;
/**
* Ship from city.
*
* @var null|string
*/
private $from_city = null;
/**
* Ship from street.
*
* @var null|string
*/
private $from_street = null;
/**
* Total shipping.
*
* @var null|float
*/
private $shipping_amount = null;
/**
* Customer ID.
*
* @var int
*/
private $customer_id = 0;
/**
* Exemption type.
*
* @var string
*/
private $exemption_type = '';
/**
* Line items.
*
* @var array
*/
private $line_items = array();
/**
* Validate request body contains enough information to for tax calculation.
*
* @throws Tax_Calculation_Exception When missing fields or containing invalid data.
*/
public function validate() {
$this->validate_country_is_present();
$this->validate_zip_code_is_present();
$this->validate_line_items_or_shipping_amount_are_present();
$this->validate_zip_code_format();
}
/**
* Ensures ship to country is set.
*
* @throws Tax_Calculation_Exception When ship to country is not set.
*/
private function validate_country_is_present() {
if ( empty( $this->get_to_country() ) ) {
throw new Tax_Calculation_Exception(
'missing_required_field_country',
__( 'Country field is required to perform tax calculation.', 'taxjar' )
);
}
}
/**
* Ensures ship to zip code is set.
*
* @throws Tax_Calculation_Exception When ship to zip code is not set.
*/
private function validate_zip_code_is_present() {
if ( empty( $this->get_to_zip() ) ) {
throw new Tax_Calculation_Exception(
'missing_required_field_zip',
__( 'Zip code is required to perform tax calculation.', 'taxjar' )
);
}
}
/**
* Ensures either line items or a shipping amount is set.
*
* @throws Tax_Calculation_Exception When no line items or shipping amount has been set.
*/
private function validate_line_items_or_shipping_amount_are_present() {
if ( empty( $this->get_line_items() ) && ( 0 === $this->get_shipping_amount() ) ) {
throw new Tax_Calculation_Exception(
'missing_required_field_line_item_or_shipping',
__( 'Either a line item or shipping amount is required to calculate shipping.', 'taxjar' )
);
}
}
/**
* Ensures to zip code is a valid format for the country.
*
* @throws Tax_Calculation_Exception When zip code is not in a valid format.
*/
private function validate_zip_code_format() {
if ( ! TaxJar_Tax_Calculation::is_postal_code_valid( $this->get_to_country(), $this->get_to_state(), $this->get_to_zip() ) ) {
throw new Tax_Calculation_Exception(
'invalid_field_zip',
__( 'Invalid zip code. The to address zip code does not match the format required for the country.', 'taxjar' )
);
}
}
/**
* Gets json representation of request body.
*
* @return false|string
*/
public function to_json() {
return wp_json_encode( $this->to_array() );
}
/**
* Converts request body to an array.
*
* @return mixed|void
*/
public function to_array() {
$request_body = array(
'from_country' => $this->get_from_country(),
'from_state' => $this->get_from_state(),
'from_zip' => $this->get_from_zip(),
'from_city' => $this->get_from_city(),
'from_street' => $this->get_from_street(),
'to_country' => $this->get_to_country(),
'to_state' => $this->get_to_state(),
'to_zip' => $this->get_to_zip(),
'to_city' => $this->get_to_city(),
'to_street' => $this->get_to_street(),
'shipping' => $this->get_shipping_amount(),
'plugin' => 'woo',
);
if ( $this->get_customer_id() !== 0 ) {
$request_body['customer_id'] = $this->get_customer_id();
}
if ( ! empty( $this->get_exemption_type() ) && TaxJar_Tax_Calculation::is_valid_exemption_type( $this->get_exemption_type() ) ) {
$request_body['exemption_type'] = $this->get_exemption_type();
}
if ( empty( $this->get_line_items() ) ) {
$request_body['amount'] = 0.0;
} else {
$request_body['line_items'] = $this->get_line_items();
}
return apply_filters( 'taxjar_tax_request_body', $request_body, $this );
}
/**
* Set ship to country code.
*
* @param string $to_country Ship to country code.
*/
public function set_to_country( $to_country ) {
$this->to_country = $to_country;
}
/**
* Get ship to country code.
*
* @return string|null
*/
public function get_to_country() {
return $this->to_country;
}
/**
* Set ship to state code.
*
* @param string $to_state Ship to state code.
*/
public function set_to_state( $to_state ) {
$this->to_state = $to_state;
}
/**
* Get ship to state code.
*
* @return string|null
*/
public function get_to_state() {
return $this->to_state;
}
/**
* Set ship to zip code.
*
* @param string $to_zip Ship to zip code.
*/
public function set_to_zip( $to_zip ) {
$this->to_zip = $to_zip;
}
/**
* Get ship to zip code.
*
* @return string|null
*/
public function get_to_zip() {
return $this->to_zip;
}
/**
* Set ship to city.
*
* @param string $to_city Ship to city.
*/
public function set_to_city( $to_city ) {
$this->to_city = $to_city;
}
/**
* Get ship to city.
*
* @return string|null
*/
public function get_to_city() {
return $this->to_city;
}
/**
* Set ship to street.
*
* @param string $to_street Ship to street.
*/
public function set_to_street( $to_street ) {
$this->to_street = $to_street;
}
/**
* Get ship to street.
*
* @return string|null
*/
public function get_to_street() {
return $this->to_street;
}
/**
* Set ship from country code.
*
* @param string $from_country Ship from country code.
*/
public function set_from_country( $from_country ) {
$this->from_country = $from_country;
}
/**
* Get ship from country code.
*
* @return string|null
*/
public function get_from_country() {
return $this->from_country;
}
/**
* Set ship from state code.
*
* @param string $from_state Ship from state code.
*/
public function set_from_state( $from_state ) {
$this->from_state = $from_state;
}
/**
* Get ship from state code.
*
* @return string|null
*/
public function get_from_state() {
return $this->from_state;
}
/**
* Set ship from zip code.
*
* @param string $from_zip Ship from zip code.
*/
public function set_from_zip( $from_zip ) {
$this->from_zip = $from_zip;
}
/**
* Get ship from zip code.
*
* @return string|null
*/
public function get_from_zip() {
return $this->from_zip;
}
/**
* Set ship from city.
*
* @param string $from_city Ship from city.
*/
public function set_from_city( $from_city ) {
$this->from_city = $from_city;
}
/**
* Get ship from city.
*
* @return string|null
*/
public function get_from_city() {
return $this->from_city;
}
/**
* Set ship from street.
*
* @param string $from_street Ship from street.
*/
public function set_from_street( $from_street ) {
$this->from_street = $from_street;
}
/**
* Get ship from street.
*
* @return string|null
*/
public function get_from_street() {
return $this->from_street;
}
/**
* Set total shipping amount.
*
* @param float $shipping_amount Total shipping amount.
*/
public function set_shipping_amount( $shipping_amount ) {
$this->shipping_amount = $shipping_amount;
}
/**
* Get total shipping amount.
*
* @return float|null
*/
public function get_shipping_amount() {
return $this->shipping_amount;
}
/**
* Set customer ID.
*
* @param integer $customer_id Customer ID.
*/
public function set_customer_id( $customer_id ) {
$this->customer_id = $customer_id;
}
/**
* Get customer ID.
*
* @return int
*/
public function get_customer_id() {
return $this->customer_id;
}
/**
* Set exemption type.
*
* @param string $exemption_type Exemption type.
*/
public function set_exemption_type( $exemption_type ) {
$this->exemption_type = $exemption_type;
}
/**
* Get exemption type.
*
* @return string
*/
public function get_exemption_type() {
return $this->exemption_type;
}
/**
* Add line item.
*
* @param array $line_item Line item.
*/
public function add_line_item( $line_item ) {
$this->line_items[] = $line_item;
}
/**
* Get all line items.
*
* @return array
*/
public function get_line_items() {
return $this->line_items;
}
}