multi-store/app/api/controller/order/CartController.php

76 lines
2.1 KiB
PHP
Raw Normal View History

2024-06-01 17:22:46 +08:00
<?php
namespace app\api\controller\order;
use app\api\logic\order\CartLogic;
use app\api\validate\CartValidate;
use app\api\controller\BaseApiController;
use app\api\lists\order\CartList;
use app\common\model\order\Cart;
2024-06-04 16:51:26 +08:00
use hg\apidoc\annotation as ApiDoc;
2024-06-01 17:22:46 +08:00
2024-06-04 17:21:57 +08:00
#[ApiDoc\NotParse()]
2024-06-01 17:22:46 +08:00
class CartController extends BaseApiController
{
2024-06-04 17:21:57 +08:00
public function list()
{
2024-06-01 17:22:46 +08:00
return $this->dataLists(new CartList());
}
/**
* @notes 添加购物车
*/
2024-06-04 17:21:57 +08:00
public function create()
{
2024-06-01 17:22:46 +08:00
$params = (new CartValidate())->post()->goCheck('add');
2024-06-04 17:21:57 +08:00
$params['uid'] = $this->request->userId;
2024-06-04 18:24:41 +08:00
$result = Cart::where(['uid' => $params['uid'], 'store_id' => $params['store_id'], 'product_id' => $params['product_id'], 'is_fail' => 0, 'is_pay' => 0,'delete_time' => null])->find();
2024-06-04 17:21:57 +08:00
$count = Cart::where(['uid' => $params['uid'], 'delete_time' => null, 'is_pay' => 0])->count();
if ($count > 100) {
2024-06-01 17:22:46 +08:00
return $this->fail('购物车商品不能大于100个请先结算');
}
2024-06-04 17:21:57 +08:00
if ($result) {
$res = CartLogic::edit($params);
} else {
$res = CartLogic::add($params);
2024-06-01 17:22:46 +08:00
}
2024-06-04 17:21:57 +08:00
if ($res) {
2024-06-01 17:22:46 +08:00
return $this->success('添加成功');
2024-06-04 17:21:57 +08:00
} else {
2024-06-01 17:22:46 +08:00
return $this->fail(CartLogic::getError());
}
}
/**
* @notes 修改购物车
*/
2024-06-04 17:21:57 +08:00
public function change()
{
2024-06-01 17:22:46 +08:00
$params = (new CartValidate())->post()->goCheck('change');
2024-06-04 17:21:57 +08:00
$params['uid'] = $this->request->userId;
$res = CartLogic::edit($params, 'dec');
if ($res) {
2024-06-01 17:22:46 +08:00
return $this->success('修改成功');
2024-06-04 17:21:57 +08:00
} else {
2024-06-01 17:22:46 +08:00
return $this->fail(CartLogic::getError());
}
}
2024-06-04 17:21:57 +08:00
2024-06-01 17:22:46 +08:00
/**
* @notes 删除购物车
*/
2024-06-04 17:21:57 +08:00
public function delete()
{
2024-06-01 17:22:46 +08:00
$params = (new CartValidate())->post()->goCheck('delete');
2024-06-04 17:21:57 +08:00
$params['uid'] = $this->request->userId;
$res = CartLogic::delete($params);
if ($res) {
2024-06-01 17:22:46 +08:00
return $this->success('删除成功');
2024-06-04 17:21:57 +08:00
} else {
2024-06-01 17:22:46 +08:00
return $this->fail(CartLogic::getError());
}
}
2024-06-04 16:51:26 +08:00
}