mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update WechatService.php
This commit is contained in:
parent
b142006a01
commit
1809ee9153
@ -195,13 +195,14 @@ class WechatService extends Service
|
|||||||
'mch_key' => sysconf('wechat.mch_key'),
|
'mch_key' => sysconf('wechat.mch_key'),
|
||||||
'cache_path' => $this->app->getRuntimePath() . 'wechat',
|
'cache_path' => $this->app->getRuntimePath() . 'wechat',
|
||||||
];
|
];
|
||||||
|
$local = LocalStorage::instance();
|
||||||
switch (strtolower(sysconf('wechat.mch_ssl_type'))) {
|
switch (strtolower(sysconf('wechat.mch_ssl_type'))) {
|
||||||
case 'p12':
|
case 'p12':
|
||||||
$options['ssl_p12'] = LocalStorage::instance()->path(sysconf('wechat.mch_ssl_p12'), true);
|
$options['ssl_p12'] = $local->path(sysconf('wechat.mch_ssl_p12'), true);
|
||||||
break;
|
break;
|
||||||
case 'pem':
|
case 'pem':
|
||||||
$options['ssl_key'] = LocalStorage::instance()->path(sysconf('wechat.mch_ssl_key'), true);
|
$options['ssl_key'] = $local->path(sysconf('wechat.mch_ssl_key'), true);
|
||||||
$options['ssl_cer'] = LocalStorage::instance()->path(sysconf('wechat.mch_ssl_cer'), true);
|
$options['ssl_cer'] = $local->path(sysconf('wechat.mch_ssl_cer'), true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return $options;
|
return $options;
|
||||||
@ -276,7 +277,7 @@ class WechatService extends Service
|
|||||||
*/
|
*/
|
||||||
public function getWebJssdkSign(?string $location = null)
|
public function getWebJssdkSign(?string $location = null)
|
||||||
{
|
{
|
||||||
$location = is_null($location) ? $this->app->request->url(true) : $location;
|
$location = $location ?: $this->app->request->url(true);
|
||||||
if ($this->getType() === 'api') {
|
if ($this->getType() === 'api') {
|
||||||
return self::WeChatScript()->getJsSign($location);
|
return self::WeChatScript()->getJsSign($location);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user