截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

LiveRoom.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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\controller\live;
  20. use app\common\basics\ShopBase;
  21. use app\common\enum\LiveGoodsEnum;
  22. use app\common\enum\LiveRoomEnum;
  23. use app\common\server\JsonServer;
  24. use app\shop\logic\live\LiveGoodsLogic;
  25. use app\shop\logic\live\LiveRoomLogic;
  26. use app\shop\validate\live\LiveRoomValidate;
  27. /**
  28. * 直播间
  29. * Class LiveRoom
  30. * @package app\shop\controller\live
  31. */
  32. class LiveRoom extends ShopBase
  33. {
  34. /**
  35. * @notes 直播间列表
  36. * @return \think\response\Json|\think\response\View
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\DbException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @author 段誉
  41. * @date 2023/2/16 10:38
  42. */
  43. public function lists()
  44. {
  45. if ($this->request->isAjax()) {
  46. $get = $this->request->get();
  47. $get['shop_id'] = $this->shop_id;
  48. $lists = LiveRoomLogic::lists($get);
  49. return JsonServer::success('', $lists);
  50. }
  51. return view('', [
  52. 'live_status' => LiveRoomEnum::getLiveStatusDesc()
  53. ]);
  54. }
  55. /**
  56. * @notes 添加直播间
  57. * @return \think\response\Json|\think\response\View
  58. * @throws \GuzzleHttp\Exception\GuzzleException
  59. * @author 段誉
  60. * @date 2023/2/16 10:38
  61. */
  62. public function add()
  63. {
  64. if ($this->request->isAjax()) {
  65. $params = (new LiveRoomValidate())->goCheck('add', ['shop_id' => $this->shop_id]);
  66. $result = LiveRoomLogic::add($params);
  67. if ($result !== true) {
  68. return JsonServer::error(LiveRoomLogic::getError());
  69. }
  70. return JsonServer::success('操作成功');
  71. }
  72. return view();
  73. }
  74. /**
  75. * @notes 编辑直播间
  76. * @return \think\response\Json|\think\response\View
  77. * @throws \GuzzleHttp\Exception\GuzzleException
  78. * @author 段誉
  79. * @date 2023/2/16 10:38
  80. */
  81. public function edit()
  82. {
  83. if ($this->request->isAjax()) {
  84. $params = (new LiveRoomValidate())->goCheck('edit', ['shop_id' => $this->shop_id]);
  85. $result = LiveRoomLogic::edit($params);
  86. if ($result !== true) {
  87. return JsonServer::error(LiveRoomLogic::getError());
  88. }
  89. return JsonServer::success('操作成功');
  90. }
  91. $id = $this->request->get('id');
  92. return view('', [
  93. 'detail' => LiveRoomLogic::detail($id),
  94. ]);
  95. }
  96. /**
  97. * @notes 删除直播间
  98. * @return \think\response\Json|void
  99. * @author 段誉
  100. * @date 2023/2/16 10:38
  101. */
  102. public function del()
  103. {
  104. if ($this->request->isAjax()) {
  105. $params = (new LiveRoomValidate())->goCheck('del', ['shop_id' => $this->shop_id]);
  106. $result = LiveRoomLogic::del($params);
  107. if ($result !== true) {
  108. return JsonServer::error(LiveRoomLogic::getError());
  109. }
  110. return JsonServer::success('操作成功');
  111. }
  112. }
  113. /**
  114. * @notes 导入商品选择
  115. * @return \think\response\Json|\think\response\View
  116. * @throws \think\db\exception\DataNotFoundException
  117. * @throws \think\db\exception\DbException
  118. * @throws \think\db\exception\ModelNotFoundException
  119. * @author 段誉
  120. * @date 2023/2/17 12:08
  121. */
  122. public function selectGoods()
  123. {
  124. if ($this->request->isAjax()) {
  125. $get = $this->request->get();
  126. $get['shop_id'] = $this->shop_id;
  127. $get['status'] = 'success';
  128. $list = LiveGoodsLogic::lists($get);
  129. return JsonServer::success('',$list);
  130. }
  131. return view();
  132. }
  133. /**
  134. * @notes 导入直播商品
  135. * @return \think\response\Json|void
  136. * @throws \GuzzleHttp\Exception\GuzzleException
  137. * @author 段誉
  138. * @date 2023/2/17 14:26
  139. */
  140. public function importGoods()
  141. {
  142. if ($this->request->isAjax()) {
  143. $params = $this->request->post();
  144. $result = LiveRoomLogic::importGoods($params);
  145. if ($result !== true) {
  146. return JsonServer::error(LiveRoomLogic::getError());
  147. }
  148. return JsonServer::success('操作成功');
  149. }
  150. }
  151. }