Commodity.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\CommodityModel;
  4. use app\api\model\Foot;
  5. use app\common\controller\Api;
  6. use think\Db;
  7. /**
  8. * 商品接口
  9. */
  10. class Commodity extends Api
  11. {
  12. protected $noNeedRight = '*';
  13. protected $noNeedLogin = '*';
  14. /**
  15. * 全部商品
  16. * @ApiMethod (POST)
  17. * @param string $page 第几页
  18. */
  19. public function commodityIndex()
  20. {
  21. $page = $this->request->post('page');
  22. if (!isset($page)) {
  23. $page = 0;
  24. }
  25. $where = array(
  26. 'c_state_switch' => 1,
  27. );
  28. $data = CommodityModel::where($where)->order('c_sort desc')->page($page,5)->select()->toArray();
  29. if ($data) {
  30. return $this->result('', $data, 200);
  31. } else {
  32. return $this->result('暂无商品', [], 100);
  33. }
  34. }
  35. /**
  36. * 商品类型
  37. * @ApiMethod (POST)
  38. */
  39. public function typeIndex()
  40. {
  41. $data = Db::name('ctype')->select();
  42. $commodioty[0]['t_id'] = 0;
  43. $commodioty[0]['t_name'] = '全部';
  44. $data = array_merge($commodioty,$data);
  45. if ($data) {
  46. return $this->result('', $data, 200);
  47. } else {
  48. return $this->result('暂无分类', [], 100);
  49. }
  50. }
  51. /**
  52. * 分类下的商品
  53. * @ApiMethod (POST)
  54. * @param string $t_id 分类id
  55. * @param string $page 第几页
  56. */
  57. public function typeCommodity()
  58. {
  59. $params = $this->request->post();
  60. $reles = [
  61. 't_id' => 'require|number'
  62. ];
  63. $msg = [
  64. 't_id.require' => '网络错误',
  65. 't_id.number' => '网络错误'
  66. ];
  67. $validata = $this->validate($params, $reles, $msg);
  68. if (is_string($validata)) {
  69. return $this->result($validata, [], 100);
  70. }
  71. $page = $this->request->post('page');
  72. if (!isset($page)) {
  73. $page = 0;
  74. }
  75. $where = array(
  76. 'c_state_switch' => 1,
  77. );
  78. $data = CommodityModel::where('c_type', $params['t_id'])->order('c_sort desc')->page($page,5)->select()->toArray();
  79. if ($data) {
  80. return $this->result('', $data, 200);
  81. } else {
  82. return $this->result('暂无商品', [], 100);
  83. }
  84. }
  85. /**
  86. * 商品详情
  87. * @ApiMethod (POST)
  88. * @param string $c_id 商品id
  89. * @param string $user_id 用户id
  90. */
  91. public function commodityInfo()
  92. {
  93. $params = $this->request->post();
  94. $rules = [
  95. 'c_id' => 'require|number',
  96. 'user_id' => 'require'
  97. ];
  98. $msg = [
  99. 'c_id.require' => "网络错误",
  100. 'user_id.require' => "网络错误",
  101. 'c_id.number' => '网络错误',
  102. ];
  103. $validata = $this->validate($params, $rules, $msg);
  104. if (is_string($validata)) {
  105. return $this->result($validata, [], 100);
  106. }
  107. $data = CommodityModel::with(['parameter' => function ($query) { //预加载闭包查询
  108. $query->with('commoditycolor');
  109. }])
  110. ->where('c_state_switch', 1)
  111. ->where('c_id',$params['c_id'])
  112. ->find();
  113. if ($data) {
  114. if ($data) {
  115. $footdata = array(
  116. 'user_id' => $params['user_id'],
  117. 'c_id' => $params['c_id'],
  118. );//足迹
  119. $foot = new Foot();
  120. $is_foot = Foot::where($footdata)->find(); //监看是否浏览过了
  121. if (!$is_foot) {
  122. $addFoot = $foot->allowField(true)->save($footdata);//添加足迹
  123. }
  124. return $this->result('', $data, '200');
  125. }
  126. } else {
  127. return $this->result('商品已下架或者不存在', [], '100');
  128. }
  129. }
  130. }