-
Notifications
You must be signed in to change notification settings - Fork 3
/
klarnapclass.php
573 lines (524 loc) · 11.8 KB
/
klarnapclass.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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
<?php
/**
* KlarnaPClass
*
* PHP Version 5.3
*
* @ignore Do not show in PHPDoc.
* @category Payment
* @package KlarnaAPI
* @author MS Dev <ms.modules@klarna.com>
* @copyright 2012 Klarna AB (http://klarna.com)
* @license http://opensource.org/licenses/BSD-2-Clause BSD-2
* @link https://developers.klarna.com/
*/
/**
* PClass object used for part payment.
*
* PClasses are used in conjunction with KlarnaCalc to determine part payment costs.
*
* @ignore Do not show in PHPDoc.
* @category Payment
* @package KlarnaAPI
* @author MS Dev <ms.modules@klarna.com>
* @copyright 2012 Klarna AB (http://klarna.com)
* @license http://opensource.org/licenses/BSD-2-Clause BSD-2
* @link https://developers.klarna.com/
*/
class KlarnaPClass
{
/**
* Invoice type/identifier, used for invoice purchases.
*
* @var int
*/
const INVOICE = -1;
/**
* Campaign type pclass.
*
* @var int
*/
const CAMPAIGN = 0;
/**
* Account type pclass.
*
* @var int
*/
const ACCOUNT = 1;
/**
* Special campaign type pclass.<br>
* "Buy now, pay in x month"<br>
*
* @var int
*/
const SPECIAL = 2;
/**
* Fixed campaign type pclass
*
* @var int
*/
const FIXED = 3;
/**
* Delayed campaign type pclass.<br>
* "Pay in X months"<br>
*
* @var int
*/
const DELAY = 4;
/**
* Klarna Mobile type pclass
*
* @var int
*/
const MOBILE = 5;
/**
* The description for this PClass.
* HTML entities for special characters.
*
* @ignore Do not show in PHPDoc.
* @var string
*/
protected $description;
/**
* Number of months for this PClass.
*
* @ignore Do not show in PHPDoc.
* @var int
*/
protected $months;
/**
* PClass starting fee.
*
* @ignore Do not show in PHPDoc.
* @var float
*/
protected $startFee;
/**
* PClass invoice/handling fee.
*
* @ignore Do not show in PHPDoc.
* @var float
*/
protected $invoiceFee;
/**
* PClass interest rate.
*
* @ignore Do not show in PHPDoc.
* @var float
*/
protected $interestRate;
/**
* PClass minimum amount for purchase/product.
*
* @ignore Do not show in PHPDoc.
* @var float
*/
protected $minAmount;
/**
* PClass country.
*
* @ignore Do not show in PHPDoc.
* @see KlarnaCountry
* @var int
*/
protected $country;
/**
* PClass ID.
*
* @ignore Do not show in PHPDoc.
* @var int
*/
protected $id;
/**
* PClass type.
*
* @see self::CAMPAIGN
* @see self::ACCOUNT
* @see self::SPECIAL
* @see self::FIXED
* @see self::DELAY
* @see self::MOBILE
*
* @ignore Do not show in PHPDoc.
* @var int
*/
protected $type;
/**
* Expire date / valid until date as unix timestamp.<br>
* Compare it with e.g. $_SERVER['REQUEST_TIME'].<br>
*
* @ignore Do not show in PHPDoc.
* @var int
*/
protected $expire;
/**
* Merchant ID / Estore ID.
*
* @ignore Do not show in PHPDoc.
* @var int
*/
protected $eid;
/**
* Class constructor
*
* The optional array argument can be:
* array (
* 0 = eid (this is created in the API)
* 1 = id number
* 2 = description
* 3 = amount of months for part payment
* 4 = start fee
* 5 = invoice fee
* 6 = interest rate
* 7 = minimum purchase amount for pclass
* 8 = country
* 9 = type
* (This is used to determine which pclass-id is an account and
* a campaign, 0 = campaign, 1 = account, 2 = special campaign
* i.e. x-mas campaign)
* 10 = expire date
*
* @param null|array $arr Associative or numeric array of PClass data.
*/
public function __construct($arr = null)
{
if (!is_array($arr) || count($arr) < 11) {
return;
}
foreach ($arr as $key => $val) {
switch($key) {
case "0":
case "eid":
$this->setEid($val);
break;
case "1":
case "id":
$this->setId($val);
break;
case "2":
case "desc":
case "description":
$this->setDescription($val);
break;
case "3":
case "months":
$this->setMonths($val);
break;
case "4":
case "startfee":
$this->setStartFee($val);
break;
case "5":
case "invoicefee":
$this->setInvoiceFee($val);
break;
case "6":
case "interestrate":
$this->setInterestRate($val);
break;
case "7":
case "minamount":
$this->setMinAmount($val);
break;
case "8":
case "country":
$this->setCountry($val);
break;
case "9":
case "type":
$this->setType($val);
break;
case "10":
case "expire":
$this->setExpire($val);
break;
default:
//Array index not supported.
break;
}
}
}
/**
* Returns an associative array mirroring this PClass.
*
* @return array
*/
public function toArray()
{
return array(
'eid' => $this->eid,
'id' => $this->id,
'description' => $this->description,
'months' => $this->months,
'startfee' => $this->startFee,
'invoicefee' => $this->invoiceFee,
'interestrate' => $this->interestRate,
'minamount' => $this->minAmount,
'country' => $this->country,
'type' => $this->type,
'expire' => $this->expire
);
}
/**
* Sets the descriptiton, converts to HTML entities.
*
* @param string $description PClass description.
*
* @return void
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* Sets the number of months.
*
* @param int $months Number of months.
*
* @return void
*/
public function setMonths($months)
{
$this->months = intval($months);
}
/**
* Sets the starting fee.
*
* @param float $startFee Starting fee.
*
* @return void
*/
public function setStartFee($startFee)
{
$this->startFee = floatval($startFee);
}
/**
* Sets the invoicing/handling fee.
*
* @param float $invoiceFee Invoicing fee.
*
* @return void
*/
public function setInvoiceFee($invoiceFee)
{
$this->invoiceFee = floatval($invoiceFee);
}
/**
* Sets the interest rate.
*
* @param float $interestRate Interest rate.
*
* @return void
*/
public function setInterestRate($interestRate)
{
$this->interestRate = floatval($interestRate);
}
/**
* Sets the Minimum amount to use this PClass.
*
* @param float $minAmount Minimum amount.
*
* @return void
*/
public function setMinAmount($minAmount)
{
$this->minAmount = floatval($minAmount);
}
/**
* Sets the country for this PClass.
*
* @param int $country {@link KlarnaCountry} constant.
*
* @see KlarnaCountry
*
* @return void
*/
public function setCountry($country)
{
$this->country = intval($country);
}
/**
* Sets the ID for this pclass.
*
* @param int $id PClass identifier.
*
* @return void
*/
public function setId($id)
{
$this->id = intval($id);
}
/**
* Sets the type for this pclass.
*
* @param int $type PClass type identifier.
*
* @see self::CAMPAIGN
* @see self::ACCOUNT
* @see self::SPECIAL
* @see self::FIXED
* @see self::DELAY
* @see self::MOBILE
*
* @return void
*/
public function setType($type)
{
$this->type = intval($type);
}
/**
* Returns the ID for this PClass.
*
* @return int PClass identifier.
*/
public function getId()
{
return $this->id;
}
/**
* Returns this PClass's type.
*
* @see self::CAMPAIGN
* @see self::ACCOUNT
* @see self::SPECIAL
* @see self::FIXED
* @see self::DELAY
* @see self::MOBILE
*
* @return int PClass type identifier.
*/
public function getType()
{
return $this->type;
}
/**
* Returns the Merchant ID or Estore ID connected to this PClass.
*
* @return int
*/
public function getEid()
{
return $this->eid;
}
/**
* Merchant ID or Estore ID connected to this PClass.
*
* @param int $eid Merchant ID.
*
* @return void
*/
public function setEid($eid)
{
$this->eid = intval($eid);
}
/**
* Checks whether this PClass is valid.
*
* @param int $now Unix timestamp
*
* @return bool
*/
public function isValid($now = null)
{
if ($this->expire == null
|| $this->expire == '-'
|| $this->expire <= 0
) {
//No expire, or unset? assume valid.
return true;
}
if ($now === null || !is_numeric($now)) {
$now = time();
}
//If now is before expire, it is still valid.
return ($now > $this->expire) ? false : true;
}
/**
* Returns the valid until/expire date unix timestamp.
*
* @return int
*/
public function getExpire()
{
return $this->expire;
}
/**
* Sets the valid until/expire date unix timestamp.
*
* @param int $expire unix timestamp for expire
*
* @return void
*/
public function setExpire($expire)
{
$this->expire = $expire;
}
/**
* Returns the description for this PClass.
*
* <b>Note</b>:<br>
* Encoded with HTML entities.
*
* @return string PClass description.
*/
public function getDescription()
{
return $this->description;
}
/**
* Returns the number of months for this PClass.
*
* @return int Number of months.
*/
public function getMonths()
{
return $this->months;
}
/**
* Returns the starting fee for this PClass.
*
* @return float Starting fee.
*/
public function getStartFee()
{
return $this->startFee;
}
/**
* Returns the invoicing/handling fee for this PClass.
*
* @return float Invoicing fee.
*/
public function getInvoiceFee()
{
return $this->invoiceFee;
}
/**
* Returns the interest rate for this PClass.
*
* @return float Interest rate.
*/
public function getInterestRate()
{
return $this->interestRate;
}
/**
* Returns the minimum order/product amount for which this PClass is allowed.
*
* @return float Minimum amount to use this PClass.
*/
public function getMinAmount()
{
return $this->minAmount;
}
/**
* Returns the country related to this PClass.
*
* @see KlarnaCountry
* @return int {@link KlarnaCountry} constant.
*/
public function getCountry()
{
return $this->country;
}
}