CRMEB_PRO_M/crmeb/services/wechat/config/V3PaymentConfig.php

196 lines
5.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* +----------------------------------------------------------------------
* | CRMEB [ CRMEB赋能开发者助力企业发展 ]
* +----------------------------------------------------------------------
* | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
* +----------------------------------------------------------------------
* | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
* +----------------------------------------------------------------------
* | Author: CRMEB Team <admin@crmeb.com>
* +----------------------------------------------------------------------
*/
namespace crmeb\services\wechat\config;
use crmeb\services\wechat\contract\ConfigHandlerInterface;
use crmeb\services\wechat\DefaultConfig;
/**
* Class V3PaymentConfig
* @author 等风来
* @email 136327134@qq.com
* @date 2022/9/30
* @package crmeb\services\wechat\config
*/
class V3PaymentConfig implements ConfigHandlerInterface
{
/**
* appid
* @var string
*/
protected $appId;
/**
* 商户密钥
* @var string
*/
protected $mchId;
/**
* API密钥
* @var string
*/
protected $key;
/**
* 证书序列号
* @var string
*/
protected $serialNo;
/**
* 证书cert
* @var string
*/
protected $certPath;
/**
* 证书key
* @var string
*/
protected $keyPath;
/**
* 支付异步回调地址
* @var string
*/
protected $notifyUrl;
/**
* 退款异步通知
* @var string
*/
protected $refundUrl;
/**
* 是否v3支付
* @var bool
*/
protected $isV3PAy = true;
/**
* @var LogCommonConfig
*/
protected $logConfig;
/**
* @var HttpCommonConfig
*/
protected $httpConfig;
/**
* @var bool
*/
protected $init = false;
/**
* PaymentConfig constructor.
* @param LogCommonConfig $config
* @param HttpCommonConfig $commonConfig
*/
public function __construct(LogCommonConfig $config, HttpCommonConfig $commonConfig)
{
$this->logConfig = $config;
$this->httpConfig = $commonConfig;
}
protected function init()
{
if ($this->init) {
return;
}
$this->init = true;
$this->appId = $this->appId ?: $this->httpConfig->getConfig(DefaultConfig::OFFICIAL_APPID, '');
$this->mchId = $this->mchId ?: $this->httpConfig->getConfig(DefaultConfig::PAY_MCHID, '');
$this->serialNo = $this->serialNo ?: $this->httpConfig->getConfig('v3_pay.serial_no', '');
$this->key = $this->key ?: $this->httpConfig->getConfig('v3_pay.key', '');
$this->isV3PAy = !!$this->httpConfig->getConfig('v3_pay.pay_type', false);
$this->certPath = $this->certPath ?: str_replace('//', '/', public_path() . $this->httpConfig->getConfig('pay.client_cert', ''));
$this->keyPath = $this->keyPath ?: str_replace('//', '/', public_path() . $this->httpConfig->getConfig('pay.client_key', ''));
$this->notifyUrl = $this->notifyUrl ?: trim($this->httpConfig->getConfig(DefaultConfig::COMMENT_URL)) . DefaultConfig::value('pay.notifyUrl');
$this->refundUrl = $this->refundUrl ?: trim($this->httpConfig->getConfig(DefaultConfig::COMMENT_URL)) . DefaultConfig::value('pay.refundUrl');
}
/**
* @param string $key
* @param $value
* @return $this|mixed
* @author 等风来
* @email 136327134@qq.com
* @date 2022/9/30
*/
public function set(string $key, $value)
{
$this->{$key} = $value;
return $this;
}
/**
* @param string|null $key
* @return array|bool[]|false[]|mixed
* @author 等风来
* @email 136327134@qq.com
* @date 2022/9/30
*/
public function get(string $key = null)
{
$this->init();
if ('log' === $key) {
return $this->logConfig->all();
}
if ('http' === $key) {
return $this->httpConfig->all();
}
return $this->{$key};
}
/**
* @return array
* @author 等风来
* @email 136327134@qq.com
* @date 2022/9/30
*/
public function all(): array
{
$this->init();
return [
'app_id' => $this->appId,
'serial_no' => $this->serialNo,
'mch_id' => $this->mchId,
'key' => $this->key,
'cert_path' => $this->certPath,
'key_path' => $this->keyPath,
'notify_url' => $this->notifyUrl,
'log' => $this->logConfig->all(),
'http' => $this->httpConfig->all(),
'other' => [
'wechat' => [
'appid' => $this->httpConfig->getConfig(DefaultConfig::OFFICIAL_APPID, ''),
],
'web' => [
'appid' => $this->httpConfig->getConfig(DefaultConfig::WEB_APPID, ''),
],
'app' => [
'appid' => $this->httpConfig->getConfig(DefaultConfig::APP_APPID, ''),
],
'miniprog' => [
'appid' => $this->httpConfig->getConfig(DefaultConfig::MINI_APPID, ''),
]
],
];
}
}