截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

WxMnpLiveServer.php 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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\server;
  20. use app\common\exception\WechatException;
  21. use EasyWeChat\Factory;
  22. /**
  23. * 微信小程序直播
  24. * Class WxLiveServer
  25. * @package app\common\server
  26. */
  27. class WxMnpLiveServer
  28. {
  29. // wechat
  30. protected $app = null;
  31. // 初始化
  32. public function __construct()
  33. {
  34. $config = WeChatServer::getMnpConfig();
  35. $this->app = Factory::miniProgram($config);
  36. }
  37. public function handle($action, $data)
  38. {
  39. try {
  40. $result = $this->$action($data);
  41. if (0 != $result['errcode']) {
  42. throw new WechatException($result['errmsg'], $result['errcode']);
  43. }
  44. return $result;
  45. } catch (\Exception $e) {
  46. throw new \Exception($e->getMessage());
  47. }
  48. }
  49. /**
  50. * @notes 获取直播间
  51. * @param $params
  52. * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
  53. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  54. * @throws \GuzzleHttp\Exception\GuzzleException
  55. * @author 段誉
  56. * @date 2023/2/17 17:45
  57. */
  58. public function getRooms($params)
  59. {
  60. return $this->app->broadcast->getRooms($params['start'], $params['limit']);
  61. }
  62. /**
  63. * @notes 添加直播间
  64. * @param $roomData
  65. * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
  66. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  67. * @throws \GuzzleHttp\Exception\GuzzleException
  68. * @author 段誉
  69. * @date 2023/2/17 15:10
  70. */
  71. public function createLiveRoom($roomData)
  72. {
  73. return $this->app->broadcast->createLiveRoom($roomData);
  74. }
  75. /**
  76. * @notes 编辑直播间
  77. * @param $roomData
  78. * @return mixed
  79. * @author 段誉
  80. * @date 2023/2/17 16:05
  81. */
  82. public function editRoom($roomData)
  83. {
  84. return $this->app->httpPost('wxaapi/broadcast/room/editroom', $roomData);
  85. }
  86. /**
  87. * @notes 删除直播间
  88. * @param $roomId
  89. * @return mixed
  90. * @throws WechatException
  91. * @author 段誉
  92. * @date 2023/2/17 14:52
  93. */
  94. public function delRoom($roomId)
  95. {
  96. return $this->app->httpPostJson('wxaapi/broadcast/room/deleteroom', [
  97. "id" => $roomId,
  98. ]);
  99. }
  100. /**
  101. * @notes 商品添加并提审
  102. * @param $goodsInfo
  103. * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
  104. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  105. * @throws \GuzzleHttp\Exception\GuzzleException
  106. * @author 段誉
  107. * @date 2023/2/17 15:10\
  108. */
  109. public function addAndAuditGoods($goodsInfo)
  110. {
  111. return $this->app->broadcast->create($goodsInfo);
  112. }
  113. /**
  114. * @notes 商品详情
  115. * @param $goodsIds
  116. * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
  117. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  118. * @throws \GuzzleHttp\Exception\GuzzleException
  119. * @author 段誉
  120. * @date 2023/2/17 19:15
  121. */
  122. public function getGoodsWarehouse($goodsIds)
  123. {
  124. return $this->app->broadcast->getGoodsWarehouse($goodsIds);
  125. }
  126. /**
  127. * @notes 删除商品
  128. * @param $goodsIds
  129. * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
  130. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  131. * @throws \GuzzleHttp\Exception\GuzzleException
  132. * @author 段誉
  133. * @date 2023/2/17 15:10
  134. */
  135. public function delGoods($goodsIds)
  136. {
  137. return $this->app->broadcast->delete($goodsIds);
  138. }
  139. /**
  140. * @notes 导入商品
  141. * @param $data
  142. * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string
  143. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  144. * @throws \GuzzleHttp\Exception\GuzzleException
  145. * @author 段誉
  146. * @date 2023/2/17 15:10
  147. */
  148. public function importGoods($data)
  149. {
  150. return $this->app->broadcast->addGoods($data);
  151. }
  152. }