mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-20 19:07:03 +08:00
111 lines
2.6 KiB
PHP
111 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Home\Controllers;
|
|
|
|
use App\Models\Order as OrderModel;
|
|
use App\Services\Logic\Order\OrderCancel as OrderCancelService;
|
|
use App\Services\Logic\Order\OrderConfirm as OrderConfirmService;
|
|
use App\Services\Logic\Order\OrderCreate as OrderCreateService;
|
|
use App\Services\Logic\Order\OrderInfo as OrderInfoService;
|
|
use Phalcon\Mvc\Dispatcher;
|
|
use Phalcon\Mvc\View;
|
|
|
|
/**
|
|
* @RoutePrefix("/order")
|
|
*/
|
|
class OrderController extends Controller
|
|
{
|
|
|
|
public function beforeExecuteRoute(Dispatcher $dispatcher)
|
|
{
|
|
parent::beforeExecuteRoute($dispatcher);
|
|
|
|
if ($this->authUser->id == 0) {
|
|
$this->response->redirect(['for' => 'home.account.login']);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @Get("/info", name="home.order.info")
|
|
*/
|
|
public function infoAction()
|
|
{
|
|
$sn = $this->request->getQuery('sn', 'string');
|
|
|
|
$service = new OrderInfoService();
|
|
|
|
$order = $service->handle($sn);
|
|
|
|
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
|
|
$this->view->setVar('order', $order);
|
|
}
|
|
|
|
/**
|
|
* @Get("/confirm", name="home.order.confirm")
|
|
*/
|
|
public function confirmAction()
|
|
{
|
|
$itemId = $this->request->getQuery('item_id', 'int');
|
|
$itemType = $this->request->getQuery('item_type', 'int');
|
|
|
|
$service = new OrderConfirmService();
|
|
|
|
$confirm = $service->handle($itemId, $itemType);
|
|
|
|
$this->view->setVar('confirm', $confirm);
|
|
}
|
|
|
|
/**
|
|
* @Post("/create", name="home.order.create")
|
|
*/
|
|
public function createAction()
|
|
{
|
|
$service = new OrderCreateService();
|
|
|
|
$order = $service->handle();
|
|
|
|
$location = $this->url->get(
|
|
['for' => 'home.order.pay'],
|
|
['sn' => $order->sn]
|
|
);
|
|
|
|
return $this->jsonSuccess(['location' => $location]);
|
|
}
|
|
|
|
/**
|
|
* @Get("/pay", name="home.order.pay")
|
|
*/
|
|
public function payAction()
|
|
{
|
|
$sn = $this->request->getQuery('sn', 'string');
|
|
|
|
$service = new OrderInfoService();
|
|
|
|
$order = $service->handle($sn);
|
|
|
|
if ($order['status'] != OrderModel::STATUS_PENDING) {
|
|
$this->response->redirect(['for' => 'home.my.orders']);
|
|
}
|
|
|
|
$this->view->setVar('order', $order);
|
|
}
|
|
|
|
/**
|
|
* @Post("/cancel", name="home.order.cancel")
|
|
*/
|
|
public function cancelAction()
|
|
{
|
|
$sn = $this->request->getPost('sn', 'string');
|
|
|
|
$service = new OrderCancelService();
|
|
|
|
$order = $service->handle($sn);
|
|
|
|
return $this->jsonSuccess(['order' => $order]);
|
|
}
|
|
|
|
}
|