getConfig()); } 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']}"); $token = enbase64url(json_encode($data, JSON_UNESCAPED_UNICODE)); $location = "https://open.cuci.cc/service/api.client/_TYPE_?not_init_session=1&token={$token}"; if (class_exists('Yar_Client')) { $client = new \Yar_Client(str_replace('_TYPE_', 'yar', $location)); } else { $client = new JsonRpcClient(str_replace('_TYPE_', 'jsonrpc', $location)); } try { $exception = new \think\Exception($client->getMessage(), $client->getCode()); } catch (\Exception $exception) { $exception = null; } if ($exception instanceof \Exception) { throw $exception; } return $client; } } /** * 解析调用对象名称 * @param string $name * @return array */ private static function paraseName(string $name): array { foreach (['WeChat', 'WeMini', 'WeOpen', 'WePay', 'ThinkService'] as $type) { if (strpos($name, $type) === 0) { [, $class] = explode($type, $name); return [$type, $class, "\\{$type}\\{$class}"]; } } return ['-', '-', $name]; } /** * 获取当前微信APPID * @return string * @throws \think\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\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 \think\Exception('请在后台配置微信对接授权模式'); } /** * 获取公众号配置参数 * @return array * @throws \think\Exception * @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\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getWebOauthInfo(string $source, $isfull = 0, $redirect = true): array { $appid = $this->getAppid(); $openid = $this->app->session->get("{$appid}_openid"); $fansinfo = $this->app->session->get("{$appid}_fansinfo"); if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($fansinfo))) { empty($fansinfo) || FansService::instance()->set($fansinfo, $appid); return ['openid' => $openid, 'fansinfo' => $fansinfo]; } if ($this->getType() === 'api') { $wechat = self::WeChatOauth(); if (input('state') !== $appid) { $snsapi = empty($isfull) ? 'snsapi_base' : 'snsapi_userinfo'; $params = (strpos($source, '?') !== false ? '&' : '?') . 'rcode=' . enbase64url($source); $oauthurl = $wechat->getOauthRedirect($source . $params, $appid, $snsapi); if ($redirect) { throw new HttpResponseException(redirect($oauthurl, 301)); } else { throw new HttpResponseException(response("window.location.href='{$oauthurl}'")); } } if (($token = $wechat->getOauthAccessToken()) && isset($token['openid'])) { $this->app->session->set("{$appid}_openid", $openid = $token['openid']); if (empty($isfull) && input('rcode')) { throw new HttpResponseException(redirect(debase64url(input('rcode')), 301)); } $this->app->session->set("{$appid}_fansinfo", $fansinfo = $wechat->getUserInfo($token['access_token'], $openid)); empty($fansinfo) || FansService::instance()->set($fansinfo, $appid); } throw new HttpResponseException(redirect(debase64url(input('rcode')), 301)); } else { $result = self::ThinkServiceConfig()->oauth($this->app->session->getId(), $source, $isfull); $this->app->session->set("{$appid}_openid", $openid = $result['openid']); $this->app->session->set("{$appid}_fansinfo", $fansinfo = $result['fans']); if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($fansinfo))) { if (!empty($fansinfo)) FansService::instance()->set($fansinfo, $appid); return ['openid' => $openid, 'fansinfo' => $fansinfo]; } if ($redirect && !empty($result['url'])) { throw new HttpResponseException(redirect($result['url'], 301)); } else { throw new HttpResponseException(response("window.location.href='{$result['url']}'")); } } } /** * 获取微信网页JSSDK签名参数 * @param null|string $location 签名地址 * @return array * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\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 self::WeChatScript()->getJsSign($location); } else { return self::ThinkServiceConfig()->jsSign($location); } } }