<?php
namespace app\common\library\wechat;
use think\Cache;
use app\common\exception\BaseException;
class WxBase
{
protected $appId;
protected $appSecret;
protected $error;
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;
}
protected function doLogs($values)
{
return log_write($values);
}
protected function getAccessToken()
{
$cacheKey = $this->appId . '@access_token';
if (!Cache::get($cacheKey)) {
$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$this->appId}&secret={$this->appSecret}";
$result = $this->get($url);
$data = $this->jsonDecode($result);
if (array_key_exists('errcode', $data)) {
throw new BaseException(['msg' => "access_token获取失败,错误信息:{$result}"]);
}
$this->doLogs([
'describe' => '获取access_token',
'url' => $url,
'appId' => $this->appId,
'result' => $result
]);
Cache::set($cacheKey, $data['access_token'], 6000); }
return Cache::get($cacheKey);
}
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); $result = curl_exec($curl);
curl_close($curl);
return $result;
}
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) {
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;
}
protected function jsonEncode($data)
{
return json_encode($data, JSON_UNESCAPED_UNICODE);
}
protected function jsonDecode($json)
{
return json_decode($json, true);
}
public function getError()
{
return $this->error;
}
}