mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 02:53:04 +08:00
92 lines
2.1 KiB
PHP
92 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Http\Api\Controllers;
|
|
|
|
use App\Services\Logic\Refund\RefundCancel as RefundCancelService;
|
|
use App\Services\Logic\Refund\RefundConfirm as RefundConfirmService;
|
|
use App\Services\Logic\Refund\RefundCreate as RefundCreateService;
|
|
use App\Services\Logic\Refund\RefundInfo as RefundInfoService;
|
|
|
|
/**
|
|
* @RoutePrefix("/api/refund")
|
|
*/
|
|
class RefundController extends Controller
|
|
{
|
|
|
|
/**
|
|
* @Get("/confirm", name="api.refund.confirm")
|
|
*/
|
|
public function confirmAction()
|
|
{
|
|
$sn = $this->request->getQuery('sn', 'string');
|
|
|
|
$service = new RefundConfirmService();
|
|
|
|
$confirm = $service->handle($sn);
|
|
|
|
return $this->jsonSuccess(['confirm' => $confirm]);
|
|
}
|
|
|
|
/**
|
|
* @Get("/info", name="api.refund.info")
|
|
*/
|
|
public function infoAction()
|
|
{
|
|
$sn = $this->request->getQuery('sn', 'string');
|
|
|
|
$service = new RefundInfoService();
|
|
|
|
$refund = $service->handle($sn);
|
|
|
|
if ($refund['deleted'] == 1) {
|
|
$this->notFound();
|
|
}
|
|
|
|
if ($refund['me']['owned'] == 0) {
|
|
$this->forbidden();
|
|
}
|
|
|
|
return $this->jsonSuccess(['refund' => $refund]);
|
|
}
|
|
|
|
/**
|
|
* @Post("/create", name="api.refund.create")
|
|
*/
|
|
public function createAction()
|
|
{
|
|
$service = new RefundCreateService();
|
|
|
|
$refund = $service->handle();
|
|
|
|
$service = new RefundInfoService();
|
|
|
|
$refund = $service->handle($refund->sn);
|
|
|
|
return $this->jsonSuccess(['refund' => $refund]);
|
|
}
|
|
|
|
/**
|
|
* @Post("/cancel", name="api.refund.cancel")
|
|
*/
|
|
public function cancelAction()
|
|
{
|
|
$sn = $this->request->getPost('sn', 'string');
|
|
|
|
$service = new RefundCancelService();
|
|
|
|
$service->handle($sn);
|
|
|
|
$service = new RefundInfoService();
|
|
|
|
$refund = $service->handle($sn);
|
|
|
|
return $this->jsonSuccess(['refund' => $refund]);
|
|
}
|
|
|
|
}
|