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

SeckillGoodsLogic.php 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\Client_;
  5. use app\common\model\seckill\SeckillGoods;
  6. use app\common\model\seckill\SeckillTime;
  7. use app\common\server\UrlServer;
  8. use app\common\model\goods\Goods;
  9. use app\common\enum\GoodsEnum;
  10. class SeckillGoodsLogic extends Logic
  11. {
  12. public static function seckillTime(){
  13. $time_list = SeckillTime::where(['del'=>0])
  14. ->order('start_time asc')
  15. ->field('id,start_time,end_time')
  16. ->select()
  17. ->toArray();
  18. $now = time();
  19. $today_date = date('Y-m-d');
  20. foreach ($time_list as &$item){
  21. $item['status'] = 2;
  22. $item['tips'] = '';
  23. $start_time = strtotime($today_date.' '.$item['start_time']);
  24. $end_time = strtotime($today_date.' '.$item['end_time']);
  25. if($now >= $end_time ){
  26. $item['tips'] = '已结束';
  27. }
  28. if($start_time <= $now && $now < $end_time){
  29. $item['status'] = 1;
  30. $item['tips'] = '抢购中';
  31. }
  32. if($start_time >= $now){
  33. $item['tips'] = '未开始';
  34. $item['status'] = 0;
  35. }
  36. $item['end_time_int'] = strtotime($item['end_time']);
  37. }
  38. return $time_list;
  39. }
  40. public static function getSeckillGoods($get)
  41. {
  42. $where = [
  43. ['sg.del', '=', 0],
  44. ['sg.seckill_id', '=', $get['seckill_id']],
  45. ['sg.review_status', '=', 1],
  46. ];
  47. $field = 'sg.seckill_id,sg.start_date,sg.end_date,g.id as goods_id,g.name as goods_name,g.image as goods_image,g.min_price as goods_min_price';
  48. $lists = SeckillGoods::alias('sg')
  49. ->leftJoin('seckill_time st', 'st.id=sg.seckill_id')
  50. ->leftJoin('goods g', 'g.id=sg.goods_id')
  51. ->group('sg.seckill_id,sg.start_date,sg.end_date,g.id')
  52. ->field($field)
  53. ->where($where)
  54. ->select()
  55. ->toArray();
  56. // 过滤日期
  57. foreach($lists as $key => &$item) {
  58. $start_date_time = strtotime($item['start_date'].' 00:00:00');
  59. $end_date_time = strtotime($item['end_date'].' 23:59:59');
  60. if($start_date_time <= time() && $end_date_time >= time()) {
  61. // 在活动日期,判断商品是否在线
  62. $goods = Goods::where([
  63. 'del' => GoodsEnum::DEL_NORMAL,
  64. 'status' => GoodsEnum::STATUS_SHELVES,
  65. 'audit_status' => GoodsEnum::AUDIT_STATUS_OK,
  66. 'id' => $item['goods_id']
  67. ])->findOrEmpty();
  68. if($goods->isEmpty()) { // 商品不存在或未处于销售状态
  69. unset($lists[$key]);
  70. }
  71. }else{
  72. // 非活动日期,去除记录
  73. unset($lists[$key]);
  74. }
  75. }
  76. // 分页处理
  77. $count = count($lists);
  78. $index = ($get['page_no']-1) * $get['page_size'];
  79. $lists = array_slice($lists, $index, $get['page_size']);
  80. // 格式化信息
  81. foreach($lists as &$item) {
  82. // 图片加域名
  83. $item['goods_image'] = UrlServer::getFileUrl($item['goods_image']);
  84. // 秒杀价最小值
  85. $seckillGoodsArr = SeckillGoods::where([
  86. 'seckill_id'=>$item['seckill_id'],
  87. 'start_date' => $item['start_date'],
  88. 'end_date' => $item['end_date'],
  89. 'goods_id' => $item['goods_id']
  90. ])->select()->toArray();
  91. $item['seckill_price'] = $item['goods_min_price'];
  92. $item['seckill_total'] = 0;
  93. foreach($seckillGoodsArr as $subItem) {
  94. if($item['seckill_price'] > $subItem['price']) {
  95. $item['seckill_price'] = $subItem['price'];
  96. }
  97. $item['seckill_total'] += $subItem['sales_sum'];
  98. }
  99. }
  100. return [
  101. 'count' => $count,
  102. 'lists' => $lists,
  103. 'page_no' => $get['page_no'],
  104. 'page_size' => $get['page_size'],
  105. 'more' => is_more($count, $get['page_no'], $get['page_size'])
  106. ];
  107. }
  108. public static function getSeckillGoodsTwo($seckill_id,$terminal)
  109. {
  110. $where = [
  111. ['sg.del', '=', 0],
  112. ['sg.seckill_id', '=', $seckill_id],
  113. ['sg.review_status', '=', 1],
  114. ];
  115. $field = 'sg.seckill_id,sg.start_date,sg.end_date,g.id as goods_id,g.name as goods_name,g.image as goods_image,g.min_price as goods_min_price';
  116. $lists = SeckillGoods::alias('sg')
  117. ->leftJoin('seckill_time st', 'st.id=sg.seckill_id')
  118. ->leftJoin('goods g', 'g.id=sg.goods_id')
  119. ->group('sg.seckill_id,sg.start_date,sg.end_date,g.id')
  120. ->field($field)
  121. ->where($where)
  122. ->select()
  123. ->toArray();
  124. // 过滤日期
  125. foreach($lists as $key => &$item) {
  126. $start_date_time = strtotime($item['start_date'].' 00:00:00');
  127. $end_date_time = strtotime($item['end_date'].' 23:59:59');
  128. if($start_date_time <= time() && $end_date_time >= time()) {
  129. // 在活动日期,判断商品是否在线
  130. $goods = Goods::where([
  131. 'del' => GoodsEnum::DEL_NORMAL,
  132. 'status' => GoodsEnum::STATUS_SHELVES,
  133. 'audit_status' => GoodsEnum::AUDIT_STATUS_OK,
  134. 'id' => $item['goods_id']
  135. ])->findOrEmpty();
  136. if($goods->isEmpty()) { // 商品不存在或未处于销售状态
  137. unset($lists[$key]);
  138. }
  139. }else{
  140. // 非活动日期,去除记录
  141. unset($lists[$key]);
  142. }
  143. }
  144. if($terminal == 'nmp'){
  145. $lists = array_slice($lists, 0, 3); // 取3条记录
  146. }else{
  147. $lists = array_slice($lists, 0, 6); // 取3条记录
  148. }
  149. // 格式化信息
  150. foreach($lists as &$item) {
  151. // 图片加域名
  152. $item['goods_image'] = UrlServer::getFileUrl($item['goods_image']);
  153. // 秒杀价最小值
  154. $seckillGoodsArr = SeckillGoods::where([
  155. 'seckill_id'=>$item['seckill_id'],
  156. 'start_date' => $item['start_date'],
  157. 'end_date' => $item['end_date'],
  158. 'goods_id' => $item['goods_id']
  159. ])->select()->toArray();
  160. $item['seckill_price'] = $item['goods_min_price'];
  161. $item['seckill_total'] = 0;
  162. foreach($seckillGoodsArr as $subItem) {
  163. if($item['seckill_price'] > $subItem['price']) {
  164. $item['seckill_price'] = $subItem['price'];
  165. }
  166. $item['seckill_total'] += $subItem['sales_sum'];
  167. }
  168. }
  169. return $lists;
  170. }
  171. /**
  172. * 获取正在秒杀时段id
  173. */
  174. public static function getSeckillTimeIng()
  175. {
  176. $time_list = SeckillTime::where(['del'=>0])
  177. ->order('start_time asc')
  178. ->field('id,start_time,end_time')
  179. ->select()
  180. ->toArray();
  181. $now = time();
  182. $today_date = date('Y-m-d');
  183. foreach ($time_list as &$item){
  184. $start_time = strtotime($today_date.' '.$item['start_time']);
  185. $end_time = strtotime($today_date.' '.$item['end_time']);
  186. if($start_time <= $now && $now < $end_time){
  187. return $item;
  188. }
  189. }
  190. return false;
  191. }
  192. }