12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- namespace app\controller\api;
- use qiniu\services\AliPayService;
- use qiniu\services\wechat\Payment;
- /**
- * 支付相关回调
- * Class Pay
- * @package app\controller\api\v1
- */
- class Pay
- {
- /**
- * 支付回调
- * @param string $type
- * @return string|\think\Response
- * @throws \EasyWeChat\Kernel\Exceptions\Exception
- */
- 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 \think\Response
- * @throws \EasyWeChat\Kernel\Exceptions\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;
- }
- }
- }
|