| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- namespace app\extra\weMini;
- use think\Exception;
- use WeChat\Contracts\DataArray;
- use WeChat\Contracts\Tools;
- use yzh52521\EasyHttp\Http;
- class BasicWeChat
- {
- /**
- * 当前微信配置
- * @var DataArray
- */
- public $config;
- /**
- * 访问AccessToken
- * @var string
- */
- public $access_token = '';
- /**
- * 当前请求方法参数
- * @var array
- */
- protected $currentMethod = [];
- /**
- * 当前模式
- * @var bool
- */
- protected $isTry = false;
- /**
- * 静态缓存
- * @var static
- */
- protected static $cache;
- /**
- * 注册代替函数
- * @var string
- */
- protected $GetAccessTokenCallback;
- public function __construct(array $options)
- {
- if (empty($options['appid'])) {
- throw new Exception("Missing Config -- [appid]");
- }
- if (empty($options['appsecret'])) {
- throw new Exception("Missing Config -- [appsecret]");
- }
- if (isset($options['GetAccessTokenCallback']) && is_callable($options['GetAccessTokenCallback'])) {
- $this->GetAccessTokenCallback = $options['GetAccessTokenCallback'];
- }
- $this->config = new DataArray($options);
- }
- public function getAccessToken()
- {
- if (!empty($this->access_token)) {
- return $this->access_token;
- }
- $cache = $this->config->get('appid') . '_access_token';
- $this->access_token = Tools::getCache($cache);
- if (!empty($this->access_token)) {
- return $this->access_token;
- }
- // 处理开放平台授权公众号获取AccessToken
- if (!empty($this->GetAccessTokenCallback) && is_callable($this->GetAccessTokenCallback)) {
- $this->access_token = call_user_func_array($this->GetAccessTokenCallback, [$this->config->get('appid'), $this]);
- if (!empty($this->access_token)) {
- Tools::setCache($cache, $this->access_token, 7000);
- }
- 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 = Http::get($url)->array();
- if (!empty($result['access_token'])) {
- Tools::setCache($cache, $result['access_token'], 7000);
- }
- return $this->access_token = $result['access_token'];
- }
- public function setAccessToken($accessToken)
- {
- if (!is_string($accessToken)) {
- throw new InvalidArgumentException("Invalid AccessToken type, need string.");
- }
- $cache = $this->config->get('appid') . '_access_token';
- Tools::setCache($cache, $this->access_token = $accessToken);
- }
- /**
- * 清理删除 AccessToken
- * @return bool
- */
- public function delAccessToken()
- {
- $this->access_token = '';
- return Tools::delCache($this->config->get('appid') . '_access_token');
- }
- 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', urlencode($this->access_token), $url);
- }
- }
|