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

74 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\Wechat;
use Yansongda\Pay\Pay;
class WxpayGateway extends Service
{
/**
* @var array
*/
protected $settings;
public function __construct($options = [])
{
$defaults = $this->getSettings('pay.wxpay');
$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 Wechat
*/
public function getInstance()
{
$config = $this->getConfig();
$level = $config->get('env') == ENV_DEV ? 'debug' : 'info';
$options = [
'appid' => $this->settings['app_id'], // App AppId
'app_id' => $this->settings['mp_app_id'], // 公众号 AppId
'miniapp_id' => $this->settings['mini_app_id'], // 小程序 AppId
'mch_id' => $this->settings['mch_id'],
'key' => $this->settings['key'],
'notify_url' => $this->settings['notify_url'],
'return_url' => $this->settings['return_url'],
'cert_client' => config_path('wxpay/apiclient_cert.pem'),
'cert_key' => config_path('wxpay/apiclient_key.pem'),
'log' => [
'file' => log_path('wxpay.log'),
'level' => $level,
'type' => 'daily',
'max_file' => 30,
],
];
if ($config->get('env') == ENV_DEV) {
$options['mode'] = 'dev';
}
return Pay::wechat($options);
}
}