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

LiveRoom.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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\controller\live;
  20. use app\common\basics\AdminBase;
  21. use app\common\enum\LiveRoomEnum;
  22. use app\common\server\JsonServer;
  23. use app\admin\logic\live\LiveRoomLogic;
  24. use app\admin\validate\live\LiveRoomValidate;
  25. /**
  26. * 直播间
  27. * Class LiveRoom
  28. * @package app\admin\controller\live
  29. */
  30. class LiveRoom extends AdminBase
  31. {
  32. /**
  33. * @notes 直播间列表
  34. * @return \think\response\Json|\think\response\View
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\DbException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @author 段誉
  39. * @date 2023/2/16 10:38
  40. */
  41. public function lists()
  42. {
  43. if ($this->request->isAjax()) {
  44. $get = $this->request->get();
  45. $lists = LiveRoomLogic::lists($get);
  46. return JsonServer::success('', $lists);
  47. }
  48. return view('', [
  49. 'live_status' => LiveRoomEnum::getLiveStatusDesc(),
  50. 'shop' => LiveRoomLogic::shopLists(),
  51. ]);
  52. }
  53. /**
  54. * @notes 编辑直播间
  55. * @return \think\response\Json|\think\response\View
  56. * @throws \GuzzleHttp\Exception\GuzzleException
  57. * @author 段誉
  58. * @date 2023/2/16 10:38
  59. */
  60. public function audit()
  61. {
  62. if ($this->request->isAjax()) {
  63. $params = (new LiveRoomValidate())->goCheck('audit');
  64. $result = LiveRoomLogic::audit($params);
  65. if ($result !== true) {
  66. return JsonServer::error(LiveRoomLogic::getError());
  67. }
  68. return JsonServer::success('操作成功');
  69. }
  70. $id = $this->request->get('id');
  71. return view('', [
  72. 'detail' => LiveRoomLogic::detail($id),
  73. ]);
  74. }
  75. /**
  76. * @notes 直播间详情
  77. * @return \think\response\View
  78. * @author 段誉
  79. * @date 2023/2/16 16:40
  80. */
  81. public function detail()
  82. {
  83. $id = $this->request->get('id');
  84. return view('', [
  85. 'detail' => LiveRoomLogic::detail($id),
  86. ]);
  87. }
  88. /**
  89. * @notes 推荐值设置
  90. * @return \think\response\Json|\think\response\View
  91. * @author 段誉
  92. * @date 2023/2/16 16:56
  93. */
  94. public function recommend()
  95. {
  96. if ($this->request->isAjax()) {
  97. $params = (new LiveRoomValidate())->goCheck('recommend');
  98. $result = LiveRoomLogic::recommend($params);
  99. if ($result) {
  100. return JsonServer::success('操作成功');
  101. }
  102. return JsonServer::error(LiveRoomLogic::getError());
  103. }
  104. $id = $this->request->get('id');
  105. return view('', [
  106. 'detail' => LiveRoomLogic::detail($id),
  107. ]);
  108. }
  109. }