niucloud-admin/niucloud/app/service/admin/pay/PayChannelService.php
2023-06-08 18:19:04 +08:00

180 lines
6.4 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
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\service\admin\pay;
use app\dict\common\ChannelDict;
use app\dict\pay\PayChannelDict;
use app\dict\pay\PayDict;
use app\model\pay\PayChannel;
use app\service\core\pay\CorePayChannelService;
use core\base\BaseAdminService;
use core\exception\PayException;
/**
* 支付配置服务层
*/
class PayChannelService extends BaseAdminService
{
public $core_pay_channel_service;
public function __construct()
{
parent::__construct();
$this->model = new PayChannel();
$this->core_pay_channel_service = new CorePayChannelService();
}
/**
* 添加模板
* @param array $data
*/
public function set(string $channel, string $type, array $data)
{
$where = array(
'type' => $type,
'channel' => $channel
);
if (!in_array($type, array_keys(PayDict::getPayType()))) throw new PayException('PATMENT_METHOD_INVALID');
if ($channel != 'transfer') {
if (!in_array($channel, array_keys(ChannelDict::getType()))) throw new PayException('CHANNEL_MARK_INVALID');
}
$pay_channel = $this->core_pay_channel_service->find($this->site_id, $where);
if ($pay_channel->isEmpty()) {
$data['channel'] = $channel;
$data['type'] = $type;
$data['site_id'] = $this->site_id;
$data['config'] = $this->getConfigByPayType($data['config'], $type);
$res = $this->model->create($data);
} else {
$data['config'] = $this->getConfigByPayType($data['config'], $type);
$pay_channel->save($data);
}
return true;
}
/**
* 用于后端支付渠道
* @return void
*/
public function getChannelList()
{
$channel_list = PayChannelDict::getPayChannel();
$where = array(
'site_id' => $this->site_id,
);
$pay_channel_list_temp = $this->model->where($where)->field('type, channel, config, sort, status')->select()->toArray();
$pay_channel_list = [];
foreach ($pay_channel_list_temp as $v) {
$pay_channel_list[$v['channel']][$v['type']] = $v;
}
foreach ($channel_list as $k => $v) {
$temp_item = $pay_channel_list[$k] ?? [];
foreach ($v['pay_type'] as $item_k => $item_v) {
$temp_v_item = $temp_item[$item_k] ?? ['status' => 0, 'config' => [], 'sort' => 0];
$item_v['config'] = $temp_v_item['config'];
$item_v['status'] = $temp_v_item['status'];
$item_v['sort'] = $temp_v_item['sort'];
$channel_list[$k]['pay_type'][$item_k] = $item_v;
}
$temp_pay_type = array_values($channel_list[$k]['pay_type']);
$sort = array_column($temp_pay_type, 'sort');
array_multisort($sort, SORT_ASC, $temp_pay_type);
$channel_list[$k]['pay_type'] = $temp_pay_type;
}
return $channel_list;
}
/**
* 通过渠道获取配置
* @param string $channel
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getListByChannel(string $channel)
{
$where = array(
'site_id' => $this->site_id,
'channel' => $channel
);
return $this->model->where($where)->field('type, channel, config, sort, status')->select()->toArray();
}
/**
* 通过支付方式获取配置格式
* @param $data
* @param $type
* @return array
*/
public function getConfigByPayType($data, $type)
{
$config = [];
switch ($type) {
case PayDict::WECHATPAY:
$config = [
'mch_id' => $data['mch_id'] ?? '',//商户号
'mch_secret_key' => $data['mch_secret_key'] ?? '',//商户秘钥 现在默认认为是v3版
'mch_secret_cert' => $data['mch_secret_cert'] ?? '',//商户私钥 字符串或路径
'mch_public_cert_path' => $data['mch_public_cert_path'] ?? '',//商户公钥证书路径
];
break;
case PayDict::ALIPAY:
$config = [
'app_id' => $data['app_id'] ?? '',// 必填-支付宝分配的 app_id
'app_secret_cert' => $data['app_secret_cert'] ?? '',// 必填-应用私钥 字符串或路径
'app_public_cert_path' => $data['app_public_cert_path'] ?? '',//必填-应用公钥证书 路径
'alipay_public_cert_path' => $data['alipay_public_cert_path'] ?? '',//必填-支付宝公钥证书 路径
'alipay_root_cert_path' => $data['alipay_root_cert_path'] ?? '',// 必填-支付宝根证书 路径
];
break;
}
return $config;
}
/**
* 设置打款设置
* @param $data
* @return true
*/
public function setTransfer($data)
{
$wechatpay_config = $data['wechatpay_config'];
$alipay_config = $data['alipay_config'];
$this->set('transfer', PayDict::WECHATPAY, [
'config' => $wechatpay_config,
'status' => 1,
]);
$this->set('transfer', PayDict::ALIPAY, [
'config' => $alipay_config,
'status' => 1,
]);
return true;
}
public function setAll($data){
foreach($data as $k => $v){
$temp_v = $v['pay_type'];
foreach($temp_v as $item_k => $item){
$this->set($k, $item['key'], [
'config' => $item['config'] ?? [],
'status' => $item['status'] ?? 0,
'sort' => $item['sort'] ?? 0,
]);
}
}
return true;
}
}