Support.php
11.1 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
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
<?php
namespace Yansongda\Pay\Gateways\Wechat;
use Exception;
use Yansongda\Pay\Events;
use Yansongda\Pay\Exceptions\BusinessException;
use Yansongda\Pay\Exceptions\GatewayException;
use Yansongda\Pay\Exceptions\InvalidArgumentException;
use Yansongda\Pay\Exceptions\InvalidSignException;
use Yansongda\Pay\Gateways\Wechat;
use Yansongda\Pay\Log;
use Yansongda\Supports\Collection;
use Yansongda\Supports\Config;
use Yansongda\Supports\Str;
use Yansongda\Supports\Traits\HasHttpRequest;
/**
* @author yansongda <me@yansongda.cn>
*
* @property string appid
* @property string app_id
* @property string miniapp_id
* @property string sub_appid
* @property string sub_app_id
* @property string sub_miniapp_id
* @property string mch_id
* @property string sub_mch_id
* @property string key
* @property string return_url
* @property string cert_client
* @property string cert_key
* @property array log
* @property array http
* @property string mode
*/
class Support
{
use HasHttpRequest;
/**
* Wechat gateway.
*
* @var string
*/
protected $baseUri;
/**
* Config.
*
* @var Config
*/
protected $config;
/**
* Instance.
*
* @var Support
*/
private static $instance;
/**
* Bootstrap.
*
* @author yansongda <me@yansongda.cn>
*/
private function __construct(Config $config)
{
$this->baseUri = Wechat::URL[$config->get('mode', Wechat::MODE_NORMAL)];
$this->config = $config;
$this->setHttpOptions();
}
/**
* __get.
*
* @author yansongda <me@yansongda.cn>
*
* @param $key
*
* @return mixed|Config|null
*/
public function __get($key)
{
return $this->getConfig($key);
}
/**
* create.
*
* @author yansongda <me@yansongda.cn>
*
* @throws GatewayException
* @throws InvalidArgumentException
* @throws InvalidSignException
*
* @return Support
*/
public static function create(Config $config)
{
if ('cli' === php_sapi_name() || !(self::$instance instanceof self)) {
self::$instance = new self($config);
self::setDevKey();
}
return self::$instance;
}
/**
* getInstance.
*
* @author yansongda <me@yansongda.cn>
*
* @throws InvalidArgumentException
*
* @return Support
*/
public static function getInstance()
{
if (is_null(self::$instance)) {
throw new InvalidArgumentException('You Should [Create] First Before Using');
}
return self::$instance;
}
/**
* clear.
*
* @author yansongda <me@yansongda.cn>
*/
public static function clear()
{
self::$instance = null;
}
/**
* Request wechat api.
*
* @author yansongda <me@yansongda.cn>
*
* @param string $endpoint
* @param array $data
* @param bool $cert
*
* @throws GatewayException
* @throws InvalidArgumentException
* @throws InvalidSignException
*/
public static function requestApi($endpoint, $data, $cert = false): Collection
{
Events::dispatch(new Events\ApiRequesting('Wechat', '', self::$instance->getBaseUri().$endpoint, $data));
//xmlData需增加headers配置,否则微信方无法接收到参数
$options = [
'headers' => [
'Content-Type' => 'application/xml',
],
];
$certOptions = $cert ? [
'cert' => self::$instance->cert_client,
'ssl_key' => self::$instance->cert_key,
] : [];
$result = self::$instance->post(
$endpoint,
self::toXml($data),
array_merge($options, $certOptions)
);
$result = is_array($result) ? $result : self::fromXml($result);
Events::dispatch(new Events\ApiRequested('Wechat', '', self::$instance->getBaseUri().$endpoint, $result));
return self::processingApiResult($endpoint, $result);
}
/**
* Filter payload.
*
* @author yansongda <me@yansongda.cn>
*
* @param array $payload
* @param array|string $params
* @param bool $preserve_notify_url
*
* @throws InvalidArgumentException
*/
public static function filterPayload($payload, $params, $preserve_notify_url = false): array
{
$type = self::getTypeName($params['type'] ?? '');
$payload = array_merge(
$payload,
is_array($params) ? $params : ['out_trade_no' => $params]
);
$payload['appid'] = self::$instance->getConfig($type, '');
if (Wechat::MODE_SERVICE === self::$instance->getConfig('mode', Wechat::MODE_NORMAL)) {
$payload['sub_appid'] = self::$instance->getConfig('sub_'.$type, '');
}
unset($payload['trade_type'], $payload['type']);
if (!$preserve_notify_url) {
unset($payload['notify_url']);
}
$payload['sign'] = self::generateSign($payload);
return $payload;
}
/**
* Generate wechat sign.
*
* @author yansongda <me@yansongda.cn>
*
* @param array $data
*
* @throws InvalidArgumentException
*/
public static function generateSign($data): string
{
$key = self::$instance->key;
if (is_null($key)) {
throw new InvalidArgumentException('Missing Wechat Config -- [key]');
}
ksort($data);
$string = md5(self::getSignContent($data).'&key='.$key);
Log::debug('Wechat Generate Sign Before UPPER', [$data, $string]);
return strtoupper($string);
}
/**
* Generate sign content.
*
* @author yansongda <me@yansongda.cn>
*
* @param array $data
*/
public static function getSignContent($data): string
{
$buff = '';
foreach ($data as $k => $v) {
$buff .= ('sign' != $k && '' != $v && !is_array($v)) ? $k.'='.$v.'&' : '';
}
Log::debug('Wechat Generate Sign Content Before Trim', [$data, $buff]);
return trim($buff, '&');
}
/**
* Decrypt refund contents.
*
* @author yansongda <me@yansongda.cn>
*
* @param string $contents
*/
public static function decryptRefundContents($contents): string
{
return openssl_decrypt(
base64_decode($contents),
'AES-256-ECB',
md5(self::$instance->key),
OPENSSL_RAW_DATA
);
}
/**
* Convert array to xml.
*
* @author yansongda <me@yansongda.cn>
*
* @param array $data
*
* @throws InvalidArgumentException
*/
public static function toXml($data): string
{
if (!is_array($data) || count($data) <= 0) {
throw new InvalidArgumentException('Convert To Xml Error! Invalid Array!');
}
$xml = '<xml>';
foreach ($data as $key => $val) {
$xml .= is_numeric($val) ? '<'.$key.'>'.$val.'</'.$key.'>' :
'<'.$key.'><![CDATA['.$val.']]></'.$key.'>';
}
$xml .= '</xml>';
return $xml;
}
/**
* Convert xml to array.
*
* @author yansongda <me@yansongda.cn>
*
* @param string $xml
*
* @throws InvalidArgumentException
*/
public static function fromXml($xml): array
{
if (!$xml) {
throw new InvalidArgumentException('Convert To Array Error! Invalid Xml!');
}
if (PHP_VERSION_ID < 80000) {
libxml_disable_entity_loader(true);
}
return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA), JSON_UNESCAPED_UNICODE), true);
}
/**
* Get service config.
*
* @author yansongda <me@yansongda.cn>
*
* @param string|null $key
* @param mixed|null $default
*
* @return mixed|null
*/
public function getConfig($key = null, $default = null)
{
if (is_null($key)) {
return $this->config->all();
}
if ($this->config->has($key)) {
return $this->config[$key];
}
return $default;
}
/**
* Get app id according to param type.
*
* @author yansongda <me@yansongda.cn>
*
* @param string $type
*/
public static function getTypeName($type = ''): string
{
switch ($type) {
case '':
$type = 'app_id';
break;
case 'app':
$type = 'appid';
break;
default:
$type = $type.'_id';
}
return $type;
}
/**
* Get Base Uri.
*
* @author yansongda <me@yansongda.cn>
*
* @return string
*/
public function getBaseUri()
{
return $this->baseUri;
}
/**
* processingApiResult.
*
* @author yansongda <me@yansongda.cn>
*
* @param $endpoint
*
* @throws GatewayException
* @throws InvalidArgumentException
* @throws InvalidSignException
*
* @return Collection
*/
protected static function processingApiResult($endpoint, array $result)
{
if (!isset($result['return_code']) || 'SUCCESS' != $result['return_code']) {
throw new GatewayException('Get Wechat API Error:'.($result['return_msg'] ?? $result['retmsg'] ?? ''), $result);
}
if (isset($result['result_code']) && 'SUCCESS' != $result['result_code']) {
throw new BusinessException('Wechat Business Error: '.$result['err_code'].' - '.$result['err_code_des'], $result);
}
if (false !== strpos($endpoint, 'xdc/apiv2getsignkey') ||
false !== strpos($endpoint, 'mmpaymkttransfers') ||
self::generateSign($result) === $result['sign']) {
return new Collection($result);
}
Events::dispatch(new Events\SignFailed('Wechat', '', $result));
throw new InvalidSignException('Wechat Sign Verify FAILED', $result);
}
/**
* setDevKey.
*
* @author yansongda <me@yansongda.cn>
*
* @throws GatewayException
* @throws InvalidArgumentException
* @throws InvalidSignException
* @throws Exception
*
* @return Support
*/
private static function setDevKey()
{
if (Wechat::MODE_DEV == self::$instance->mode) {
$data = [
'mch_id' => self::$instance->mch_id,
'nonce_str' => Str::random(),
];
$data['sign'] = self::generateSign($data);
$result = self::requestApi('https://api.mch.weixin.qq.com/xdc/apiv2getsignkey/sign/getsignkey', $data);
self::$instance->config->set('key', $result['sandbox_signkey']);
}
return self::$instance;
}
/**
* Set Http options.
*
* @author yansongda <me@yansongda.cn>
*/
private function setHttpOptions(): self
{
if ($this->config->has('http') && is_array($this->config->get('http'))) {
$this->config->forget('http.base_uri');
$this->httpOptions = $this->config->get('http');
}
return $this;
}
}