截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cart.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\api\controller;
  20. use app\api\logic\CartLogic;
  21. use app\api\validate\CartValidate;
  22. use app\common\basics\Api;
  23. use app\common\server\JsonServer;
  24. /**
  25. * 购物车控制器
  26. * Class Cart
  27. * @package app\api\controller
  28. */
  29. class Cart extends Api
  30. {
  31. /**
  32. * @notes 购物车列表
  33. * @return \think\response\Json
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @author cjhao
  38. * @date 2021/9/7 10:23
  39. */
  40. public function lists()
  41. {
  42. $lists = CartLogic::lists($this->user_id);
  43. return JsonServer::success('获取成功', $lists);
  44. }
  45. /**
  46. * Notes: 添加
  47. * @author 段誉(2021/5/11 15:52)
  48. * @return \think\response\Json
  49. */
  50. public function add()
  51. {
  52. $post = $this->request->post();
  53. (new CartValidate())->goCheck('add', ['user_id' => $this->user_id]);
  54. $res = CartLogic::add($post, $this->user_id);
  55. if (false === $res) {
  56. $error = CartLogic::getError() ?: '系统错误';
  57. return JsonServer::error($error);
  58. }
  59. return JsonServer::success('添加成功');
  60. }
  61. /**
  62. * Notes: 更改数量
  63. * @author 段誉(2021/5/11 15:52)
  64. * @return \think\response\Json
  65. * @throws \think\db\exception\DataNotFoundException
  66. * @throws \think\db\exception\DbException
  67. * @throws \think\db\exception\ModelNotFoundException
  68. */
  69. public function change()
  70. {
  71. $post = $this->request->post();
  72. (new CartValidate())->goCheck('change', ['user_id' => $this->user_id]);
  73. $res = CartLogic::change($post['cart_id'], $post['goods_num']);
  74. if (true === $res) {
  75. return JsonServer::success('');
  76. }
  77. $error = CartLogic::getError() ?: '系统错误';
  78. return JsonServer::error($error);
  79. }
  80. /**
  81. * Notes: 删除
  82. * @author 段誉(2021/5/11 15:52)
  83. * @return \think\response\Json
  84. */
  85. public function del()
  86. {
  87. $post = $this->request->post();
  88. (new CartValidate())->goCheck('del', ['user_id' => $this->user_id]);
  89. if (CartLogic::del($post['cart_id'], $this->user_id)) {
  90. return JsonServer::success('删除成功');
  91. }
  92. return JsonServer::error('删除失败');
  93. }
  94. /**
  95. * Notes: 更改选中状态
  96. * @author 段誉(2021/5/11 15:52)
  97. * @return \think\response\Json
  98. */
  99. public function selected()
  100. {
  101. $post = $this->request->post();
  102. (new CartValidate())->goCheck('selected', ['user_id' => $this->user_id]);
  103. CartLogic::selected($post, $this->user_id);
  104. return JsonServer::success('');
  105. }
  106. /**
  107. * Notes: 购物车数量
  108. * @author 段誉(2021/5/11 15:53)
  109. * @return \think\response\Json
  110. */
  111. public function num()
  112. {
  113. return JsonServer::success('', CartLogic::cartNum($this->user_id));
  114. }
  115. }