getConfig()); } else { list($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 = "http://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 = JsonRpcClientService::instance()->create(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($name) { foreach (['WeChat', 'WeMini', 'WeOpen', 'WePay', 'ThinkService'] as $type) { if (strpos($name, $type) === 0) { list(, $class) = explode($type, $name); return [$type, $class, "\\{$type}\\{$class}"]; } } return ['-', '-', $name]; } /** * 获取当前微信APPID * @return bool|string * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getAppid() { 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() { $type = strtolower(sysconf('wechat.type')); if (in_array($type, ['api', 'thr'])) return $type; throw new \think\Exception('请在后台配置微信对接授权模式'); } /** * 获取公众号配置参数 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getConfig() { $options = [ 'token' => sysconf('wechat.token'), 'appid' => sysconf('wechat.appid'), 'appsecret' => sysconf('wechat.appsecret'), 'encodingaeskey' => sysconf('wechat.encodingaeskey'), 'mch_id' => sysconf('wechat.mch_id'), 'cache_path' => $this->app->getRuntimePath() . 'wechat', ]; if (sysconf('wechat.mch_ssl_type') === 'p12') { $options['ssl_p12'] = sysconf('wechat.mch_ssl_p12'); } else { $options['ssl_key'] = sysconf('wechat.mch_ssl_key'); $options['ssl_cer'] = sysconf('wechat.mch_ssl_cer'); } 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($source, $isfull = 0, $redirect = true) { $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); return ['openid' => $openid, 'fansinfo' => $fansinfo]; } if ($this->getType() === 'api') { $wechat = self::WeChatOauth(); if (input('state') !== $appid) { $snsapi = empty($isfull) ? 'snsapi_base' : 'snsapi_userinfo'; $param = (strpos($source, '?') !== false ? '&' : '?') . 'rcode=' . encode($source); $oauthurl = $wechat->getOauthRedirect($source . $param, $appid, $snsapi); if ($redirect) throw new HttpResponseException(redirect($oauthurl, 301)); exit("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(enbase64url(input('rcode')), 301)); } $this->app->session->set("{$appid}_fansinfo", $fansinfo = $wechat->getUserInfo($token['access_token'], $openid)); empty($fansinfo) || FansService::instance()->set($fansinfo); } throw new HttpResponseException(redirect(enbase64url(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); return ['openid' => $openid, 'fansinfo' => $fansinfo]; } if ($redirect && !empty($result['url'])) { throw new HttpResponseException(redirect($result['url'], 301)); } exit("window.location.href='{$result['url']}'"); } } /** * 获取微信网页JSSDK * @param string $url JS签名地址 * @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($url = null) { $url = is_null($url) ? $this->app->request->url(true) : $url; if ($this->getType() === 'api') { return self::WeChatScript()->getJsSign($url); } else { return self::ThinkServiceConfig()->jsSign($url); } } }