Update:
This commit is contained in:
parent
d604d56812
commit
b509d32551
@ -2,14 +2,10 @@
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Dotenv\Dotenv;
|
||||
use Illuminate\Support\Facades\App;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use EasyWeChat\Pay\Application as WePay;
|
||||
use Alipay\EasySDK\Kernel\Config as AlipayConfig;
|
||||
use Alipay\EasySDK\Kernel\Factory as AlipayFactory;
|
||||
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
@ -45,82 +41,47 @@ public function boot()
|
||||
])->baseUrl($url);
|
||||
});
|
||||
|
||||
AlipayFactory::setOptions($this->alipayOptions());
|
||||
// $wechat_pay_config = [
|
||||
// 'mch_id' => config('payment.wepay.mch_id'),
|
||||
|
||||
$wechat_pay_config = [
|
||||
'mch_id' => config('payment.wepay.mch_id'),
|
||||
// // 商户证书
|
||||
// 'private_key' => __DIR__ . '/certs/apiclient_key.pem',
|
||||
// 'certificate' => __DIR__ . '/certs/apiclient_cert.pem',
|
||||
|
||||
// 商户证书
|
||||
'private_key' => __DIR__ . '/certs/apiclient_key.pem',
|
||||
'certificate' => __DIR__ . '/certs/apiclient_cert.pem',
|
||||
// // v3 API 秘钥
|
||||
// 'secret_key' =>
|
||||
// config('payment.wepay.v3_secret_key'),
|
||||
|
||||
// v3 API 秘钥
|
||||
'secret_key' =>
|
||||
config('payment.wepay.v3_secret_key'),
|
||||
// // v2 API 秘钥
|
||||
// 'v2_secret_key' => config('payment.wepay.v2_secret_key'),
|
||||
|
||||
// v2 API 秘钥
|
||||
'v2_secret_key' => config('payment.wepay.v2_secret_key'),
|
||||
// // 平台证书:微信支付 APIv3 平台证书,需要使用工具下载
|
||||
// // 下载工具:https://github.com/wechatpay-apiv3/CertificateDownloader
|
||||
// 'platform_certs' => [
|
||||
// // '/path/to/wechatpay/cert.pem',
|
||||
// ],
|
||||
|
||||
// 平台证书:微信支付 APIv3 平台证书,需要使用工具下载
|
||||
// 下载工具:https://github.com/wechatpay-apiv3/CertificateDownloader
|
||||
'platform_certs' => [
|
||||
// '/path/to/wechatpay/cert.pem',
|
||||
],
|
||||
// /**
|
||||
// * 接口请求相关配置,超时时间等,具体可用参数请参考:
|
||||
// * https://github.com/symfony/symfony/blob/5.3/src/Symfony/Contracts/HttpClient/HttpClientInterface.php
|
||||
// */
|
||||
// 'http' => [
|
||||
// 'throw' => true, // 状态码非 200、300 时是否抛出异常,默认为开启
|
||||
// 'timeout' => 5.0,
|
||||
// ],
|
||||
// ];
|
||||
|
||||
/**
|
||||
* 接口请求相关配置,超时时间等,具体可用参数请参考:
|
||||
* https://github.com/symfony/symfony/blob/5.3/src/Symfony/Contracts/HttpClient/HttpClientInterface.php
|
||||
*/
|
||||
'http' => [
|
||||
'throw' => true, // 状态码非 200、300 时是否抛出异常,默认为开启
|
||||
'timeout' => 5.0,
|
||||
],
|
||||
];
|
||||
// $app = new WePay($wechat_pay_config);
|
||||
|
||||
$app = new WePay($wechat_pay_config);
|
||||
|
||||
// mount app to global
|
||||
app()->instance('wepay', $app);
|
||||
}
|
||||
|
||||
private function alipayOptions()
|
||||
{
|
||||
$options = new AlipayConfig();
|
||||
$options->protocol = 'https';
|
||||
|
||||
// if local
|
||||
if (app()->environment() == 'local') {
|
||||
$options->gatewayHost = 'openapi.alipaydev.com';
|
||||
} else {
|
||||
$options->gatewayHost = 'openapi.alipay.com';
|
||||
}
|
||||
|
||||
$options->signType = 'RSA2';
|
||||
|
||||
$options->appId = config('payment.alipay.app_id');
|
||||
|
||||
// 为避免私钥随源码泄露,推荐从文件中读取私钥字符串而不是写入源码中
|
||||
$options->merchantPrivateKey = trim(Storage::get('alipayAppPriv.key'));
|
||||
|
||||
$options->alipayCertPath = storage_path('app/alipayCertPublicKey_RSA2.crt');
|
||||
$options->alipayRootCertPath = storage_path('app/alipayRootCert.crt');
|
||||
$options->merchantCertPath = storage_path('app/appCertPublicKey.crt');
|
||||
|
||||
//注:如果采用非证书模式,则无需赋值上面的三个证书路径,改为赋值如下的支付宝公钥字符串即可
|
||||
// $options->alipayPublicKey = Storage::get('alipayCertPublicKey_RSA2.crt');
|
||||
|
||||
//可设置异步通知接收服务地址(可选)
|
||||
$options->notifyUrl = route('balances.notify');
|
||||
|
||||
|
||||
return $options;
|
||||
// // mount app to global
|
||||
// app()->instance('wepay', $app);
|
||||
}
|
||||
|
||||
|
||||
public function generateInstanceId()
|
||||
{
|
||||
if (config('app.instance_id') == null) {
|
||||
$instance_id = md5(uniqid());
|
||||
$instance_id = uniqid();
|
||||
|
||||
// 获取 .env 目录
|
||||
$env_path = dirname(__DIR__) . '/../.env';
|
||||
|
Loading…
Reference in New Issue
Block a user