diff --git a/WeChat/Contracts/WeChat.php b/WeChat/Contracts/WeChat.php new file mode 100644 index 0000000..bb3cc37 --- /dev/null +++ b/WeChat/Contracts/WeChat.php @@ -0,0 +1,186 @@ +config = new Config($options); + } + + /** + * 获取访问accessToken + * @return string + * @throws \Wechat\Exceptions\InvalidResponseException + * @throws \Wechat\Exceptions\LocalCacheException + */ + public function getAccesstoken() + { + if (!empty($this->access_token)) { + return $this->access_token; + } + $cacheKey = $this->config->get('appid') . '_accesstoken'; + $this->access_token = Tools::getCache($cacheKey); + if (!empty($this->access_token)) { + return $this->access_token; + } + list($appid, $secret) = [$this->config->get('appid'), $this->config->get('appsecret')]; + $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); + } + return $result['access_token']; + } + + /** + * 清理删除accessToken + * @return bool + */ + public function delAccessToken() + { + $this->access_token = ''; + return Tools::delCache($this->config->get('appid') . '_accesstoken'); + } + + + /** + * 以GET获取接口数据并转为数组 + * @param string $url 接口地址 + * @return array + */ + protected function httpGetForJson($url) + { + try { + return Tools::json2arr(Tools::get($url)); + } catch (InvalidResponseException $e) { + if (!$this->isTry && in_array($e->getCode(), ['40014', '40001', '41001', '42001'])) { + $this->delAccessToken(); + $this->isTry = true; + return call_user_func_array([$this, $this->currentMethod['method']], $this->currentMethod['arguments']); + } + } + } + + /** + * 以POST获取接口数据并转为数组 + * @param string $url 接口地址 + * @param array $data 请求数据 + * @param bool $buildToJson + * @return array + */ + protected function httpPostForJson($url, array $data, $buildToJson = true) + { + try { + return Tools::json2arr(Tools::post($url, $buildToJson ? Tools::arr2json($data) : $data)); + } catch (InvalidResponseException $e) { + if (!$this->isTry && in_array($e->getCode(), ['40014', '40001', '41001', '42001'])) { + $this->delAccessToken(); + $this->isTry = true; + return call_user_func_array([$this, $this->currentMethod['method']], $this->currentMethod['arguments']); + } + } + } + + /** + * 注册当前请求接口 + * @param string $url 接口地址 + * @param string $method 当前接口方法 + * @param array $arguments 请求参数 + * @return mixed + * @throws \Wechat\Exceptions\InvalidResponseException + * @throws \Wechat\Exceptions\LocalCacheException + */ + protected function registerApi(&$url, $method, $arguments = []) + { + $this->currentMethod = ['method' => $method, 'arguments' => $arguments]; + if (empty($this->access_token)) { + $this->access_token = $this->getAccesstoken(); + } + return $url = str_replace('ACCESS_TOKEN', $this->access_token, $url); + } + + /** + * 接口通用POST请求方法 + * @param string $url 接口URL + * @param array $data POST提交接口参数 + * @param bool $isBuildJson + * @return array + * @throws InvalidResponseException + * @throws \Wechat\Exceptions\LocalCacheException + */ + public function callPostApi($url, array $data, $isBuildJson = true) + { + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpPostForJson($url, $data, $isBuildJson); + } + + /** + * 接口通用GET请求方法 + * @param string $url 接口URL + * @return array + * @throws InvalidResponseException + * @throws \Wechat\Exceptions\LocalCacheException + */ + public function callGetApi($url) + { + $this->registerApi($url, __FUNCTION__, func_get_args()); + return $this->httpGetForJson($url); + } + +} \ No newline at end of file diff --git a/WeChat/Custom.php b/WeChat/Custom.php index 4503378..b7a43bc 100644 --- a/WeChat/Custom.php +++ b/WeChat/Custom.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 客服消息处理 * Class Custom * @package WeChat */ -class Custom extends WePay +class Custom extends WeChat { /** * 添加客服帐号 diff --git a/WeChat/Media.php b/WeChat/Media.php index 7b1e7e9..e3e8a4a 100644 --- a/WeChat/Media.php +++ b/WeChat/Media.php @@ -15,7 +15,7 @@ namespace WeChat; use WeChat\Contracts\Tools; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; use WeChat\Exceptions\InvalidResponseException; /** @@ -23,7 +23,7 @@ use WeChat\Exceptions\InvalidResponseException; * Class Media * @package WeChat */ -class Media extends WePay +class Media extends WeChat { /** * 新增临时素材 diff --git a/WeChat/Menu.php b/WeChat/Menu.php index 993b8d3..8e8620d 100644 --- a/WeChat/Menu.php +++ b/WeChat/Menu.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 微信菜单管理 * Class Menu * @package WeChat */ -class Menu extends WePay +class Menu extends WeChat { /** diff --git a/WeChat/Pay.php b/WeChat/Pay.php index 6dafc29..246a2d0 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -9,7 +9,7 @@ // +---------------------------------------------------------------------- // | 开源协议 ( https://mit-license.org ) // +---------------------------------------------------------------------- -// | github开源项目:https://github.com/zoujingli/WePayDeveloper +// | github开源项目:https://github.com/zoujingli/WeChatDeveloper // +---------------------------------------------------------------------- namespace WeChat; @@ -40,7 +40,7 @@ class Pay protected $config; /** - * WePay constructor. + * WeChat constructor. * @param array $options */ public function __construct(array $options) diff --git a/WeChat/Product.php b/WeChat/Product.php index e912f21..0973465 100644 --- a/WeChat/Product.php +++ b/WeChat/Product.php @@ -15,14 +15,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 商店管理 * Class Product * @package WeChat */ -class Product extends WePay +class Product extends WeChat { /** * 提交审核/取消发布商品 diff --git a/WeChat/Qrcode.php b/WeChat/Qrcode.php index aff5d39..256939b 100644 --- a/WeChat/Qrcode.php +++ b/WeChat/Qrcode.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 二维码管理 * Class Qrcode * @package WeChat */ -class Qrcode extends WePay +class Qrcode extends WeChat { /** diff --git a/WeChat/Scan.php b/WeChat/Scan.php index 54d5244..49776b7 100644 --- a/WeChat/Scan.php +++ b/WeChat/Scan.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 扫一扫接入管理 * Class Scan * @package WeChat */ -class Scan extends WePay +class Scan extends WeChat { /** * 获取商户信息 diff --git a/WeChat/Script.php b/WeChat/Script.php index 7a96dde..5b8f3b6 100644 --- a/WeChat/Script.php +++ b/WeChat/Script.php @@ -15,7 +15,7 @@ namespace WeChat; use WeChat\Contracts\Tools; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; use WeChat\Exceptions\InvalidResponseException; /** @@ -23,7 +23,7 @@ use WeChat\Exceptions\InvalidResponseException; * Class Script * @package WeChat */ -class Script extends WePay +class Script extends WeChat { /** diff --git a/WeChat/Shake.php b/WeChat/Shake.php index 6d8b2e4..ad7a442 100644 --- a/WeChat/Shake.php +++ b/WeChat/Shake.php @@ -16,14 +16,14 @@ namespace WeChat; use WeChat\Contracts\Tools; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 揺一揺周边 * Class Shake * @package WeChat */ -class Shake extends WePay +class Shake extends WeChat { /** * 申请开通功能 diff --git a/WeChat/Tags.php b/WeChat/Tags.php index 0301798..f11767b 100644 --- a/WeChat/Tags.php +++ b/WeChat/Tags.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 用户标签管理 * Class Tags * @package WeChat */ -class Tags extends WePay +class Tags extends WeChat { /** * 获取粉丝标签列表 diff --git a/WeChat/Template.php b/WeChat/Template.php index 7b2ba2a..e7abc60 100644 --- a/WeChat/Template.php +++ b/WeChat/Template.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 模板消息 * Class Template * @package WeChat */ -class Template extends WePay +class Template extends WeChat { /** * 设置所属行业 diff --git a/WeChat/User.php b/WeChat/User.php index 6e89494..25d4ff7 100644 --- a/WeChat/User.php +++ b/WeChat/User.php @@ -14,14 +14,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 微信粉丝管理 * Class User * @package WeChat */ -class User extends WePay +class User extends WeChat { /** @@ -30,7 +30,6 @@ class User extends WePay * @param string $remark * @return array * @throws Exceptions\InvalidResponseException - * @throws Exceptions\LocalCacheException */ public function updateMark($openid, $remark) { diff --git a/WeChat/Wifi.php b/WeChat/Wifi.php index 0b29b81..c78103a 100644 --- a/WeChat/Wifi.php +++ b/WeChat/Wifi.php @@ -15,14 +15,14 @@ namespace WeChat; -use WeChat\Contracts\WePay; +use WeChat\Contracts\WeChat; /** * 门店 WIFI 管理 * Class Wifi * @package WeChat */ -class Wifi extends WePay +class Wifi extends WeChat { /** diff --git a/composer.json b/composer.json index 172b458..32a1ea5 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "description": "WeChat development of SDK", "license": "MIT", "keywords": [ - "WeChatDeveloper", + "WeChatDeveloper", "wechat", "wxsdk" ], @@ -16,7 +16,7 @@ }, "autoload": { "psr-4": { - "Wechat\\": "./Wechat" + "WeChat\\": "./WeChat" } } } \ No newline at end of file diff --git a/include.php b/include.php new file mode 100644 index 0000000..18329df --- /dev/null +++ b/include.php @@ -0,0 +1,21 @@ + 'test', + 'appid' => 'wx60a43dd8161666d4', + 'appsecret' => '71308e96a204296c57d7cd4b21b883e8', + 'encodingaeskey' => 'BJIUzE0gqlWy0GxfPp4J1oPTBmOrNDIGPNav1YFH5Z5', + // 配置商户支付参数 + 'mch_id' => "1235704602", + 'mch_key' => 'IKI4kpHjU94ji3oqre5zYaQMwLHuZPmj', + // 配置商户支付双向证书目录 + 'ssl_key' => '', + 'ssl_cer' => '', +]; + +try { + + // 3. 实例对应的接口对象 + $user = new \WeChat\User($config); + + // 4. 调用接口对象方法 + $list = $user->getUserList(); + echo '
';
+    var_export($list);
+
+} catch (Exception $e) {
+
+    // 出错啦,处理下吧
+    echo $e->getMessage() . PHP_EOL;
+
+}
+
+