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

WechatLiveRoom.php 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\command;
  20. use app\common\enum\LiveRoomEnum;
  21. use app\common\model\live\LiveRoom;
  22. use app\common\server\WxMnpLiveServer;
  23. use think\console\Command;
  24. use think\console\Output;
  25. use think\console\Input;
  26. use think\facade\Log;
  27. class WechatLiveRoom extends Command
  28. {
  29. // 直播间数据
  30. protected $roomData = [];
  31. // 获取次数限制
  32. protected $requestlimit = 5;
  33. protected function configure()
  34. {
  35. $this->setName('wechat_live_room')
  36. ->setDescription('微信小程序直播状态同步');
  37. }
  38. protected function execute(Input $input, Output $output)
  39. {
  40. try {
  41. $liveStatus = [
  42. LiveRoomEnum::LIVE_STATUS_WAIT,
  43. LiveRoomEnum::LIVE_STATUS_ING,
  44. LiveRoomEnum::LIVE_STATUS_STOP,
  45. LiveRoomEnum::LIVE_STATUS_ERROR,
  46. ];
  47. $localRooms = LiveRoom::where('wx_room_id', '>', 0)
  48. ->where(['audit_status' => LiveRoomEnum::AUDIT_STATUS_SUCCESS, 'del' => 0])
  49. ->whereIn('live_status', $liveStatus)
  50. ->select()->toArray();
  51. if (empty($localRooms)) {
  52. return true;
  53. }
  54. $wxRooms = $this->getRooms();
  55. if (empty($wxRooms)) {
  56. return true;
  57. }
  58. $updateData = [];
  59. $wxRooms = array_column($wxRooms, null, 'roomid');
  60. foreach ($localRooms as $localRoom) {
  61. $localRoomId = $localRoom['wx_room_id'];
  62. if (!isset($wxRooms[$localRoomId])) {
  63. continue;
  64. }
  65. $wxRoomData = $wxRooms[$localRoomId];
  66. $updateData[] = [
  67. 'id' => $localRoom['id'],
  68. 'goods_num' => count($wxRoomData['goods']),
  69. 'live_status' => $wxRoomData['live_status'],
  70. ];
  71. }
  72. if (!empty($updateData)) {
  73. (new LiveRoom())->saveAll($updateData);
  74. }
  75. return true;
  76. } catch (\Exception $e) {
  77. Log::write('更新直播间信息失败:' . $e->getMessage());
  78. return false;
  79. }
  80. }
  81. /**
  82. * @notes 获取直播间
  83. * @param int $start
  84. * @param int $limit
  85. * @return array
  86. * @throws \Exception
  87. * @author 段誉
  88. * @date 2023/2/17 18:45
  89. */
  90. protected function getRooms($start = 0, $limit = 100)
  91. {
  92. $result = (new WxMnpLiveServer())->handle('getRooms', [
  93. 'start' => $start,
  94. 'limit' => $limit,
  95. ]);
  96. if (0 != $result['errcode']) {
  97. return [];
  98. }
  99. $this->requestlimit -= 1;
  100. $this->roomData = array_merge($result['room_info'], $this->roomData);
  101. if ($result['total'] == $limit && $this->requestlimit > 0) {
  102. return $this->getRooms($limit + 1, $limit);
  103. }
  104. return $this->roomData;
  105. }
  106. }