1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-28 05:11:39 +08:00
course-tencent-cloud/app/Services/Pay/AlipayGateway.php
koogua 0336a54911 1.源文件增加版权信息
2.群组状态和课程协同
2021-06-13 15:49:47 +08:00

72 lines
1.8 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Services\Pay;
use App\Services\Service;
use Yansongda\Pay\Gateways\Alipay;
use Yansongda\Pay\Pay;
class AlipayGateway extends Service
{
/**
* @var array
*/
protected $settings;
public function __construct($options = [])
{
$defaults = $this->getSettings('pay.alipay');
$this->settings = array_merge($defaults, $options);
}
public function setReturnUrl($returnUrl)
{
$this->settings['return_url'] = $returnUrl;
}
public function setNotifyUrl($notifyUrl)
{
$this->settings['notify_url'] = $notifyUrl;
}
/**
* @return Alipay
*/
public function getInstance()
{
$config = $this->getConfig();
$level = $config->get('env') == ENV_DEV ? 'debug' : 'info';
$options = [
'app_id' => $this->settings['app_id'],
'private_key' => $this->settings['private_key'],
'ali_public_key' => config_path('alipay/alipayCertPublicKey.crt'), // 支付宝公钥证书
'alipay_root_cert' => config_path('alipay/alipayRootCert.crt'), // 支付宝根证书
'app_cert_public_key' => config_path('alipay/appCertPublicKey.crt'), // 应用公钥证书
'notify_url' => $this->settings['notify_url'],
'return_url' => $this->settings['return_url'],
'log' => [
'file' => log_path('alipay.log'),
'level' => $level,
'type' => 'daily',
'max_file' => 30,
],
];
if ($config->get('env') == ENV_DEV) {
$options['mode'] = 'dev';
}
return Pay::alipay($options);
}
}