forked from PrestaShopCorp/ps_checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPsCheckoutCart.php
294 lines (265 loc) · 7.2 KB
/
PsCheckoutCart.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
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
class PsCheckoutCart extends ObjectModel
{
const STATUS_CREATED = 'CREATED';
const STATUS_SAVED = 'SAVED';
const STATUS_APPROVED = 'APPROVED';
const STATUS_COMPLETED = 'COMPLETED';
const STATUS_VOIDED = 'VOIDED';
const PAYER_ACTION_REQUIRED = 'PAYER_ACTION_REQUIRED';
/**
* @var int|null Cart Identifier
*/
public $id_cart;
/**
* @var string|null PayPal Order Intent
*/
public $paypal_intent;
/**
* @var string|null PayPal Order Identifier
*/
public $paypal_order;
/**
* @var string|null PayPal Order Status
*/
public $paypal_status;
/**
* @var string|null PayPal Funding Source
*/
public $paypal_funding;
/**
* @var string|null PayPal Access Token for Hosted-Fields
*/
public $paypal_token;
/**
* @var string|null PayPal expiration date for Access Token
*/
public $paypal_token_expire;
/**
* @var string|null PayPal expiration date for Authorization
*/
public $paypal_authorization_expire;
/**
* @var bool
*/
public $isExpressCheckout = false;
/**
* @var bool
*/
public $isHostedFields = false;
/**
* @var string|null Creation date in mysql date format
*/
public $date_add;
/**
* @var string|null Last modification date in mysql date format
*/
public $date_upd;
/**
* @see ObjectModel::$definition
*/
public static $definition = [
'table' => 'pscheckout_cart',
'primary' => 'id_pscheckout_cart',
'fields' => [
'id_cart' => [
'type' => self::TYPE_INT,
'validate' => 'isUnsignedInt',
'required' => true,
],
'paypal_intent' => [
'type' => self::TYPE_STRING,
'validate' => 'isGenericName',
'size' => 20,
'allow_null' => true,
'required' => false,
],
'paypal_order' => [
'type' => self::TYPE_STRING,
'validate' => 'isGenericName',
'size' => 20,
'allow_null' => true,
'required' => false,
],
'paypal_status' => [
'type' => self::TYPE_STRING,
'validate' => 'isGenericName',
'size' => 20,
'allow_null' => true,
'required' => false,
],
'paypal_funding' => [
'type' => self::TYPE_STRING,
'validate' => 'isGenericName',
'size' => 20,
'allow_null' => true,
'required' => false,
],
'paypal_token' => [
'type' => self::TYPE_STRING,
'allow_null' => true,
'required' => false,
],
'paypal_token_expire' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
'allow_null' => true,
'required' => false,
],
'paypal_authorization_expire' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
'allow_null' => true,
'required' => false,
],
'isExpressCheckout' => [
'type' => self::TYPE_BOOL,
'validate' => 'isBool',
'allow_null' => true,
'required' => false,
],
'isHostedFields' => [
'type' => self::TYPE_BOOL,
'validate' => 'isBool',
'allow_null' => true,
'required' => false,
],
'date_add' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
],
'date_upd' => [
'type' => self::TYPE_DATE,
'validate' => 'isDate',
],
],
];
/**
* @return int
*/
public function getIdCart()
{
return (int) $this->id_cart;
}
/**
* @return string|null
*/
public function getPaypalIntent()
{
return $this->paypal_intent;
}
/**
* @return string|null
*/
public function getPaypalOrderId()
{
return $this->paypal_order;
}
/**
* @return string|null
*/
public function getPaypalStatus()
{
return $this->paypal_status;
}
/**
* @return string|null
*/
public function getPaypalFundingSource()
{
return $this->paypal_funding;
}
/**
* @return string|null
*/
public function getPaypalClientToken()
{
if (empty($this->paypal_token) || $this->isPaypalClientTokenExpired()) {
return null;
}
return $this->paypal_token;
}
/**
* @return bool
*/
public function isPaypalClientTokenExpired()
{
return empty($this->paypal_token_expire) || strtotime($this->paypal_token_expire) > time();
}
/**
* @return string
*/
public function getPaypalAuthorizationExpireDate()
{
return $this->paypal_authorization_expire;
}
/**
* @return bool
*/
public function isPaypalAuthorizationExpired()
{
return empty($this->paypal_authorization_expire) || strtotime($this->paypal_authorization_expire) > time();
}
/**
* @return bool
*/
public function isExpressCheckout()
{
return (bool) $this->isExpressCheckout;
}
/**
* @return bool
*/
public function isHostedFields()
{
return (bool) $this->isHostedFields;
}
/**
* @return string|null
*/
public function getDateAdd()
{
return $this->date_add;
}
/**
* @return string|null
*/
public function getDateUpd()
{
return $this->date_upd;
}
/**
* @return bool
*/
public function isPayPalOrderExpired()
{
return empty($this->date_add) || strtotime($this->date_add) + 3600 * 3 < time();
}
/**
* @return bool
*/
public function isOrderAvailable()
{
return $this->getPaypalOrderId()
&& in_array($this->paypal_status, [PsCheckoutCart::STATUS_CREATED, PsCheckoutCart::STATUS_APPROVED, PsCheckoutCart::PAYER_ACTION_REQUIRED], true)
&& !$this->isPayPalOrderExpired();
}
}