forked from fecshop/yii2_fecshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayment.php
563 lines (524 loc) · 19.3 KB
/
Payment.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
<?php
/*
* FecShop file.
*
* @link http://www.fecshop.com/
* @copyright Copyright (c) 2016 FecShop Software LLC
* @license http://www.fecshop.com/license/
*/
namespace fecshop\services;
use Yii;
/**
* Payment services.
* @author Terry Zhao <[email protected]>
* @since 1.0
*/
class Payment extends Service
{
public $paymentConfig;
/**
* Array
* 不需要释放库存的支付方式。譬如货到付款,在系统中
* pending订单,如果一段时间未付款,会释放产品库存,但是货到付款类型的订单不会释放,
* 如果需要释放产品库存,客服在后台取消订单即可释放产品库存。
*/
public $noRelasePaymentMethod;
protected $_currentPaymentMethod;
/**
* @property $payment_method | string
* 设置当前的支付方式
*/
public function setPaymentMethod($payment_method)
{
$this->_currentPaymentMethod = $payment_method;
}
/**
* @return $payment_method | string
* 得到当前的支付方式
*/
public function getPaymentMethod()
{
return $this->_currentPaymentMethod;
}
/**
* @return 得到支付方式,以及对应的label,譬如:
* [
* 'check_money' => 'Check / Money Order',
* 'alipay_standard' => '支付宝支付',
* ] #从配置信息中获取
*/
public function getPaymentLabels(){
$arr = [];
$paymentConfig = $this->paymentConfig;
if (is_array($paymentConfig['standard'])) {
foreach ($paymentConfig['standard'] as $payment_method => $one) {
if (isset($one['label']) && !empty($one['label']) && $payment_method) {
$arr[$payment_method] = $one['label'];
}
}
}
return $arr;
}
/**
* @property $payment_method | String 支付方式。
* @return 返回提交订单信息跳转到的第三方支付url,也就是第三方支付的url。
* #从配置信息中获取
*/
public function getStandardStartUrl($payment_method = '', $type = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['start_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['start_url'])) {
if ($type == 'appserver') {
return $this->getAppServerUrl($paymentConfig['standard'][$payment_method]['start_url']);
} else {
return $this->getUrl($paymentConfig['standard'][$payment_method]['start_url']);
}
}
}
}
}
public function getAppServerUrl($url)
{
$url = str_replace('@homeUrl', '', $url);
return trim($url);
}
/**
* @property $url | String url的字符串
* @return string 根据传递的字符串格式,得到相应的url
*/
protected function getUrl($url)
{
$homeUrl = Yii::$service->url->homeUrl();
$url = str_replace('@homeUrl', $homeUrl, $url);
return trim($url);
}
/**
* @property $payment_method | String 支付方式。
* @return 第三方支付成功后,返回到网站的url
* #从配置信息中获取
*/
public function getStandardSuccessRedirectUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['success_redirect_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['success_redirect_url'])) {
return $this->getUrl($paymentConfig['standard'][$payment_method]['success_redirect_url']);
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return string 支付取消的url。
* #从配置信息中获取
*/
public function getStandardCancelUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['cancel_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['cancel_url'])) {
return $this->getUrl($paymentConfig['standard'][$payment_method]['cancel_url']);
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return string 用户名
* #从配置信息中获取
*/
public function getStandardAccount($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['account'])) {
if (!empty($paymentConfig['standard'][$payment_method]['account'])) {
return $paymentConfig['standard'][$payment_method]['account'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return string Password
* #从配置信息中获取
*/
public function getStandardPassword($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['password'])) {
if (!empty($paymentConfig['standard'][$payment_method]['password'])) {
return $paymentConfig['standard'][$payment_method]['password'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return string Signature
* #从配置信息中获取
*/
public function getStandardSignature($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['signature'])) {
if (!empty($paymentConfig['standard'][$payment_method]['signature'])) {
return $paymentConfig['standard'][$payment_method]['signature'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的api地址。
*/
public function getStandardWebscrUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['webscr_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['webscr_url'])) {
return $paymentConfig['standard'][$payment_method]['webscr_url'];
}
}
}
}
/**
* @return array 得到所有支付的数组,数组含有三个字段。
*/
public function getStandardPaymentArr()
{
$arr = [];
if (
isset($this->paymentConfig['standard']) &&
is_array($this->paymentConfig['standard'])
) {
foreach ($this->paymentConfig['standard'] as $payment_type => $info) {
$label = $info['label'];
$imageUrl = '';
if (is_array($info['image'])) {
list($iUrl, $l) = $info['image'];
if ($iUrl) {
$imageUrl = Yii::$service->image->getImgUrl($iUrl, $l);
}
}
$supplement = $info['supplement'];
$arr[$payment_type] = [
'label' => $label,
'imageUrl' => $imageUrl,
'supplement' => $supplement,
];
}
}
return $arr;
}
/**
* @property $payment_method | String , 支付方式
* @return bool 判断传递的支付方式,是否在配置中存在,如果存在返回true。
*/
protected function actionIfIsCorrectStandard($payment_method)
{
$paymentConfig = $this->paymentConfig;
$standard = isset($paymentConfig['standard']) ? $paymentConfig['standard'] : '';
if (isset($standard[$payment_method]) && !empty($standard[$payment_method])) {
return true;
} else {
return false;
}
}
public function getStandardNvpUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['nvp_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['nvp_url'])) {
return $paymentConfig['standard'][$payment_method]['nvp_url'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回支付方式的label
*/
public function getPaymentLabelByMethod($payment_method = '')
{
$payment_method_label = $this->getStandardLabel($payment_method);
if (!$payment_method_label) {
$payment_method_label = $this->getExpressLabel($payment_method);
}
if ($payment_method_label) {
return $payment_method_label;
} else {
return $payment_method;
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的label。
*/
public function getStandardLabel($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['label'])) {
if (!empty($paymentConfig['standard'][$payment_method]['label'])) {
return $paymentConfig['standard'][$payment_method]['label'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的signature。
*/
public function getStandardIpnUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['ipn_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['ipn_url'])) {
return $this->getUrl($paymentConfig['standard'][$payment_method]['ipn_url']);
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的signature。
*/
public function getStandardReturnUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['standard'][$payment_method]['return_url'])) {
if (!empty($paymentConfig['standard'][$payment_method]['return_url'])) {
return $this->getUrl($paymentConfig['standard'][$payment_method]['return_url']);
}
}
}
}
//###################
//# Express 部分 ##
//###################
/**
* @property $payment_method | String 支付方式。
* @return 返回获取token的url地址。
*/
public function getExpressNvpUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['nvp_url'])) {
if (!empty($paymentConfig['express'][$payment_method]['nvp_url'])) {
return $paymentConfig['express'][$payment_method]['nvp_url'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的api地址。
*/
public function getExpressWebscrUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['webscr_url'])) {
if (!empty($paymentConfig['express'][$payment_method]['webscr_url'])) {
return $paymentConfig['express'][$payment_method]['webscr_url'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的account。
*/
public function getExpressAccount($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['account'])) {
if (!empty($paymentConfig['express'][$payment_method]['account'])) {
return $paymentConfig['express'][$payment_method]['account'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的password。
*/
public function getExpressPassword($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['password'])) {
if (!empty($paymentConfig['express'][$payment_method]['password'])) {
return $paymentConfig['express'][$payment_method]['password'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的signature。
*/
public function getExpressSignature($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['signature'])) {
if (!empty($paymentConfig['express'][$payment_method]['signature'])) {
return $paymentConfig['express'][$payment_method]['signature'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的label。
*/
public function getExpressLabel($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['label'])) {
if (!empty($paymentConfig['express'][$payment_method]['label'])) {
return $paymentConfig['express'][$payment_method]['label'];
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的signature。
*/
public function getExpressReturnUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['return_url'])) {
if (!empty($paymentConfig['express'][$payment_method]['return_url'])) {
return $this->getUrl($paymentConfig['express'][$payment_method]['return_url']);
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的signature。
*/
public function getExpressCancelUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['cancel_url'])) {
if (!empty($paymentConfig['express'][$payment_method]['cancel_url'])) {
return $this->getUrl($paymentConfig['express'][$payment_method]['cancel_url']);
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 第三方支付成功后,返回到网站的url
* #从配置信息中获取
*/
public function getExpressSuccessRedirectUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['success_redirect_url'])) {
if (!empty($paymentConfig['express'][$payment_method]['success_redirect_url'])) {
return $this->getUrl($paymentConfig['express'][$payment_method]['success_redirect_url']);
}
}
}
}
/**
* @property $payment_method | String 支付方式。
* @return 返回进行数据交互的express的signature。
*/
public function getExpressIpnUrl($payment_method = '')
{
if (!$payment_method) {
$payment_method = $this->getPaymentMethod();
}
if ($payment_method) {
$paymentConfig = $this->paymentConfig;
if (isset($paymentConfig['express'][$payment_method]['ipn_url'])) {
if (!empty($paymentConfig['express'][$payment_method]['ipn_url'])) {
return $this->getUrl($paymentConfig['express'][$payment_method]['ipn_url']);
}
}
}
}
}