| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace app\extra\weMini;
- use app\extra\weMini\crypt\wxBizDataCrypt;
- use WeChat\Exceptions\InvalidDecryptException;
- use WeChat\Exceptions\InvalidResponseException;
- use yzh52521\EasyHttp\Http;
- class Crypt extends BasicWeChat
- {
- /**
- * 数据签名校验
- * @param string $iv
- * @param string $sessionKey
- * @param string $encryptedData
- * @return bool|array
- */
- public function decode($iv, $sessionKey, $encryptedData)
- {
- $pc = new WXBizDataCrypt($this->config->get('appid'), $sessionKey);
- $errCode = $pc->decryptData($encryptedData, $iv, $data);
- if ($errCode == 0) {
- return json_decode($data, true);
- }
- return false;
- }
- /**
- * 登录凭证校验
- * @param string $code 登录时获取的 code
- * @return array
- * @throws \WeChat\Exceptions\LocalCacheException
- */
- public function session($code)
- {
- $appid = $this->config->get('appid');
- $secret = $this->config->get('appsecret');
- $url = "https://api.weixin.qq.com/sns/jscode2session?appid={$appid}&secret={$secret}&js_code={$code}&grant_type=authorization_code";
- return Http::get($url)->array();
- }
- /**
- * 换取用户信息
- * @param string $code 用户登录凭证(有效期五分钟)
- * @param string $iv 加密算法的初始向量
- * @param string $encryptedData 加密数据( encryptedData )
- * @return array
- * @throws \WeChat\Exceptions\InvalidDecryptException
- * @throws \WeChat\Exceptions\InvalidResponseException
- * @throws \WeChat\Exceptions\LocalCacheException
- */
- public function userInfo($code, $iv, $encryptedData)
- {
- $result = $this->session($code);
- if (empty($result['session_key'])) {
- throw new InvalidResponseException('Code 换取 SessionKey 失败', 403);
- }
- $userinfo = $this->decode($iv, $result['session_key'], $encryptedData);
- if (empty($userinfo)) {
- throw new InvalidDecryptException('用户信息解析失败', 403);
- }
- return array_merge($result, $userinfo);
- }
- }
|