Application.php
5.2 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
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\Payment;
use Closure;
use EasyWeChat\BasicService;
use EasyWeChat\Kernel\Exceptions\InvalidArgumentException;
use EasyWeChat\Kernel\ServiceContainer;
use EasyWeChat\Kernel\Support;
use EasyWeChat\OfficialAccount;
/**
* Class Application.
*
* @property \EasyWeChat\Payment\Bill\Client $bill
* @property \EasyWeChat\Payment\Fundflow\Client $fundflow
* @property \EasyWeChat\Payment\Jssdk\Client $jssdk
* @property \EasyWeChat\Payment\Order\Client $order
* @property \EasyWeChat\Payment\Refund\Client $refund
* @property \EasyWeChat\Payment\Coupon\Client $coupon
* @property \EasyWeChat\Payment\Reverse\Client $reverse
* @property \EasyWeChat\Payment\Redpack\Client $redpack
* @property \EasyWeChat\BasicService\Url\Client $url
* @property \EasyWeChat\Payment\Transfer\Client $transfer
* @property \EasyWeChat\Payment\Security\Client $security
* @property \EasyWeChat\Payment\ProfitSharing\Client $profit_sharing
* @property \EasyWeChat\Payment\Contract\Client $contract
* @property \EasyWeChat\OfficialAccount\Auth\AccessToken $access_token
*
* @method mixed pay(array $attributes)
* @method mixed authCodeToOpenid(string $authCode)
*/
class Application extends ServiceContainer
{
/**
* @var array
*/
protected $providers = [
OfficialAccount\Auth\ServiceProvider::class,
BasicService\Url\ServiceProvider::class,
Base\ServiceProvider::class,
Bill\ServiceProvider::class,
Fundflow\ServiceProvider::class,
Coupon\ServiceProvider::class,
Jssdk\ServiceProvider::class,
Merchant\ServiceProvider::class,
Order\ServiceProvider::class,
Redpack\ServiceProvider::class,
Refund\ServiceProvider::class,
Reverse\ServiceProvider::class,
Sandbox\ServiceProvider::class,
Transfer\ServiceProvider::class,
Security\ServiceProvider::class,
ProfitSharing\ServiceProvider::class,
Contract\ServiceProvider::class,
];
/**
* @var array
*/
protected $defaultConfig = [
'http' => [
'base_uri' => 'https://api.mch.weixin.qq.com/',
],
];
/**
* Build payment scheme for product.
*/
public function scheme(string $productId): string
{
$params = [
'appid' => $this['config']->app_id,
'mch_id' => $this['config']->mch_id,
'time_stamp' => time(),
'nonce_str' => uniqid(),
'product_id' => $productId,
];
$params['sign'] = Support\generate_sign($params, $this['config']->key);
return 'weixin://wxpay/bizpayurl?'.http_build_query($params);
}
/**
* @return string
*/
public function codeUrlScheme(string $codeUrl)
{
return \sprintf('weixin://wxpay/bizpayurl?sr=%s', $codeUrl);
}
/**
* @return \Symfony\Component\HttpFoundation\Response
*
* @codeCoverageIgnore
*
* @throws \EasyWeChat\Kernel\Exceptions\Exception
*/
public function handlePaidNotify(Closure $closure)
{
return (new Notify\Paid($this))->handle($closure);
}
/**
* @return \Symfony\Component\HttpFoundation\Response
*
* @codeCoverageIgnore
*
* @throws \EasyWeChat\Kernel\Exceptions\Exception
*/
public function handleRefundedNotify(Closure $closure)
{
return (new Notify\Refunded($this))->handle($closure);
}
/**
* @return \Symfony\Component\HttpFoundation\Response
*
* @codeCoverageIgnore
*
* @throws \EasyWeChat\Kernel\Exceptions\Exception
*/
public function handleScannedNotify(Closure $closure)
{
return (new Notify\Scanned($this))->handle($closure);
}
/**
* Set sub-merchant.
*
* @return $this
*/
public function setSubMerchant(string $mchId, string $appId = null)
{
$this['config']->set('sub_mch_id', $mchId);
$this['config']->set('sub_appid', $appId);
return $this;
}
public function inSandbox(): bool
{
return (bool) $this['config']->get('sandbox');
}
/**
* @return string
*
* @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
*/
public function getKey(string $endpoint = null)
{
if ('sandboxnew/pay/getsignkey' === $endpoint) {
return $this['config']->key;
}
$key = $this->inSandbox() ? $this['sandbox']->getKey() : $this['config']->key;
if (empty($key)) {
throw new InvalidArgumentException('config key should not empty.');
}
if (32 !== strlen($key)) {
throw new InvalidArgumentException(sprintf("'%s' should be 32 chars length.", $key));
}
return $key;
}
/**
* @param string $name
* @param array $arguments
*
* @return mixed
*/
public function __call($name, $arguments)
{
return call_user_func_array([$this['base'], $name], $arguments);
}
}