account = $account; $this->secret = $secret; } /** * 获取缓存token * @return mixed * @throws \Psr\SimpleCache\InvalidArgumentException */ public function getToken() { $accessTokenKey = md5($this->account . '_' . $this->secret . $this->cacheTokenPrefix); $cacheToken = CacheService::get($accessTokenKey, ''); if (!$cacheToken) { $getToken = $this->getTokenFromServer(); if (!is_array($getToken)) { return false; } CacheService::set($accessTokenKey, $getToken['access_token'], $getToken['expires_in'] - time() - 300); $cacheToken = $getToken['access_token']; } $this->accessToken = $cacheToken; return $cacheToken; } /** * 销毁token * @return bool * @throws \Psr\SimpleCache\InvalidArgumentException */ public function destroyToken() { $accessTokenKey = md5($this->account . '_' . $this->secret . $this->cacheTokenPrefix); return CacheService::rm($accessTokenKey); } /** * 从服务器获取token * @return mixed */ public function getTokenFromServer() { $params = [ 'account' => $this->account, 'secret' => md5($this->account . md5($this->secret)), ]; $response = $this->postRequest($this->get(self::USER_LOGIN), $params); $response = json_decode($response, true); if (!$response) { throw new ValidateException('获取token失败'); } if ($response['status'] === 200) { return $response['data']; } else { return $response['msg']; } } /** * 请求 * @param string $url * @param array $data * @param string $method * @param bool $isHeader * @return array|mixed */ public function httpRequest($url, $data = [], $method = 'POST', $isHeader = true) { $header = []; if ($isHeader) { $this->getToken(); if (!$this->accessToken) { $result['msg'] = '配置已更改或token已失效'; return $result; } $header = ['Authorization:Bearer-' . $this->accessToken]; } try { $res = $this->request($this->get($url), $method, $data, $header); if (!$res) { $result['msg'] = '发生异常,请稍后重试'; return $result; } $result = json_decode($res, true) ?: false; return $result; } catch (\Throwable $e) { return $e->getMessage(); } } /** * @param string $apiUrl * @return string */ public function get($apiUrl = '') { return $this->apiHost . $apiUrl; } }