// +---------------------------------------------------------------------- namespace crmeb\services\easywechat\broadcast; use EasyWeChat\Core\Exceptions\HttpException; use EasyWeChat\MiniProgram\Core\AbstractMiniProgram; /** * Class Client. * * @author Abbotton */ class Client extends AbstractMiniProgram { const MSG_CODE = [ '1' => '未创建直播间', '1003' => '商品id不存在', '47001' => '入参格式不符合规范', '200002' => '入参错误', '300001' => '禁止创建/更新商品 或 禁止编辑&更新房间', '300002' => '名称长度不符合规则', '300006' => '图片上传失败', '300022' => '此房间号不存在', '300023' => '房间状态 拦截', '300024' => '商品不存在', '300025' => '商品审核未通过', '300026' => '房间商品数量已经满额', '300027' => '导入商品失败', '300028' => '房间名称违规', '300029' => '主播昵称违规', '300030' => '主播微信号不合法', '300031' => '直播间封面图不合规', '300032' => '直播间分享图违规', '300033' => '添加商品超过直播间上限', '300034' => '主播微信昵称长度不符合要求', '300035' => '主播微信号不存在', '300003' => '价格输入不合规', '300004' => '商品名称存在违规违法内容', '300005' => '商品图片存在违规违法内容', '300007' => '线上小程序版本不存在该链接', '300008' => '添加商品失败', '300009' => '商品审核撤回失败', '300010' => '商品审核状态不对', '300011' => '操作非法', '300012' => '没有提审额度', '300013' => '提审失败', '300014' => '审核中,无法删除', '300017' => '商品未提审', '300018' => '图片尺寸不符合要求', '300021' => '商品添加成功,审核失败', '300036' => '请先在微信直播小程序中实名认证', '-1' => '系统错误', ]; const API = 'https://api.weixin.qq.com/'; /** * @param $api * @param $params * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ protected function httpPostJson($api, $params) { try { return $this->parseJSON('json', [self::API . $api, $params]); } catch (HttpException $e) { $code = $e->getCode(); throw new HttpException("接口异常[$code]" . (self::MSG_CODE[$code] ?? $e->getMessage()), $code); } } /** * @param $api * @param $params * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ protected function httpPost($api, $params) { try { return $this->parseJSON('post', [self::API . $api, $params]); } catch (HttpException $e) { $code = $e->getCode(); throw new HttpException("接口异常[$code]" . (self::MSG_CODE[$code] ?? $e->getMessage()), $code); } } /** * @param $api * @param $params * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ protected function httpGet($api, $params) { try { return $this->parseJSON('get', [self::API . $api, $params]); } catch (HttpException $e) { $code = $e->getCode(); throw new HttpException("接口异常[$code]" . (self::MSG_CODE[$code] ?? $e->getMessage()), $code); } } /** * Add broadcast goods. * * @param array $goodsInfo * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function create(array $goodsInfo) { $params = [ 'goodsInfo' => $goodsInfo, ]; return $this->httpPostJson('wxaapi/broadcast/goods/add', $params); } /** * Reset audit. * * @param int $auditId * @param int $goodsId * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function resetAudit(int $auditId, int $goodsId) { $params = [ 'auditId' => $auditId, 'goodsId' => $goodsId, ]; return $this->httpPostJson('wxaapi/broadcast/goods/resetaudit', $params); } /** * Resubmit audit goods. * * @param int $goodsId * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function resubmitAudit(int $goodsId) { $params = [ 'goodsId' => $goodsId, ]; return $this->httpPostJson('wxaapi/broadcast/goods/audit', $params); } /** * Delete broadcast goods. * * @param int $goodsId * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function delete(int $goodsId) { $params = [ 'goodsId' => $goodsId, ]; return $this->httpPostJson('wxaapi/broadcast/goods/delete', $params); } /** * Update goods info. * * @param array $goodsInfo * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function update(array $goodsInfo) { $params = [ 'goodsInfo' => $goodsInfo, ]; return $this->httpPostJson('wxaapi/broadcast/goods/update', $params); } /** * Get goods information and review status. * * @param array $goodsIdArray * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function getGoodsWarehouse(array $goodsIdArray) { $params = [ 'goods_ids' => $goodsIdArray, ]; return $this->httpPostJson('wxa/business/getgoodswarehouse', $params); } /** * Get goods list based on status * * @param array $params * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function getApproved(array $params) { return $this->httpGet('wxaapi/broadcast/goods/getapproved', $params); } /** * Add goods to the designated live room. * * @param array $params * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function addGoods(array $params) { return $this->httpPost('wxaapi/broadcast/room/addgoods', $params); } /** * Get Room List. * * @param int $start * @param int $limit * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function getRooms(int $start = 0, int $limit = 10) { $params = [ 'start' => $start, 'limit' => $limit, ]; return $this->httpPostJson('wxa/business/getliveinfo', $params); } /** * Get Playback List. * * @param int $roomId * @param int $start * @param int $limit * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function getPlaybacks(int $roomId, int $start = 0, int $limit = 10) { $params = [ 'action' => 'get_replay', 'room_id' => $roomId, 'start' => $start, 'limit' => $limit, ]; return $this->httpPostJson('wxa/business/getliveinfo', $params); } /** * Create a live room. * * @param array $params * @return \EasyWeChat\Support\Collection|null * @throws \EasyWeChat\Core\Exceptions\HttpException */ public function createLiveRoom(array $params) { return $this->httpPostJson('wxaapi/broadcast/room/create', $params); } }