diff --git a/Index.php b/Index.php new file mode 100644 index 0000000..e27ccad --- /dev/null +++ b/Index.php @@ -0,0 +1,22 @@ +get('wechat'); + $wechat = new WeChatAPI($config); + $info = $wechat->getUserInfo(); + return [ + 'userinfo' => $info + ]; + } +} diff --git a/wechat/WeChatAPI.php b/wechat/WeChatAPI.php new file mode 100644 index 0000000..98814d5 --- /dev/null +++ b/wechat/WeChatAPI.php @@ -0,0 +1,218 @@ +url = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; + $this->config = $config; + } + + /** + * 获取ACCESS_TOKEN + * @return bool|mixed + */ + private function getAccessToken() + { + $file = './access_token.json'; + if (file_exists($file)) { + $content = file_get_contents($file); + $result = json_decode($content, true); + $expires = $result['expires_in'] - (time() - filemtime($file)); + if ($expires <= 5) { + @unlink($file); + return $this->getAccessToken(); + } + } else { + $api = $this->accessTokenAPI . "grant_type=client_credential&appid={$this->config['appid']}&secret={$this->config['appsecret']}"; + $json = create_http_request($api); + $result = json_decode($json, true); + if (isset($result['errcode']) && $result['errcode'] != 0) { + throw new WeChatAPIException('code:' . $result['errcode'] . ',' . $result['errmsg']); + } + file_put_contents($file, $json); + } + return $result; + } + + /** + * 获取CODE + * @param $scope + */ + private function getCode($scope) + { + $redirect = $this->url; + $api = $this->codeAPI . "appid={$this->config['appid']}&redirect_uri={$redirect}&response_type=code&scope={$scope}&state=0#wechat_redirect"; + header('location:' . $api); + } + + /** + * 获取OAuth的ACCESS_TOKEN + * @param string $scope + * @return bool|mixed|void + */ + private function getOAuthAccessToken($scope = 'snsapi_base') + { + $file = './oauth_access_token.json'; + if (file_exists($file)) { + $content = file_get_contents($file); + $result = json_decode($content, true); + $expires = $result['expires_in'] - (time() - filemtime($file)); + if ($expires <= 5) { + @unlink($file); + return $this->getOAuthAccessToken(); + } + } else { + $code = isset($_GET['code']) ? $_GET['code'] : null; + if (!$code) { + return $this->getCode($scope); + } + $api = $this->oauthAccessTokenAPI . "appid={$this->config['appid']}&secret={$this->config['appsecret']}&code={$code}&grant_type=authorization_code"; + $json = create_http_request($api); + $result = json_decode($json, true); + if (isset($result['errcode']) && $result['errcode'] != 0) { + throw new WeChatAPIException('code:' . $result['errcode'] . ',' . $result['errmsg']); + } + file_put_contents($file, $json); + } + return $result; + } + + /** + * 拉取用户信息 + * @param string $openid + * @return bool|mixed + */ + public function getUserInfo($openid = null) + { + $postData = []; + if ($openid) { + $accessToken = $this->getAccessToken(); + if (is_array($openid)) { + $postData = [ + 'user_list' => $openid + ]; + $api = $this->userinfoUnionIdAPI . "access_token={$accessToken['access_token']}"; + } else { + $api = $this->userinfoUnionIdAPI . "access_token={$accessToken['access_token']}&openid={$openid}&lang=zh_CN"; + } + } else { + $accessToken = $this->getOAuthAccessToken('snsapi_userinfo'); + $api = $this->userinfoAPI . "access_token={$accessToken['access_token']}&openid={$accessToken['openid']}&lang=zh_CN"; + } + $json = create_http_request($api, json_encode($postData)); + $result = json_decode($json, true); + if (isset($result['errcode']) && $result['errcode'] != 0) { + $this->error = 'code:' . $result['errcode'] . ',' . $result['errmsg']; + return false; + } + return $result; + } + + /** + * 创建公众号菜单 + * $menu数据示例 + * [ + * [ + * 'type' => 'view', + * 'name' => 'TOP糯米', + * 'url' => 'https://www.topnuomi.com/' + * ], + * [ + * 'name' => '测试多级', + * 'sub_button' => [ + * [ + * 'type' => 'view', + * 'name' => '我的主页', + * 'url' => 'https://topnuomi.com/' + * ], + * [ + * 'type' => 'click', + * 'name' => '点击', + * 'key' => 'V1001_TODAY_MUSIC' + * ] + * ] + * ] + * ] + * @param array $menu + * @return bool + */ + public function createMenu($menu = []) + { + $accessToken = $this->getAccessToken(); + $api = $this->menuAPI . "?access_token={$accessToken['access_token']}"; + $menu = json_encode([ + 'button' => $menu + ], JSON_UNESCAPED_UNICODE); + $json = create_http_request($api, $menu); + $result = json_decode($json, true); + if (isset($result['errcode']) && $result['errcode'] != 0) { + $this->error = 'code:' . $result['errcode'] . ',' . $result['errmsg']; + return false; + } + return true; + } + + /** + * 获取错误信息 + * @return null + */ + public function getError() + { + return $this->error; + } + +} diff --git a/wechat/WeChatAPIException.php b/wechat/WeChatAPIException.php new file mode 100644 index 0000000..6471e30 --- /dev/null +++ b/wechat/WeChatAPIException.php @@ -0,0 +1,8 @@ +checkSignature()) { + echo $echoStr; + exit; + } + } + + public function setToken($token) + { + $this->token = $token; + return $this; + } + + public function responseMsg() + { + //get post data, May be due to the different environments + $postStr = $GLOBALS["HTTP_RAW_POST_DATA"]; + //extract post data + if (!empty($postStr)) { + $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA); + $fromUsername = $postObj->FromUserName; + $toUsername = $postObj->ToUserName; + $keyword = trim($postObj->Content); + $time = time(); + $textTpl = " + + + %s + + + 0 + "; + if (!empty($keyword)) { + $msgType = "text"; + $contentStr = "Welcome to wechat world!"; + $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr); + echo $resultStr; + } else { + echo "Input something..."; + } + } else { + echo ""; + exit; + } + } + + private function checkSignature() + { + $signature = $_GET["signature"]; + $timestamp = $_GET["timestamp"]; + $nonce = $_GET["nonce"]; + $token = $this->token; + $tmpArr = array($token, $timestamp, $nonce); + sort($tmpArr); + $tmpStr = implode($tmpArr); + $tmpStr = sha1($tmpStr); + if ($tmpStr == $signature) { + return true; + } else { + return false; + } + } +}