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

LiveLogic.php 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LikeShop有特色的全开源社交分销电商系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 商业用途务必购买系统授权,以免引起不必要的法律纠纷
  7. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  8. // | 微信公众号:好象科技
  9. // | 访问官网:http://www.likeshop.net
  10. // | 访问社区:http://bbs.likeshop.net
  11. // | 访问手册:http://doc.likeshop.net
  12. // | 好象科技开发团队 版权所有 拥有最终解释权
  13. // +----------------------------------------------------------------------
  14. // | Author: LikeShopTeam
  15. // +----------------------------------------------------------------------
  16. namespace app\api\logic;
  17. use app\common\basics\Logic;
  18. use app\common\enum\LiveRoomEnum;
  19. use app\common\model\live\LiveRoom;
  20. use app\common\server\UrlServer;
  21. /**
  22. * 直播
  23. * Class LiveLogic
  24. * @package app\api\logic
  25. */
  26. class LiveLogic extends Logic
  27. {
  28. /**
  29. * @notes 直播间列表
  30. * @param $page_no
  31. * @param $page_size
  32. * @return array
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. * @author 段誉
  37. * @date 2023/2/17 16:52
  38. */
  39. public static function lists($page_no, $page_size)
  40. {
  41. $count = LiveRoom::where(['del' => 0])->count();
  42. $lists = LiveRoom::with(['shop'])->where(['del' => 0])
  43. ->where('wx_room_id', '>', 0)
  44. ->order(['live_status' => 'asc', 'sort' => 'asc', 'id' => 'desc'])
  45. ->hidden(['share_img_id', 'feeds_img_id', 'cover_img_id'])
  46. ->select();
  47. foreach ($lists as &$item) {
  48. $item['share_img'] = UrlServer::getFileUrl($item['share_img']);
  49. $item['feeds_img'] = UrlServer::getFileUrl($item['feeds_img']);
  50. $item['cover_img'] = UrlServer::getFileUrl($item['cover_img']);
  51. $item['live_status_text'] = LiveRoomEnum::getLiveStatusDesc($item['live_status']);
  52. $item['start_time_tips'] = friend_date($item['start_time']);
  53. $item['start_time_text'] = date('y-m-d H:i', $item['start_time']);
  54. $item['end_time_text'] = date('y-m-d H:i', $item['end_time']);
  55. }
  56. return [
  57. 'list' => $lists,
  58. 'count' => $count,
  59. 'more' => is_more($count, $page_no, $page_size),
  60. 'page_no' => $page_no,
  61. 'page_size' => $page_size
  62. ];
  63. }
  64. /**
  65. * @notes 商家直播
  66. * @param $shopId
  67. * @return array
  68. * @author 段誉
  69. * @date 2023/2/17 17:22
  70. */
  71. public static function shopLive($shopId)
  72. {
  73. $room = LiveRoom::with(['shop'])->where([
  74. 'shop_id' => $shopId,
  75. 'live_status' => LiveRoomEnum::LIVE_STATUS_ING,
  76. 'del' => 0
  77. ])
  78. ->where('wx_room_id', '>', 0)
  79. ->order(['sort' => 'asc', 'id' => 'desc'])
  80. ->hidden(['share_img_id', 'feeds_img_id', 'cover_img_id'])
  81. ->findOrEmpty()
  82. ->toArray();
  83. if (empty($room)) {
  84. // 如没找到直播中,则找距离当前最近的一个未开播
  85. $room = LiveRoom::with(['shop'])->where([
  86. 'shop_id' => $shopId,
  87. 'live_status' => LiveRoomEnum::LIVE_STATUS_WAIT,
  88. 'del' => 0
  89. ])
  90. ->where('wx_room_id', '>', 0)
  91. ->where('start_time', '>', time())
  92. ->order(['sort' => 'asc', 'id' => 'desc', 'start_time' => 'asc'])
  93. ->hidden(['share_img_id', 'feeds_img_id', 'cover_img_id'])
  94. ->findOrEmpty()
  95. ->toArray();
  96. }
  97. if (!empty($room)) {
  98. $room['share_img'] = UrlServer::getFileUrl($room['share_img']);
  99. $room['feeds_img'] = UrlServer::getFileUrl($room['feeds_img']);
  100. $room['cover_img'] = UrlServer::getFileUrl($room['cover_img']);
  101. $room['live_status_text'] = LiveRoomEnum::getLiveStatusDesc($room['live_status']);
  102. $room['start_time_tips'] = friend_date($room['start_time']);
  103. $room['start_time_text'] = date('y-m-d H:i', $room['start_time']);
  104. $room['end_time_text'] = date('y-m-d H:i', $room['end_time']);
  105. }
  106. return $room;
  107. }
  108. }