* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace EasyWeChat\OfficialAccount\Device; use EasyWeChat\Kernel\BaseClient; /** * Class Client. * * @see http://iot.weixin.qq.com/wiki/new/index.html * * @author soone <66812590@qq.com> */ class Client extends BaseClient { /** * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function message(string $deviceId, string $openid, string $content) { $params = [ 'device_type' => $this->app['config']['device_type'], 'device_id' => $deviceId, 'open_id' => $openid, 'content' => base64_encode($content), ]; return $this->httpPostJson('device/transmsg', $params); } /** * Get device qrcode. * * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function qrCode(array $deviceIds) { $params = [ 'device_num' => count($deviceIds), 'device_id_list' => $deviceIds, ]; return $this->httpPostJson('device/create_qrcode', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function authorize(array $devices, string $productId, int $opType = 0) { $params = [ 'device_num' => count($devices), 'device_list' => $devices, 'op_type' => $opType, 'product_id' => $productId, ]; return $this->httpPostJson('device/authorize_device', $params); } /** * 获取 device id 和二维码 * * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function createId(string $productId) { $params = [ 'product_id' => $productId, ]; return $this->httpGet('device/getqrcode', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function bind(string $openid, string $deviceId, string $ticket) { $params = [ 'ticket' => $ticket, 'device_id' => $deviceId, 'openid' => $openid, ]; return $this->httpPostJson('device/bind', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function unbind(string $openid, string $deviceId, string $ticket) { $params = [ 'ticket' => $ticket, 'device_id' => $deviceId, 'openid' => $openid, ]; return $this->httpPostJson('device/unbind', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function forceBind(string $openid, string $deviceId) { $params = [ 'device_id' => $deviceId, 'openid' => $openid, ]; return $this->httpPostJson('device/compel_bind', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException * @throws \GuzzleHttp\Exception\GuzzleException */ public function forceUnbind(string $openid, string $deviceId) { $params = [ 'device_id' => $deviceId, 'openid' => $openid, ]; return $this->httpPostJson('device/compel_unbind', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function status(string $deviceId) { $params = [ 'device_id' => $deviceId, ]; return $this->httpGet('device/get_stat', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function verify(string $ticket) { $params = [ 'ticket' => $ticket, ]; return $this->httpPost('device/verify_qrcode', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function openid(string $deviceId) { $params = [ 'device_type' => $this->app['config']['device_type'], 'device_id' => $deviceId, ]; return $this->httpGet('device/get_openid', $params); } /** * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string * * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException */ public function listByOpenid(string $openid) { $params = [ 'openid' => $openid, ]; return $this->httpGet('device/get_bind_device', $params); } }