1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the overtrue/wechat. |
5
|
|
|
* |
6
|
|
|
* (c) overtrue <[email protected]> |
7
|
|
|
* |
8
|
|
|
* This source file is subject to the MIT license that is bundled |
9
|
|
|
* with this source code in the file LICENSE. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace EasyWeChat\Payment\Order; |
13
|
|
|
|
14
|
|
|
use EasyWeChat\Kernel\Support; |
15
|
|
|
use EasyWeChat\Payment\Kernel\BaseClient; |
16
|
|
|
|
17
|
|
|
class Client extends BaseClient |
18
|
|
|
{ |
19
|
|
|
/** |
20
|
|
|
* Unify order. |
21
|
|
|
* |
22
|
|
|
* @param array $attributes |
23
|
|
|
* |
24
|
|
|
* @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
25
|
|
|
*/ |
26
|
|
|
public function unify(array $attributes) |
27
|
|
|
{ |
28
|
|
|
if (empty($attributes['spbill_create_ip'])) { |
29
|
|
|
$attributes['spbill_create_ip'] = ($attributes['trade_type'] === 'NATIVE') ? Support\get_server_ip() : Support\get_client_ip(); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
$attributes['notify_url'] = $attributes['notify_url'] ?? $this->app['config']['notify_url']; |
33
|
|
|
|
34
|
|
|
return $this->request('pay/unifiedorder', $attributes); |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* Query order by out trade number. |
39
|
|
|
* |
40
|
|
|
* @param string $number |
41
|
|
|
* |
42
|
|
|
* @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
43
|
|
|
*/ |
44
|
|
|
public function queryByOutTradeNumber(string $number) |
45
|
|
|
{ |
46
|
|
|
return $this->query([ |
47
|
|
|
'out_trade_no' => $number, |
48
|
|
|
]); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* Query order by transaction id. |
53
|
|
|
* |
54
|
|
|
* @param string $transactionId |
55
|
|
|
* |
56
|
|
|
* @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
57
|
|
|
*/ |
58
|
|
|
public function queryByTransactionId(string $transactionId) |
59
|
|
|
{ |
60
|
|
|
return $this->query([ |
61
|
|
|
'transaction_id' => $transactionId, |
62
|
|
|
]); |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @param array $params |
67
|
|
|
* |
68
|
|
|
* @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
69
|
|
|
*/ |
70
|
|
|
protected function query(array $params) |
71
|
|
|
{ |
72
|
|
|
return $this->request('pay/orderquery', $params); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* Close order by out_trade_no. |
77
|
|
|
* |
78
|
|
|
* @param string $tradeNo |
79
|
|
|
* |
80
|
|
|
* @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string |
81
|
|
|
*/ |
82
|
|
|
public function close(string $tradeNo) |
83
|
|
|
{ |
84
|
|
|
$params = [ |
85
|
|
|
'out_trade_no' => $tradeNo, |
86
|
|
|
]; |
87
|
|
|
|
88
|
|
|
return $this->request('pay/closeorder', $params); |
89
|
|
|
} |
90
|
|
|
} |
91
|
|
|
|