Files
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

154 lines
3.8 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\services\wechat\config;
use crmeb\services\wechat\contract\ConfigHandlerInterface;
use crmeb\services\wechat\DefaultConfig;
use JetBrains\PhpStorm\ArrayShape;
use JetBrains\PhpStorm\Pure;
/**
* 支付配置
* Class PaymentConfig
* @package crmeb\services\wechat\config
*/
class PaymentConfig implements ConfigHandlerInterface
{
/**
* appid
* @var string
*/
public string $appId;
/**
* 商户密钥
* @var string
*/
public string $mchId;
/**
* 小程序商户号
* @var string
*/
public string $routineMchId;
/**
* API密钥
* @var string
*/
public string $key;
/**
* 证书cert
* @var string
*/
public string $certPath;
/**
* 证书key
* @var string
*/
public string $keyPath;
/**
* 支付异步回调地址
* @var string
*/
public string $notifyUrl;
/**
* 退款异步通知
* @var string
*/
public string $refundUrl;
/**
* @var HttpCommonConfig
*/
protected HttpCommonConfig $httpConfig;
/**
* @var bool
*/
protected bool $init = false;
/**
* PaymentConfig constructor.
* @param HttpCommonConfig $commonConfig
*/
public function __construct(HttpCommonConfig $commonConfig)
{
$this->httpConfig = $commonConfig;
$this->init();
}
/**
* 初始化
* @author 等风来
* @email 136327134@qq.com
* @date 2023/9/18
*/
protected function init()
{
if ($this->init) {
return;
}
$this->init = true;
$this->appId = $this->httpConfig->getConfig(DefaultConfig::OFFICIAL_APPID, '');
$this->mchId = $this->httpConfig->getConfig(DefaultConfig::PAY_MCHID, '');
$this->routineMchId = $this->httpConfig->getConfig('pay.routine_mchid', '');
$this->key = $this->httpConfig->getConfig('pay.key', '');
$certPath = env('RECEPTACLE_ENABLE', false) ? env('RECEPTACLE_PAYCERT', '') : $this->httpConfig->getConfig('pay.client_cert', '');
$keyPath = env('RECEPTACLE_ENABLE', false) ? env('RECEPTACLE_PAYKEY', '') : $this->httpConfig->getConfig('pay.client_key', '');
$this->certPath = str_replace('//', '/', public_path() . $certPath);
$this->keyPath = str_replace('//', '/', public_path() . $keyPath);
$this->notifyUrl = trim($this->httpConfig->getConfig(DefaultConfig::COMMENT_URL)) . DefaultConfig::value('pay.notifyUrl');
$this->refundUrl = trim($this->httpConfig->getConfig(DefaultConfig::COMMENT_URL)) . DefaultConfig::value('pay.refundUrl');
}
/**
* 获取配置
* @param string $key
* @param null $default
* @return mixed
*/
public function getConfig(string $key, $default = null)
{
return $this->httpConfig->getConfig($key, $default);
}
/**
* 全部配置
* @return array
*/
#[Pure]
#[ArrayShape([
'app_id' => "string",
'mch_id' => "string",
'v2_secret_key' => "string",
'private_key' => "string",
'certificate' => "string",
'notify_url' => "string",
'log' => "array",
'http' => "bool[]"
])]
public function all(): array
{
return [
'app_id' => $this->appId,
'mch_id' => $this->mchId,
'v2_secret_key' => $this->key,
'private_key' => $this->keyPath,
'certificate' => $this->certPath,
'notify_url' => $this->notifyUrl,
'http' => $this->httpConfig->all()
];
}
}