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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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\shop\logic\live;
  20. use app\common\basics\Logic;
  21. use app\common\enum\LiveRoomEnum;
  22. use app\common\model\live\LiveGoods;
  23. use app\common\model\live\LiveRoom;
  24. use app\common\server\FileServer;
  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\adminapi\logic\live
  32. */
  33. class LiveRoomLogic extends Logic
  34. {
  35. /**
  36. * @notes 直播间列表
  37. * @param $params
  38. * @return array
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\DbException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @author 段誉
  43. * @date 2023/2/15 19:00
  44. */
  45. public static function lists($params)
  46. {
  47. $where[] = ['del', '=', 0];
  48. $where[] = ['shop_id', '=', $params['shop_id']];
  49. if (isset($params['status']) && in_array($params['status'], LiveRoomEnum::AUDIT_STATUS)) {
  50. $where[] = ['audit_status', '=', $params['status']];
  51. }
  52. if (!empty($params['live_info'])) {
  53. $where[] = ['name|anchor_name', 'like', '%' . $params['live_info'] . '%'];
  54. }
  55. if (!empty($params['live_status'])) {
  56. $where[] = ['live_status', '=', $params['live_status']];
  57. }
  58. // 创建时间
  59. if (isset($params['start_time']) && !empty($params['start_time'])) {
  60. $where[] = ['start_time', '>=', strtotime($params['start_time'])];
  61. }
  62. if (isset($params['end_time']) && !empty($params['end_time'])) {
  63. $where[] = ['end_time', '<=', strtotime($params['end_time'])];
  64. }
  65. $count = LiveRoom::where($where)->count();
  66. $lists = LiveRoom::where($where)
  67. ->order(['id' => 'desc'])
  68. ->page($params['page'], $params['limit'])
  69. ->append(['live_time_text', 'live_status_text', 'audit_status_text'])
  70. ->select()->toArray();
  71. foreach ($lists as &$item) {
  72. $item['share_img'] = UrlServer::getFileUrl($item['share_img']);
  73. $item['feeds_img'] = UrlServer::getFileUrl($item['feeds_img']);
  74. $item['cover_img'] = UrlServer::getFileUrl($item['cover_img']);
  75. }
  76. return ['count' => $count, 'lists' => $lists];
  77. }
  78. /**
  79. * @notes 添加直播间
  80. * @param array $params
  81. * @return bool
  82. * @throws \GuzzleHttp\Exception\GuzzleException
  83. * @author 段誉
  84. * @date 2023/2/15 18:26
  85. */
  86. public static function add(array $params)
  87. {
  88. try {
  89. $params = self::formatParams($params);
  90. LiveRoom::create([
  91. 'shop_id' => $params['shop_id'],
  92. 'name' => $params['name'],
  93. 'type' => $params['type'],
  94. 'start_time' => $params['start_time'],
  95. 'end_time' => $params['end_time'],
  96. 'anchor_name' => $params['anchor_name'],
  97. 'anchor_wechat' => $params['anchor_wechat'],
  98. 'share_img' => UrlServer::setFileUrl($params['share_img']),
  99. 'feeds_img' => UrlServer::setFileUrl($params['feeds_img']),
  100. 'cover_img' => UrlServer::setFileUrl($params['cover_img']),
  101. 'share_img_id' => FileServer::wechatLiveMaterial($params['share_img']),
  102. 'feeds_img_id' => FileServer::wechatLiveMaterial($params['feeds_img']),
  103. 'cover_img_id' => FileServer::wechatLiveMaterial($params['cover_img']),
  104. 'is_feeds_public' => $params['is_feeds_public'],
  105. 'close_like' => $params['close_like'],
  106. 'close_goods' => $params['close_goods'],
  107. 'close_comment' => $params['close_comment'],
  108. 'close_replay' => $params['close_replay'],
  109. 'close_share' => $params['close_share'],
  110. 'close_kf' => $params['close_kf'],
  111. ]);
  112. return true;
  113. } catch (\Exception $e) {
  114. self::$error = $e->getMessage();
  115. return false;
  116. }
  117. }
  118. /**
  119. * @notes 编辑
  120. * @param array $params
  121. * @return bool
  122. * @throws \GuzzleHttp\Exception\GuzzleException
  123. * @author 段誉
  124. * @date 2023/2/16 10:34
  125. */
  126. public static function edit(array $params)
  127. {
  128. Db::startTrans();
  129. try {
  130. $params = self::formatParams($params);
  131. $room = LiveRoom::findOrEmpty($params['id']);
  132. $updateData = [
  133. 'name' => $params['name'],
  134. 'type' => $params['type'],
  135. 'start_time' => $params['start_time'],
  136. 'end_time' => $params['end_time'],
  137. 'anchor_name' => $params['anchor_name'],
  138. 'anchor_wechat' => $params['anchor_wechat'],
  139. 'share_img' => UrlServer::setFileUrl($params['share_img']),
  140. 'feeds_img' => UrlServer::setFileUrl($params['feeds_img']),
  141. 'cover_img' => UrlServer::setFileUrl($params['cover_img']),
  142. 'share_img_id' => FileServer::wechatLiveMaterial($params['share_img']),
  143. 'feeds_img_id' => FileServer::wechatLiveMaterial($params['feeds_img']),
  144. 'cover_img_id' => FileServer::wechatLiveMaterial($params['cover_img']),
  145. 'is_feeds_public' => $params['is_feeds_public'],
  146. 'close_like' => $params['close_like'],
  147. 'close_goods' => $params['close_goods'],
  148. 'close_comment' => $params['close_comment'],
  149. 'close_replay' => $params['close_replay'],
  150. 'close_share' => $params['close_share'],
  151. 'close_kf' => $params['close_kf'],
  152. ];
  153. if ($room['audit_status'] == LiveRoomEnum::AUDIT_STATUS_FAIL) {
  154. $updateData['audit_status'] = LiveRoomEnum::AUDIT_STATUS_WAIT;
  155. }
  156. LiveRoom::where(['id' => $params['id']])->update($updateData);
  157. if (!empty($room['wx_room_id'])) {
  158. (new WxMnpLiveServer())->handle('editRoom', [
  159. 'id' => $room['wx_room_id'],
  160. 'name' => $room['name'],
  161. 'startTime' => $room['start_time'],
  162. 'endTime' => $room['end_time'],
  163. 'anchorName' => $room['anchor_name'],
  164. 'anchorWechat' => $room['anchor_wechat'],
  165. 'createrWechat' => $room['anchor_wechat'],
  166. 'shareImg' => $room['share_img_id'],
  167. 'feedsImg' => $room['feeds_img_id'],
  168. 'coverImg' => $room['cover_img_id'],
  169. 'type' => $room['type'],
  170. 'isFeedsPublic' => $room['is_feeds_public'],
  171. 'closeLike' => $room['close_like'],
  172. 'closeGoods' => $room['close_goods'],
  173. 'closeComment' => $room['close_comment'],
  174. 'closeReplay' => $room['close_replay'],
  175. 'closeShare' => $room['close_share'],
  176. 'closeKf' => $room['close_kf'],
  177. ]);
  178. }
  179. Db::commit();
  180. return true;
  181. } catch (\Exception $e) {
  182. Db::rollback();
  183. self::$error = $e->getMessage();
  184. return false;
  185. }
  186. }
  187. /**
  188. * @notes 直播间详情
  189. * @param $id
  190. * @return array
  191. * @author 段誉
  192. * @date 2023/2/16 10:42
  193. */
  194. public static function detail($id)
  195. {
  196. $detail = LiveRoom::where(['id' => $id])->findOrEmpty()->toArray();
  197. $detail['start_time'] = date('Y-m-d H:i:s', $detail['start_time']);
  198. $detail['end_time'] = date('Y-m-d H:i:s', $detail['end_time']);
  199. $detail['share_img'] = UrlServer::getFileUrl($detail['share_img']);
  200. $detail['feeds_img'] = UrlServer::getFileUrl($detail['feeds_img']);
  201. $detail['cover_img'] = UrlServer::getFileUrl($detail['cover_img']);
  202. return $detail;
  203. }
  204. /**
  205. * @notes 删除直播间
  206. * @param array $params
  207. * @return bool|string
  208. * @author 段誉
  209. * @date 2023/2/16 10:37
  210. */
  211. public static function del(array $params)
  212. {
  213. Db::startTrans();
  214. try {
  215. $where = [
  216. 'id' => $params['id'],
  217. 'shop_id' => $params['shop_id']
  218. ];
  219. LiveRoom::where($where)->update([
  220. 'del' => 1,
  221. 'update_time' => time()
  222. ]);
  223. $room = LiveRoom::findOrEmpty($params['id']);
  224. if (!empty($room['wx_room_id'])) {
  225. (new WxMnpLiveServer())->handle('delRoom', $room['wx_room_id']);
  226. }
  227. Db::commit();
  228. return true;
  229. } catch (\Exception $e) {
  230. Db::rollback();
  231. return $e->getMessage();
  232. }
  233. }
  234. /**
  235. * @notes 格式化参数
  236. * @param $params
  237. * @return mixed
  238. * @author 段誉
  239. * @date 2023/2/15 16:04
  240. */
  241. public static function formatParams($params)
  242. {
  243. if (!empty($params['start_time'])) {
  244. $params['start_time'] = strtotime($params['start_time']);
  245. }
  246. if (!empty($params['end_time'])) {
  247. $params['end_time'] = strtotime($params['end_time']);
  248. }
  249. $params['is_feeds_public'] = empty($params['is_feeds_public']) ? 0 : 1;
  250. $params['close_like'] = empty($params['close_like']) ? 1 : 0;
  251. $params['close_goods'] = empty($params['close_goods']) ? 1 : 0;
  252. $params['close_comment'] = empty($params['close_comment']) ? 1 : 0;
  253. $params['close_replay'] = empty($params['close_replay']) ? 1 : 0;
  254. $params['close_share'] = empty($params['close_share']) ? 1 : 0;
  255. $params['close_kf'] = empty($params['close_kf']) ? 1 : 0;
  256. return $params;
  257. }
  258. /**
  259. * @notes 导入商品
  260. * @param $params
  261. * @return bool
  262. * @throws \GuzzleHttp\Exception\GuzzleException
  263. * @author 段誉
  264. * @date 2023/2/17 14:25
  265. */
  266. public static function importGoods($params)
  267. {
  268. try {
  269. if (empty($params['id'])) {
  270. throw new \Exception('直播间参数缺失');
  271. }
  272. if (empty($params['goods_ids'])) {
  273. throw new \Exception('请选择直播商品');
  274. }
  275. $room = LiveRoom::where(['id' => $params['id']])->findOrEmpty();
  276. if (empty($room['wx_room_id'])) {
  277. throw new \Exception('当前直播间暂不可导入商品');
  278. }
  279. $goods_ids = LiveGoods::whereIn('id', $params['goods_ids'])
  280. ->column('wx_goods_id');
  281. //addGoods
  282. (new WxMnpLiveServer())->handle('importGoods', [
  283. 'ids' => $goods_ids,
  284. 'roomId' => $room['wx_room_id']
  285. ]);
  286. return true;
  287. } catch (\Exception $e) {
  288. self::$error = $e->getMessage();
  289. return false;
  290. }
  291. }
  292. }