初始版本

This commit is contained in:
贾祥聪
2025-08-19 14:16:51 +08:00
commit f937a1f9b9
4373 changed files with 359728 additions and 0 deletions

View File

@@ -0,0 +1,127 @@
<?php
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权购买去版权授权后方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
namespace app\adminapi\validate\setting;
use app\common\enum\PayEnum;
use app\common\model\pay\PayConfig;
use app\common\validate\BaseValidate;
class PayConfigValidate extends BaseValidate
{
protected $rule = [
'id' => 'require|checkId',
'name' => 'require|checkName',
'image' => 'require',
'sort' => 'require|number|max:5',
];
protected $message = [
'id.require' => '参数错误',
'name.require' => '支付名称不能为空',
'image.require' => '支付图标不能为空',
'sort.require' => '排序不能为空',
'sort,number' => '排序必须是纯数字',
'sort.max' => '排序最大不能超过五位数',
];
public function sceneEdit()
{
return $this->only(['id','name','image','sort']);
}
/**
* @notes 校验支付设置信息
* @param $value
* @param $rule
* @param $data
* @return bool|string
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author ljj
* @date 2022/2/15 6:09 下午
*/
public function checkId($value,$rule,$data)
{
$result = PayConfig::where('id',$value)->find();
if (empty($result)) {
return '支付方式不存在';
}
if ($result['pay_way'] == PayEnum::WECHAT_PAY) {
if (!isset($data['interface_version']) || empty($data['interface_version'])) {
return '微信支付接口版本不能为空';
}
if (!isset($data['merchant_type']) || empty($data['merchant_type'])) {
return '商户类型不能为空';
}
if (!isset($data['mch_id']) || empty($data['mch_id'])) {
return '微信支付商户号不能为空';
}
if (!isset($data['pay_sign_key']) || empty($data['pay_sign_key'])) {
return '商户API密钥不能为空';
}
if (!isset($data['apiclient_cert']) || empty($data['apiclient_cert'])) {
return '微信支付证书不能为空';
}
if (!isset($data['apiclient_key']) || empty($data['apiclient_key'])) {
return '微信支付证书密钥不能为空';
}
}
if ($result['pay_way'] == PayEnum::ALI_PAY) {
// if (!isset($data['mode']) || empty($data['mode'])) {
// return '模式不能为空';
// }
if (!isset($data['merchant_type']) || empty($data['merchant_type'])) {
return '商户类型不能为空';
}
if (!isset($data['app_id']) || empty($data['app_id'])) {
return '应用ID不能为空';
}
if (!isset($data['private_key']) || empty($data['private_key'])) {
return '应用私钥不能为空';
}
if (!isset($data['ali_public_key']) || empty($data['ali_public_key'])) {
return '支付宝公钥不能为空';
}
}
return true;
}
/**
* @notes 检查支付名称是否已存在
* @param $value
* @param $rule
* @param $data
* @return bool|string
* @author ljj
* @date 2022/2/15 6:09 下午
*/
public function checkName($value,$rule,$data)
{
$result = PayConfig::where('name', $value)->where('id','<>', $data['id'])->findOrEmpty();
if (!$result->isEmpty()) {
return '支付名称已存在';
}
return true;
}
}