2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\controller\api\v1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use crmeb\services\AliPayService;
|
|
|
|
|
use crmeb\services\wechat\Payment;
|
|
|
|
|
use EasyWeChat\Kernel\Exceptions\Exception;
|
|
|
|
|
use EasyWeChat\Kernel\Exceptions\InvalidArgumentException;
|
|
|
|
|
use EasyWeChat\Kernel\Exceptions\RuntimeException;
|
|
|
|
|
use think\Response;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 支付相关回调
|
|
|
|
|
* Class Pay
|
|
|
|
|
* @package app\api\controller\v1
|
|
|
|
|
*/
|
|
|
|
|
class Pay
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 支付回调
|
|
|
|
|
* @param string $type
|
|
|
|
|
* @return string|Response
|
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
|
* @throws RuntimeException
|
|
|
|
|
* @throws \ReflectionException
|
|
|
|
|
* @throws \Throwable
|
|
|
|
|
*/
|
|
|
|
|
public function notify(string $type)
|
|
|
|
|
{
|
|
|
|
|
switch (urldecode($type)) {
|
|
|
|
|
case 'alipay':
|
|
|
|
|
return AliPayService::handleNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'routine':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::MINI)->handleNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'wechat':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::WEB)->handleNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'app':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::APP)->handleNotify();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 退款回调
|
|
|
|
|
* @param string $type
|
|
|
|
|
* @return Response
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public function refund(string $type)
|
|
|
|
|
{
|
|
|
|
|
switch (urldecode($type)) {
|
|
|
|
|
case 'alipay':
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case 'routine':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::MINI)->handleRefundedNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'wechat':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::WEB)->handleRefundedNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'app':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::APP)->handleRefundedNotify();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 商户转账回调
|
|
|
|
|
* @param string $type
|
|
|
|
|
* @return Response|void
|
|
|
|
|
* User: liusl
|
|
|
|
|
* DateTime: 2025/2/14 下午3:06
|
|
|
|
|
*/
|
|
|
|
|
public function mchNotify(string $type)
|
|
|
|
|
{
|
|
|
|
|
switch (urldecode($type)) {
|
|
|
|
|
case 'mini':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::MINI)->handleMchNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'web':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::WEB)->handleMchNotify();
|
|
|
|
|
break;
|
|
|
|
|
case 'app':
|
|
|
|
|
return Payment::instance()->setAccessEnd(Payment::APP)->handleMchNotify();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|