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
6b1542c22b
commit
bf528436e2
@ -128,22 +128,26 @@ class WechatService extends \We
|
|||||||
public static function instance($name, $type = 'WeChat', $config = [])
|
public static function instance($name, $type = 'WeChat', $config = [])
|
||||||
{
|
{
|
||||||
if (!in_array($type, ['WeChat', 'WeMini', 'WePay', 'AliPay'])) $type = self::$type;
|
if (!in_array($type, ['WeChat', 'WeMini', 'WePay', 'AliPay'])) $type = self::$type;
|
||||||
if (self::getType() === 'api' || in_array($type, ['WePay', 'AliPay'])) {
|
if (self::getType() === 'api' || in_array($type, ['WePay', 'AliPay']) || "{$type}{$name}" === 'WeChatPay') {
|
||||||
$class = "\\{$type}\\" . ucfirst(strtolower($name));
|
if (class_exists($class = "\\{$type}\\" . ucfirst(strtolower($name)))) {
|
||||||
if (class_exists($class)) return new $class(empty($config) ? self::config() : $config);
|
return new $class(empty($config) ? self::config() : $config);
|
||||||
throw new \think\Exception("Class '{$class}' not found");
|
} else {
|
||||||
|
throw new \think\Exception("Class '{$class}' not found");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
set_time_limit(3600);
|
||||||
|
list($appid, $appkey) = [sysconf('wechat_thr_appid'), sysconf('wechat_thr_appkey')];
|
||||||
|
$token = strtolower("{$name}-{$appid}-{$appkey}-{$type}");
|
||||||
|
if (class_exists('Yar_Client')) {
|
||||||
|
return new \Yar_Client(config('wechat.service_url') . "/service/api.client/yar/{$token}");
|
||||||
|
}
|
||||||
|
if (class_exists('SoapClient')) {
|
||||||
|
$location = config('wechat.service_url') . "/service/api.client/soap/{$token}";
|
||||||
|
return new \SoapClient(null, ['uri' => strtolower($name), 'location' => $location]);
|
||||||
|
} else {
|
||||||
|
throw new \think\Exception("Yar or soap extensions are not installed.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
set_time_limit(3600);
|
|
||||||
list($appid, $appkey) = [sysconf('wechat_thr_appid'), sysconf('wechat_thr_appkey')];
|
|
||||||
$token = strtolower("{$name}-{$appid}-{$appkey}-{$type}");
|
|
||||||
if (class_exists('Yar_Client')) {
|
|
||||||
return new \Yar_Client(config('wechat.service_url') . "/service/api.client/yar/{$token}");
|
|
||||||
}
|
|
||||||
if (class_exists('SoapClient')) {
|
|
||||||
$location = config('wechat.service_url') . "/service/api.client/soap/{$token}";
|
|
||||||
return new \SoapClient(null, ['uri' => strtolower($name), 'location' => $location]);
|
|
||||||
}
|
|
||||||
throw new \think\Exception("Yar or soap extensions are not installed.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -245,4 +249,4 @@ class WechatService extends \We
|
|||||||
throw new \think\Exception('请在后台配置微信对接授权模式');
|
throw new \think\Exception('请在后台配置微信对接授权模式');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user