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

LiveRoomLogic.php 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\live;
  20. use app\common\basics\Logic;
  21. use app\common\enum\LiveRoomEnum;
  22. use app\common\exception\WechatException;
  23. use app\common\model\live\LiveRoom;
  24. use app\common\model\shop\Shop;
  25. use app\common\server\UrlServer;
  26. use app\common\server\WxMnpLiveServer;
  27. use think\facade\Db;
  28. /**
  29. * 直播间逻辑层
  30. * Class LiveRoomLogic
  31. * @package app\admin\logic\live
  32. */
  33. class LiveRoomLogic extends Logic
  34. {
  35. /**
  36. * @notes 列表条件
  37. * @param $params
  38. * @return array
  39. * @author 段誉
  40. * @date 2023/2/16 16:42
  41. */
  42. public static function listsQuery($params)
  43. {
  44. $where[] = ['del', '=', 0];
  45. if (!empty($params['shop_id'])) {
  46. $where[] = ['shop_id', '=', $params['shop_id']];
  47. }
  48. if (isset($params['status'])
  49. && $params['status'] != ''
  50. && in_array($params['status'], LiveRoomEnum::AUDIT_STATUS)) {
  51. $where[] = ['audit_status', '=', $params['status']];
  52. }
  53. if (!empty($params['live_info'])) {
  54. $where[] = ['name|anchor_name', 'like', '%' . $params['live_info'] . '%'];
  55. }
  56. if (!empty($params['live_status'])) {
  57. $where[] = ['live_status', '=', $params['live_status']];
  58. }
  59. // 创建时间
  60. if (isset($params['start_time']) && !empty($params['start_time'])) {
  61. $where[] = ['start_time', '>=', strtotime($params['start_time'])];
  62. }
  63. if (isset($params['end_time']) && !empty($params['end_time'])) {
  64. $where[] = ['end_time', '<=', strtotime($params['end_time'])];
  65. }
  66. return $where;
  67. }
  68. /**
  69. * @notes 直播间列表
  70. * @param $params
  71. * @return array
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\DbException
  74. * @throws \think\db\exception\ModelNotFoundException
  75. * @author 段誉
  76. * @date 2023/2/15 19:00
  77. */
  78. public static function lists($params)
  79. {
  80. $where = self::listsQuery($params);
  81. $count = LiveRoom::where($where)->count();
  82. $lists = LiveRoom::with(['shop'])->where($where)
  83. ->order(['id' => 'desc'])
  84. ->page($params['page'], $params['limit'])
  85. ->append(['live_time_text', 'live_status_text', 'audit_status_text'])
  86. ->select()->toArray();
  87. foreach ($lists as &$item) {
  88. $item['share_img'] = UrlServer::getFileUrl($item['share_img']);
  89. $item['feeds_img'] = UrlServer::getFileUrl($item['feeds_img']);
  90. $item['cover_img'] = UrlServer::getFileUrl($item['cover_img']);
  91. }
  92. return ['count' => $count, 'lists' => $lists];
  93. }
  94. /**
  95. * @notes 编辑
  96. * @param array $params
  97. * @return bool
  98. * @throws \GuzzleHttp\Exception\GuzzleException
  99. * @author 段誉
  100. * @date 2023/2/16 10:34
  101. */
  102. public static function audit($params)
  103. {
  104. Db::startTrans();
  105. try {
  106. $room = LiveRoom::findOrEmpty($params['id']);
  107. if ($room['status'] > LiveRoomEnum::AUDIT_STATUS_WAIT) {
  108. throw new \Exception('该记录已审核');
  109. }
  110. if ($params['status'] == LiveRoomEnum::AUDIT_STATUS_FAIL && empty($params['audit_remark'])) {
  111. throw new \Exception('审核不通过请填写审核原因');
  112. }
  113. $update_data = [
  114. 'audit_remark' => $params['audit_remark'] ?? '',
  115. 'audit_status' => $params['status'],
  116. ];
  117. // 如果是审核通过,把直播间数据提交到微信并更新本地直播数据
  118. if ($params['status'] == LiveRoomEnum::AUDIT_STATUS_SUCCESS) {
  119. $room_id = self::createWxLiveRoom($room);
  120. $update_data['wx_room_id'] = $room_id;
  121. }
  122. // 直播间数据
  123. LiveRoom::where(['id' => $params['id']])->update($update_data);
  124. Db::commit();
  125. return true;
  126. } catch (\Exception $e) {
  127. Db::rollback();
  128. self::$error = $e->getMessage();
  129. return false;
  130. }
  131. }
  132. /**
  133. * @notes 创建直播间
  134. * @param $room
  135. * @return mixed
  136. * @throws WechatException
  137. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  138. * @throws \GuzzleHttp\Exception\GuzzleException
  139. * @author 段誉
  140. * @date 2023/2/16 16:25
  141. */
  142. public static function createWxLiveRoom($room)
  143. {
  144. $data = [
  145. 'name' => $room['name'],
  146. 'startTime' => $room['start_time'],
  147. 'endTime' => $room['end_time'],
  148. 'anchorName' => $room['anchor_name'],
  149. 'anchorWechat' => $room['anchor_wechat'],
  150. 'createrWechat' => $room['anchor_wechat'],
  151. 'shareImg' => $room['share_img_id'],
  152. 'feedsImg' => $room['feeds_img_id'],
  153. 'coverImg' => $room['cover_img_id'],
  154. 'type' => $room['type'],
  155. 'isFeedsPublic' => $room['is_feeds_public'],
  156. 'closeLike' => $room['close_like'],
  157. 'closeGoods' => $room['close_goods'],
  158. 'closeComment' => $room['close_comment'],
  159. 'closeReplay' => $room['close_replay'],
  160. 'closeShare' => $room['close_share'],
  161. 'closeKf' => $room['close_kf'],
  162. ];
  163. $result = (new WxMnpLiveServer())->handle('createLiveRoom', $data);
  164. return $result['roomId'];
  165. }
  166. /**
  167. * @notes 直播间详情
  168. * @param $id
  169. * @return array
  170. * @author 段誉
  171. * @date 2023/2/16 10:42
  172. */
  173. public static function detail($id)
  174. {
  175. $detail = LiveRoom::where(['id' => $id])
  176. ->append(['audit_status_text'])
  177. ->findOrEmpty()->toArray();
  178. $detail['start_time'] = date('Y-m-d H:i:s', $detail['start_time']);
  179. $detail['end_time'] = date('Y-m-d H:i:s', $detail['end_time']);
  180. $detail['share_img'] = UrlServer::getFileUrl($detail['share_img']);
  181. $detail['feeds_img'] = UrlServer::getFileUrl($detail['feeds_img']);
  182. $detail['cover_img'] = UrlServer::getFileUrl($detail['cover_img']);
  183. return $detail;
  184. }
  185. /**
  186. * @notes 推荐值排序
  187. * @param $params
  188. * @return LiveRoom
  189. * @author 段誉
  190. * @date 2023/2/16 16:44
  191. */
  192. public static function recommend($params)
  193. {
  194. return LiveRoom::update([
  195. 'id' => $params['id'],
  196. 'sort' => $params['sort'],
  197. ]);
  198. }
  199. /**
  200. * @notes 商家信息
  201. * @return array
  202. * @throws \think\db\exception\DataNotFoundException
  203. * @throws \think\db\exception\DbException
  204. * @throws \think\db\exception\ModelNotFoundException
  205. * @author 段誉
  206. * @date 2023/2/16 14:10
  207. */
  208. public static function shopLists()
  209. {
  210. return Shop::field(['id', 'name'])
  211. ->where(['del' => 0])
  212. ->select()
  213. ->toArray();
  214. }
  215. }