2024-05-30 19:16:59 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Api\Controller;
|
|
|
|
|
|
|
|
|
|
use Yansongda\Pay\Pay;
|
|
|
|
|
|
|
|
|
|
class PayController extends PublicController
|
|
|
|
|
{
|
2024-06-04 14:43:23 +08:00
|
|
|
|
/**
|
|
|
|
|
* @description: 子类的初始化
|
|
|
|
|
*/
|
|
|
|
|
public function _initialize()
|
2024-06-05 20:04:31 +08:00
|
|
|
|
{
|
2024-06-04 20:43:25 +08:00
|
|
|
|
//初始化 pay类的参数
|
|
|
|
|
$this->config = [
|
|
|
|
|
'wechat' => [
|
|
|
|
|
'default' => [
|
|
|
|
|
'mch_id' => C('weixin')['mch_id'], // 必填-商户号
|
|
|
|
|
'mch_secret_key' => C('weixin')['mch_secret_key'], // 必填-v3商户秘钥
|
|
|
|
|
'mch_secret_cert' => C('weixin')['mch_secret_cert'], // 必填-商户私钥路径
|
|
|
|
|
'mch_public_cert_path' => C('weixin')['mch_public_cert_path'], // 必填-商户公钥证书路径
|
|
|
|
|
'notify_url' => C('host') . 'flycube.php/Api/Pay/notifyCallback', // 必填-回调通知地址
|
|
|
|
|
'mini_app_id' => C('weixin')['appid'], // 选填-小程序 的 app_id
|
|
|
|
|
'wechat_public_cert_path' => [ // 必填-微信平台公钥证书路径
|
|
|
|
|
'5878026B07BD819CCC25AC95FA31AE45BB6BC0D9' => C('weixin')['wechat_public_cert_path'],
|
|
|
|
|
],
|
2024-05-30 19:16:59 +08:00
|
|
|
|
],
|
|
|
|
|
],
|
2024-06-04 20:43:25 +08:00
|
|
|
|
'logger' => [ // optional
|
|
|
|
|
'enable' => true,
|
|
|
|
|
'file' => C('weixin')['payLogger_path'],
|
|
|
|
|
'level' => 'info', // 建议生产环境等级调整为 info,开发环境为 debug
|
|
|
|
|
'type' => 'single', // optional, 可选 daily
|
|
|
|
|
'max_file' => 30, // optional, 当 type 为 daily 时有效,默认 30 天
|
|
|
|
|
],
|
|
|
|
|
'http' => [ // optional
|
|
|
|
|
'timeout' => 5.0,
|
|
|
|
|
'connect_timeout' => 5.0,
|
|
|
|
|
],
|
|
|
|
|
];
|
2024-06-05 21:08:17 +08:00
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* @description: Yansongda pay类的参数
|
|
|
|
|
*/
|
|
|
|
|
protected $config;
|
|
|
|
|
/**
|
|
|
|
|
* @description: 发起小程序支付
|
|
|
|
|
*/
|
|
|
|
|
public function pay()
|
|
|
|
|
{
|
|
|
|
|
//父级构造函数
|
|
|
|
|
parent::_initialize();
|
2024-06-05 20:04:31 +08:00
|
|
|
|
|
2024-06-05 19:33:35 +08:00
|
|
|
|
//获取订单信息
|
|
|
|
|
$where['order_sn'] = $_REQUEST['order_sn'];
|
2024-06-20 19:23:40 +08:00
|
|
|
|
$field = array('order_sn,shop_id,total_price,total_weight,openid');
|
|
|
|
|
$orderDb = D('order');
|
2024-06-20 19:47:26 +08:00
|
|
|
|
if (!$order = $orderDb->where($where)->field($field)->find()) {
|
2024-06-20 19:23:40 +08:00
|
|
|
|
echo json_encode(array('status' => 0, 'msg' => '订单不存在'));
|
|
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
//订单检查
|
|
|
|
|
$whereShop['shop_id'] = $order['shop_id'];
|
|
|
|
|
$fieldShop = array('price_min', 'weight_max');
|
|
|
|
|
$shopDb = D('shop');
|
2024-06-20 19:47:26 +08:00
|
|
|
|
if (!$shop = $shopDb->where($whereShop)->field($fieldShop)->find()) {
|
2024-06-20 19:23:40 +08:00
|
|
|
|
echo json_encode(array('status' => 0, 'msg' => '商铺不存在'));
|
|
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
if ($order['openid'] != $this->openid || (float)$order['total_price'] < (float)$shop['price_min'] || $order['total_weight'] > $shop['weight_max']) {
|
2024-06-20 20:10:19 +08:00
|
|
|
|
echo json_encode(array('status' => 0, 'msg' => '提交信息异常'));
|
2024-06-20 19:23:40 +08:00
|
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-05 19:33:35 +08:00
|
|
|
|
//设置获取签名的订单参数
|
|
|
|
|
$orderParameter = [
|
|
|
|
|
'out_trade_no' => $order['order_sn'],
|
2024-06-21 18:11:29 +08:00
|
|
|
|
'description' => '餐品', //存商品名称吧 后期在做调整
|
2024-06-21 18:12:47 +08:00
|
|
|
|
'attach' => strval($order['shop_id']), // 将 shop_id 转为字符串
|
2024-05-30 19:16:59 +08:00
|
|
|
|
'amount' => [
|
2024-06-05 19:38:31 +08:00
|
|
|
|
'total' => $order['total_price'] * 100, //单位:分
|
2024-05-30 19:16:59 +08:00
|
|
|
|
'currency' => 'CNY',
|
|
|
|
|
],
|
|
|
|
|
'payer' => [
|
|
|
|
|
'openid' => $this->openid,
|
|
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
try {
|
2024-06-05 19:33:35 +08:00
|
|
|
|
$pay = Pay::wechat($this->config)->mini($orderParameter);
|
2024-06-04 20:43:25 +08:00
|
|
|
|
echo json_encode(array('status' => 1, 'payMsg' => $pay));
|
2024-05-30 19:16:59 +08:00
|
|
|
|
} catch (\Exception $e) {
|
2024-06-04 20:43:25 +08:00
|
|
|
|
echo json_encode(array('status' => 0, 'msg' => 'Error: ' . $e->getMessage()));
|
2024-05-30 19:16:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-05 20:23:01 +08:00
|
|
|
|
/**
|
|
|
|
|
* @description: 支付成功后 腾讯服务器的回调
|
|
|
|
|
*/
|
2024-05-30 19:16:59 +08:00
|
|
|
|
public function notifyCallback()
|
|
|
|
|
{
|
2024-06-05 20:40:49 +08:00
|
|
|
|
// 实例化 Yansongda Pay
|
2024-06-05 21:08:17 +08:00
|
|
|
|
$result = Pay::wechat($this->config)->callback();
|
2024-06-21 17:58:31 +08:00
|
|
|
|
$this->publish('refreshQuestList/2dc23dcfecc05fb1', $result['resource']['ciphertext']['attach']);
|
2024-06-05 21:36:07 +08:00
|
|
|
|
try {
|
|
|
|
|
// 验证成功,处理业务逻辑
|
|
|
|
|
if ($result['resource']['ciphertext']['trade_state'] == 'SUCCESS') {
|
|
|
|
|
$where['order_sn'] = $result['resource']['ciphertext']['out_trade_no']; // 获取订单号
|
|
|
|
|
$orderDb = D('order'); // 实例化订单模型
|
2024-06-20 20:34:20 +08:00
|
|
|
|
$data['main_status'] = '已付款'; // 更新订单状态为已支付
|
2024-06-20 18:22:10 +08:00
|
|
|
|
$data['paid_time'] = time(); //标记付款时间
|
2024-06-05 21:36:07 +08:00
|
|
|
|
$data['pay_sn'] = $result['resource']['ciphertext']['transaction_id']; // 支付订单号
|
|
|
|
|
// 更新订单
|
|
|
|
|
$orderDb->where($where)->data($data)->save();
|
|
|
|
|
}
|
2024-06-12 18:11:34 +08:00
|
|
|
|
// 构建发布主题 并向地面终端提示刷新信息
|
2024-06-21 17:45:23 +08:00
|
|
|
|
// $topic = 'refreshQuestList/2dc23dcfecc05fb1';
|
|
|
|
|
// $this->publish('refreshQuestList/2dc23dcfecc05fb1', $result['resource']['ciphertext']['description']);
|
2024-06-05 21:36:07 +08:00
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
// 捕获并记录可能的异常
|
|
|
|
|
error_log('支付回调处理错误:' . $e->getMessage());
|
2024-06-05 21:13:04 +08:00
|
|
|
|
}
|
2024-06-05 20:40:49 +08:00
|
|
|
|
// 返回成功响应给腾讯服务器,告知通知已处理
|
2024-06-05 21:08:17 +08:00
|
|
|
|
return Pay::wechat()->success();
|
2024-05-30 19:16:59 +08:00
|
|
|
|
}
|
|
|
|
|
}
|