getConfig()); } else { throw new Exception("抱歉,接口模式无法实例 {$class} 对象!"); } } else { [$appid, $appkey] = [sysconf('wechat.thr_appid'), sysconf('wechat.thr_appkey')]; $data = ['class' => $name, 'appid' => $appid, 'time' => time(), 'nostr' => uniqid()]; $data['sign'] = md5("{$data['class']}#{$appid}#{$appkey}#{$data['time']}#{$data['nostr']}"); // 创建远程连接,默认使用 JSON-RPC 方式调用接口 $token = enbase64url(json_encode($data, JSON_UNESCAPED_UNICODE)); return new JsonRpcClient("https://open.cuci.cc/service/api.client/jsonrpc?not_init_session=1&token={$token}"); } } /** * 解析调用对象名称 * @param string $name * @return array */ private static function parseName(string $name): array { foreach (['WeChat', 'WeMini', 'WeOpen', 'WePay', 'ThinkService'] as $type) { if (strpos($name, $type) === 0) { [, $base] = explode($type, $name); return [$type, $base, "\\{$type}\\{$base}"]; } } return ['-', '-', $name]; } /** * 获取当前微信APPID * @return string * @throws \think\admin\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getAppid(): string { if ($this->getType() === 'api') { return sysconf('wechat.appid'); } else { return sysconf('wechat.thr_appid'); } } /** * 获取接口授权模式 * @return string * @throws \think\admin\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getType(): string { $type = strtolower(sysconf('wechat.type')); if (in_array($type, ['api', 'thr'])) return $type; throw new Exception('请在后台配置微信对接授权模式'); } /** * 获取公众号配置参数 * @return array * @throws \think\admin\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getConfig(): array { $options = [ 'appid' => $this->getAppid(), 'token' => sysconf('wechat.token'), 'appsecret' => sysconf('wechat.appsecret'), 'encodingaeskey' => sysconf('wechat.encodingaeskey'), 'mch_id' => sysconf('wechat.mch_id'), 'mch_key' => sysconf('wechat.mch_key'), 'cache_path' => $this->app->getRuntimePath() . 'wechat', ]; $local = LocalStorage::instance(); switch (strtolower(sysconf('wechat.mch_ssl_type'))) { case 'p12': $options['ssl_p12'] = $local->path(sysconf('wechat.mch_ssl_p12'), true); break; case 'pem': $options['ssl_key'] = $local->path(sysconf('wechat.mch_ssl_key'), true); $options['ssl_cer'] = $local->path(sysconf('wechat.mch_ssl_cer'), true); break; } return $options; } /** * 通过网页授权获取粉丝信息 * @param string $source 回跳URL地址 * @param integer $isfull 获取资料模式 * @param boolean $redirect 是否直接跳转 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\admin\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getWebOauthInfo(string $source, int $isfull = 0, bool $redirect = true): array { $appid = $this->getAppid(); $openid = $this->app->session->get("{$appid}_openid"); $userinfo = $this->app->session->get("{$appid}_fansinfo"); if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) { empty($userinfo) || FansService::instance()->set($userinfo, $appid); return ['openid' => $openid, 'fansinfo' => $userinfo]; } if ($this->getType() === 'api') { // 解析 GET 参数 parse_str(parse_url($source, PHP_URL_QUERY), $params); $getVars = [ 'code' => $params['code'] ?? input('code', ''), 'rcode' => $params['rcode'] ?? input('rcode', ''), 'state' => $params['state'] ?? input('state', ''), ]; $wechat = static::WeChatOauth(); if ($getVars['state'] !== $appid || empty($getVars['code'])) { $params['rcode'] = enbase64url($source); $location = strstr("{$source}?", '?', true) . '?' . http_build_query($params); $oauthurl = $wechat->getOauthRedirect($location, $appid, $isfull ? 'snsapi_userinfo' : 'snsapi_base'); throw new HttpResponseException($redirect ? redirect($oauthurl, 301) : response("location.href='{$oauthurl}'")); } elseif (($token = $wechat->getOauthAccessToken($getVars['code'])) && isset($token['openid'])) { $this->app->session->set("{$appid}_openid", $openid = $token['openid']); if ($isfull && isset($token['access_token'])) { $userinfo = $wechat->getUserInfo($token['access_token'], $openid); $this->app->session->set("{$appid}_fansinfo", $userinfo); empty($userinfo) || FansService::instance()->set($userinfo, $appid); } } if ($getVars['rcode']) { $location = debase64url($getVars['rcode']); throw new HttpResponseException($redirect ? redirect($location, 301) : response("location.href='{$location}'")); } elseif ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) { return ['openid' => $openid, 'fansinfo' => $userinfo]; } else { throw new Exception('Query params [rcode] not find.'); } } else { $result = static::ThinkServiceConfig()->oauth($this->app->session->getId(), $source, $isfull); $this->app->session->set("{$appid}_openid", $openid = $result['openid']); $this->app->session->set("{$appid}_fansinfo", $userinfo = $result['fans']); if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) { empty($userinfo) || FansService::instance()->set($userinfo, $appid); return ['openid' => $openid, 'fansinfo' => $userinfo]; } if ($redirect) { throw new HttpResponseException(redirect($result['url'], 301)); } else { throw new HttpResponseException(response("location.href='{$result['url']}'")); } } } /** * 获取微信网页JSSDK签名参数 * @param null|string $location 签名地址 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\admin\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getWebJssdkSign(?string $location = null): array { $location = $location ?: $this->app->request->url(true); if ($this->getType() === 'api') { return static::WeChatScript()->getJsSign($location); } else { return static::ThinkServiceConfig()->jsSign($location); } } }