From f8ed417a2d425d65b0690f3c7ea3da0efad22342 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 1 Feb 2018 16:58:36 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E7=AC=AC?= =?UTF-8?q?=E4=B8=89=E6=96=B9=E5=B9=B3=E5=8F=B0=E6=9C=8D=E5=8A=A1=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Contracts/WeChat.php | 6 +- WeChat/Open.php | 258 ++++++++++++++++++++++++++++++++++++ 2 files changed, 261 insertions(+), 3 deletions(-) create mode 100644 WeChat/Open.php diff --git a/WeChat/Contracts/WeChat.php b/WeChat/Contracts/WeChat.php index 1d048ad..d307dfc 100644 --- a/WeChat/Contracts/WeChat.php +++ b/WeChat/Contracts/WeChat.php @@ -74,8 +74,8 @@ class WeChat if (!empty($this->access_token)) { return $this->access_token; } - $cacheKey = $this->config->get('appid') . '_access_token'; - $this->access_token = Tools::getCache($cacheKey); + $cache = $this->config->get('appid') . '_access_token'; + $this->access_token = Tools::getCache($cache); if (!empty($this->access_token)) { return $this->access_token; } @@ -83,7 +83,7 @@ class WeChat $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$appid}&secret={$secret}"; $result = Tools::json2arr(Tools::get($url)); if (!empty($result['access_token'])) { - Tools::setCache($cacheKey, $result['access_token'], 6000); + Tools::setCache($cache, $result['access_token'], 6000); } return $result['access_token']; } diff --git a/WeChat/Open.php b/WeChat/Open.php new file mode 100644 index 0000000..31e691e --- /dev/null +++ b/WeChat/Open.php @@ -0,0 +1,258 @@ +config = new DataArray($options); + } + + /** + * 接收公众平台推送的 Ticket + * @return bool|array + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function setComonentTicket() + { + $receive = new Receive([ + 'token' => $this->config->get('component_token'), + 'appid' => $this->config->get('component_appid'), + 'appsecret' => $this->config->get('component_appsecret'), + 'encodingaeskey' => $this->config->get('component_encodingaeskey'), + ]); + $data = $receive->getReceive(); + if (!empty($data['ComponentVerifyTicket'])) { + Tools::setCache('component_verify_ticket', $data['ComponentVerifyTicket']); + } + return $data; + } + + /** + * 获取或刷新服务 AccessToken + * @return bool|string + * @throws Exceptions\LocalCacheException + * @throws Exceptions\InvalidResponseException + */ + public function getComponentAccessToken() + { + $cache = 'wechat_component_access_token'; + $component_access_token = Tools::getCache($cache); + if (empty($$component_access_token)) { + $url = 'https://api.weixin.qq.com/cgi-bin/component/api_component_token'; + $result = $this->callPostApi($url, [ + 'component_appid' => $this->config->get('component_appid'), + 'component_appsecret' => $this->config->get('component_appsecret'), + 'component_verify_ticket' => Tools::get('component_verify_ticket'), + ]); + if (empty($result['component_access_token'])) { + throw new InvalidResponseException('Get getComponentAccessToken Faild', '0'); + } + Tools::setCache($cache, $component_access_token, 7000); + } + return $component_access_token; + } + + /** + * 获取授权方的帐号基本信息 + * @param string $authorizer_appid 授权公众号或小程序的appid + * @return array + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function getAuthorizerInfo($authorizer_appid) + { + $component_access_token = $this->getComponentAccessToken(); + $url = "https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_info?component_access_token={$component_access_token}"; + $result = $this->callPostApi($url, [ + 'authorizer_appid' => $authorizer_appid, + 'component_appid' => $this->config->get('component_appid'), + ]); + return $result; + } + + /** + * 设置授权方的选项信息 + * @param string $authorizer_appid 授权公众号或小程序的appid + * @param string $option_name 选项名称 + * @param string $option_value 设置的选项值 + * @return array + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function setAuthorizerOption($authorizer_appid, $option_name, $option_value) + { + $component_access_token = $this->getComponentAccessToken(); + $url = "https://api.weixin.qq.com/cgi-bin/component/ api_set_authorizer_option?component_access_token={$component_access_token}"; + $result = $this->callPostApi($url, [ + 'authorizer_appid' => $authorizer_appid, + 'component_appid' => $this->config->get('component_appid'), + 'option_name' => $option_name, + 'option_value' => $option_value, + ]); + return $result; + } + + /** + * 获取预授权码 pre_auth_code + * @return string + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function getPreauthCode() + { + $component_access_token = $this->getComponentAccessToken(); + $url = "https://api.weixin.qq.com/cgi-bin/component/api_create_preauthcode?component_access_token={$component_access_token}"; + $result = $this->callPostApi($url, ['component_appid' => $this->config->get('component_appid')]); + if (empty($result['pre_auth_code'])) { + throw new InvalidResponseException('GetPreauthCode Faild.', '0'); + } + return $result['pre_auth_code']; + } + + /** + * 获取授权回跳地址 + * @param string $redirect_uri 回调URI + * @param integer $auth_type 要授权的帐号类型 + * @return bool + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function getAuthRedirect($redirect_uri, $auth_type = 3) + { + $pre_auth_code = $this->getPreauthCode(); + $redirect_uri = urlencode($redirect_uri); + $component_appid = $this->config->get('component_appid'); + return "https://mp.weixin.qq.com/cgi-bin/componentloginpage?component_appid={$component_appid}&pre_auth_code={$pre_auth_code}&redirect_uri={$redirect_uri}&auth_type={$auth_type}"; + } + + /** + * 使用授权码换取公众号或小程序的接口调用凭据和授权信息 + * @return bool|array + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function queryAuthorizerInfo() + { + if (empty($_GET['auth_code'])) { + return false; + } + $component_access_token = $this->getComponentAccessToken(); + $url = "https://api.weixin.qq.com/cgi-bin/component/api_query_auth?component_access_token={$component_access_token}"; + $result = $this->callPostApi($url, [ + 'component_appid' => $this->config->get('component_appid'), + 'authorization_code' => $_GET['auth_code'], + ]); + if (empty($result['authorizer_access_token'])) { + throw new InvalidResponseException('GetQueryComponent Faild.', '0'); + } + $authorizer_appid = $result['authorizer_appid']; + // 缓存授权公众号访问ACCESS_TOKEN + Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000); + return $result; + } + + /** + * 获取(刷新)授权公众号的令牌 + * @param string $authorizer_appid 授权公众号或小程序的appid + * @param string $authorizer_refresh_token 授权方的刷新令牌 + * @return array + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function refreshAccessToken($authorizer_appid, $authorizer_refresh_token) + { + $component_access_token = $this->getComponentAccessToken(); + $url = "https:// api.weixin.qq.com /cgi-bin/component/api_authorizer_token?component_access_token={$component_access_token}"; + $result = $this->callPostApi($url, [ + 'authorizer_appid' => $authorizer_appid, + 'authorizer_refresh_token' => $authorizer_refresh_token, + 'component_appid' => $this->config->get('component_appid'), + ]); + if (empty($result['authorizer_access_token'])) { + throw new InvalidResponseException('RefreshAccessToken Faild', '0'); + } + // 缓存授权公众号访问ACCESS_TOKEN + Tools::setCache("{$authorizer_appid}_access_token", $result['authorizer_access_token'], 7000); + return $result; + } + + /** + * oauth 授权跳转接口 + * @param string $appid + * @param string $redirect_uri 回调地址 + * @param string $scope snsapi_userinfo|snsapi_base + * @return string + */ + public function getOauthRedirect($appid, $redirect_uri, $scope = 'snsapi_userinfo') + { + $redirect_url = urlencode($redirect_uri); + $component_appid = $this->config->get('component_appid'); + return "https://open.weixin.qq.com/connect/oauth2/authorize?appid={$appid}&redirect_uri={$redirect_url}" + . "&response_type=code&scope={$scope}&state={$appid}&component_appid={$component_appid}#wechat_redirect"; + } + + /** + * 通过code获取AccessToken + * @param string $appid + * @return bool|array + * @throws Exceptions\LocalCacheException + * @throws InvalidResponseException + */ + public function getOauthAccessToken($appid) + { + if (empty($_GET['code'])) { + return false; + } + $component_appid = $this->config->get('component_appid'); + $component_access_token = $this->getComponentAccessToken(); + $url = "https://api.weixin.qq.com/sns/oauth2/component/access_token?appid={$appid}&code={$_GET['code']}&grant_type=authorization_code&" + . "component_appid={$component_appid}&component_access_token={$component_access_token}"; + $result = $this->callGetApi($url); + return $result !== false ? $result : false; + } + + +} \ No newline at end of file