Pay.php
6.5 KB
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
<?php
// +----------------------------------------------------------------------
// | WeChatDeveloper
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目:https://github.com/zoujingli/WeChatDeveloper
// +----------------------------------------------------------------------
namespace WeChat;
use WeChat\Contracts\BasicWePay;
use WeChat\Exceptions\InvalidResponseException;
use WePay\Bill;
use WePay\Order;
use WePay\Refund;
use WePay\Transfers;
use WePay\TransfersBank;
/**
* 微信支付商户
* Class Pay
* @package WeChat\Contracts
*/
class Pay extends BasicWePay
{
/**
* 统一下单
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function createOrder(array $options)
{
return Order::instance($this->config->get())->create($options);
}
/**
* 刷卡支付
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function createMicropay($options)
{
return Order::instance($this->config->get())->micropay($options);
}
/**
* 创建JsApi及H5支付参数
* @param string $prepay_id 统一下单预支付码
* @return array
*/
public function createParamsForJsApi($prepay_id)
{
return Order::instance($this->config->get())->jsapiParams($prepay_id);
}
/**
* 获取APP支付参数
* @param string $prepay_id 统一下单预支付码
* @return array
*/
public function createParamsForApp($prepay_id)
{
return Order::instance($this->config->get())->appParams($prepay_id);
}
/**
* 获取支付规则二维码
* @param string $product_id 商户定义的商品id 或者订单号
* @return string
*/
public function createParamsForRuleQrc($product_id)
{
return Order::instance($this->config->get())->qrcParams($product_id);
}
/**
* 查询订单
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function queryOrder(array $options)
{
return Order::instance($this->config->get())->query($options);
}
/**
* 关闭订单
* @param string $out_trade_no 商户订单号
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function closeOrder($out_trade_no)
{
return Order::instance($this->config->get())->close($out_trade_no);
}
/**
* 申请退款
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function createRefund(array $options)
{
return Refund::instance($this->config->get())->create($options);
}
/**
* 查询退款
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function queryRefund(array $options)
{
return Refund::instance($this->config->get())->query($options);
}
/**
* 交易保障
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function report(array $options)
{
return Order::instance($this->config->get())->report($options);
}
/**
* 授权码查询openid
* @param string $authCode 扫码支付授权码,设备读取用户微信中的条码或者二维码信息
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function queryAuthCode($authCode)
{
return Order::instance($this->config->get())->queryAuthCode($authCode);
}
/**
* 下载对账单
* @param array $options 静音参数
* @param null|string $outType 输出类型
* @return bool|string
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function billDownload(array $options, $outType = null)
{
return Bill::instance($this->config->get())->download($options, $outType);
}
/**
* 拉取订单评价数据
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function billCommtent(array $options)
{
return Bill::instance($this->config->get())->comment($options);
}
/**
* 企业付款到零钱
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function createTransfers(array $options)
{
return Transfers::instance($this->config->get())->create($options);
}
/**
* 查询企业付款到零钱
* @param string $partner_trade_no 商户调用企业付款API时使用的商户订单号
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function queryTransfers($partner_trade_no)
{
return Transfers::instance($this->config->get())->query($partner_trade_no);
}
/**
* 企业付款到银行卡
* @param array $options
* @return array
* @throws Exceptions\LocalCacheException
* @throws Exceptions\InvalidDecryptException
* @throws Exceptions\InvalidResponseException
*/
public function createTransfersBank(array $options)
{
return TransfersBank::instance($this->config->get())->create($options);
}
/**
* 商户企业付款到银行卡操作进行结果查询
* @param string $partner_trade_no 商户订单号,需保持唯一
* @return array
* @throws Exceptions\LocalCacheException
* @throws InvalidResponseException
*/
public function queryTransFresBank($partner_trade_no)
{
return TransfersBank::instance($this->config->get())->query($partner_trade_no);
}
}