截流自动化的商城平台
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.

BargainValidate.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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\validate;
  20. use app\common\model\bargain\BargainLaunch;
  21. use think\facade\Db;
  22. use app\common\basics\Validate;
  23. /**
  24. * Class BargainValidate
  25. * @package app\api\validate
  26. */
  27. class BargainValidate extends Validate
  28. {
  29. protected $rule = [
  30. 'id' => 'require',
  31. 'bargain_id' => 'require',
  32. 'item_id' => 'require|checkGoods',
  33. 'url' => 'require',
  34. ];
  35. protected $message = [
  36. 'id.require' => '请选择砍价订单',
  37. 'bargain_id.require' => '请选择活动',
  38. 'item_id.require' => '请选择规格',
  39. 'url.require' => '缺少参数',
  40. ];
  41. /**
  42. * @notes 砍价商品详情验证场景
  43. * @author suny
  44. * @date 2021/7/13 6:27 下午
  45. */
  46. public function sceneDetail()
  47. {
  48. $this->only(['bargain_id'])
  49. ->append('bargain_id', 'checkBargain');
  50. }
  51. /**
  52. * @notes 发起砍价验证
  53. * @author suny
  54. * @date 2021/7/13 6:27 下午
  55. */
  56. public function sceneSponsor()
  57. {
  58. $this->only(['bargain_id', 'item_id'])->append('bargain_id', 'checkBargain');
  59. }
  60. /**
  61. * @notes 砍价详情验证
  62. * @author suny
  63. * @date 2021/7/13 6:27 下午
  64. */
  65. public function sceneBargainDetail()
  66. {
  67. $this->only(['id']);
  68. }
  69. /**
  70. * @notes 分享验证
  71. * @author suny
  72. * @date 2021/7/13 6:27 下午
  73. */
  74. public function sceneShare()
  75. {
  76. $this->only(['id', 'url'])
  77. ->append('id', 'checkBargainLaunch');
  78. }
  79. /**
  80. * @notes 助力验证
  81. * @author suny
  82. * @date 2021/7/13 6:27 下午
  83. */
  84. public function sceneKnife()
  85. {
  86. $this->only(['id'])
  87. ->append('id', 'checkBnife');
  88. }
  89. /**
  90. * @notes 验证活动是否开启
  91. * @param $value
  92. * @param $rule
  93. * @param $data
  94. * @return bool|string
  95. * @throws \think\db\exception\DataNotFoundException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. * @throws \think\exception\DbException
  98. * @author suny
  99. * @date 2021/7/13 6:28 下午
  100. */
  101. protected function checkBargain($value, $rule, $data)
  102. {
  103. $now = time();
  104. $bargain = Db::name('bargain')
  105. ->where([
  106. ['id', '=', $value],
  107. ['del', '=', 0],
  108. ['activity_start_time', '<', $now],
  109. ['activity_end_time', '>', $now],
  110. ['status', '=', 1]
  111. ])
  112. ->find();
  113. if (empty($bargain)) {
  114. return '该砍价活动已下架';
  115. }
  116. return true;
  117. }
  118. /**
  119. * @notes 验证商品库存
  120. * @param $value
  121. * @param $rule
  122. * @param $data
  123. * @return bool|string
  124. * @author suny
  125. * @date 2021/7/13 6:28 下午
  126. */
  127. protected function checkGoods($value, $rule, $data)
  128. {
  129. $stock = Db::name('goods_item')
  130. ->where(['id' => $value])
  131. ->value('stock');
  132. if ($stock < 1) {
  133. return '该商品库存不足';
  134. }
  135. return true;
  136. }
  137. /**
  138. * @notes 验证该砍价订单是否结束
  139. * @param $value
  140. * @param $rule
  141. * @param $data
  142. * @return bool|string
  143. * @throws \think\db\exception\DataNotFoundException
  144. * @throws \think\db\exception\DbException
  145. * @throws \think\db\exception\ModelNotFoundException
  146. * @author suny
  147. * @date 2021/7/13 6:28 下午
  148. */
  149. protected function checkBargainLaunch($value, $rule, $data)
  150. {
  151. $bargain_launch = new BargainLaunch();
  152. $bargain_launch = $bargain_launch
  153. ->where(['id' => $value])
  154. ->find();
  155. if ($bargain_launch['launch_end_time'] <= time() || $bargain_launch['status'] !== 0) {
  156. return '该砍价已结束';
  157. }
  158. return true;
  159. }
  160. /**
  161. * @notes 验证该砍价订单是否可助力
  162. * @param $value
  163. * @param $rule
  164. * @param $data
  165. * @return bool|string
  166. * @throws \think\db\exception\DataNotFoundException
  167. * @throws \think\db\exception\DbException
  168. * @throws \think\db\exception\ModelNotFoundException
  169. * @throws \think\exception\DbException
  170. * @author suny
  171. * @date 2021/7/13 6:28 下午
  172. */
  173. protected function checkBnife($value, $rule, $data)
  174. {
  175. $bargain_launch = new BargainLaunch();
  176. $bargain_launch = $bargain_launch
  177. ->where(['id' => $value])
  178. ->find()->toarray();
  179. if (0 != $bargain_launch['status']) {
  180. return '该砍价已结束';
  181. }
  182. if ($bargain_launch['launch_end_time'] <= time()) {
  183. return '该砍价已结束';
  184. }
  185. if ($bargain_launch['user_id'] === $data['user_id']) {
  186. return '不能助力自己的砍价活动';
  187. }
  188. if ($bargain_launch['current_price'] < 0) {
  189. return '该砍价活动已成功';
  190. }
  191. //当前活动是砍到低价,且已经低于等于活动低价时,砍价成功
  192. if (1 == $bargain_launch['bargain_snap']['payment_where'] && $bargain_launch['current_price'] <= $bargain_launch['bargain_price']) {
  193. return '该砍价活动已成功';
  194. }
  195. $bargain_knife = Db::name('bargain_knife')
  196. ->where(['launch_id' => $value, 'user_id' => $data['user_id']])
  197. ->find();
  198. if ($bargain_knife) {
  199. return '您已助力过了';
  200. }
  201. return true;
  202. }
  203. }