123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?php
- namespace app\common\library\wechat;
- use think\Cache;
- use app\common\library\helper;
- use app\common\exception\BaseException;
- /**
- * 微信api基类
- * Class wechat
- * @package app\library
- */
- class WxBase
- {
- protected $appId;
- protected $appSecret;
- protected $error;
- /**
- * 构造函数
- * WxBase constructor.
- * @param $appId
- * @param $appSecret
- */
- public function __construct($appId = null, $appSecret = null)
- {
- $this->setConfig($appId, $appSecret);
- }
- protected function setConfig($appId = null, $appSecret = null)
- {
- !empty($appId) && $this->appId = $appId;
- !empty($appSecret) && $this->appSecret = $appSecret;
- }
- /**
- * 写入日志记录
- * @param $values
- * @return bool|int
- */
- protected function doLogs($values)
- {
- return log_write($values);
- }
- /**
- * 获取access_token
- * @return mixed
- * @throws BaseException
- */
- protected function getAccessToken()
- {
- $cacheKey = $this->appId . '@access_token';
- if (!Cache::get($cacheKey)) {
- // 请求API获取 access_token
- $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$this->appId}&secret={$this->appSecret}";
- $result = $this->get($url);
- $response = $this->jsonDecode($result);
- if (array_key_exists('errcode', $response)) {
- throw new BaseException(['msg' => "access_token获取失败,错误信息:{$result}"]);
- }
- // 记录日志
- $this->doLogs([
- 'describe' => '获取access_token',
- 'url' => $url,
- 'appId' => $this->appId,
- 'result' => $result
- ]);
- // 写入缓存
- Cache::set($cacheKey, $response['access_token'], 6000); // 7000
- }
- return Cache::get($cacheKey);
- }
- /**
- * 模拟GET请求 HTTPS的页面
- * @param string $url 请求地址
- * @return string $result
- */
- protected function get($url)
- {
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HEADER, 0);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); // https请求 不验证证书和hosts
- $result = curl_exec($curl);
- curl_close($curl);
- return $result;
- }
- /**
- * 模拟POST请求
- * @param $url
- * @param array $data
- * @param bool $useCert
- * @param array $sslCert
- * @return mixed
- */
- protected function post($url, $data = [], $useCert = false, $sslCert = [])
- {
- $header = [
- 'Content-type: application/json;'
- ];
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
- curl_setopt($curl, CURLOPT_HEADER, false);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_POST, TRUE);
- curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
- if ($useCert == true) {
- // 设置证书:cert 与 key 分别属于两个.pem文件
- curl_setopt($curl, CURLOPT_SSLCERTTYPE, 'PEM');
- curl_setopt($curl, CURLOPT_SSLCERT, $sslCert['certPem']);
- curl_setopt($curl, CURLOPT_SSLKEYTYPE, 'PEM');
- curl_setopt($curl, CURLOPT_SSLKEY, $sslCert['keyPem']);
- }
- $result = curl_exec($curl);
- curl_close($curl);
- return $result;
- }
- /**
- * 模拟POST请求 [第二种方式, 用于兼容微信api]
- * @param $url
- * @param array $data
- * @return mixed
- */
- protected function post2($url, $data = [])
- {
- $header = [
- 'Content-Type: application/x-www-form-urlencoded'
- ];
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
- curl_setopt($ch, CURLOPT_POST, true);
- curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//这个是重点。
- $result = curl_exec($ch);
- curl_close($ch);
- return $result;
- }
- /**
- * 数组转json
- * @param $data
- * @return string
- */
- protected function jsonEncode($data)
- {
- return helper::jsonEncode($data);
- }
- /**
- * json转数组
- * @param $json
- * @return mixed
- */
- protected function jsonDecode($json)
- {
- return helper::jsonDecode($json);
- }
- /**
- * 返回错误信息
- * @return mixed
- */
- public function getError()
- {
- return $this->error;
- }
- }
|