|
@@ -223,6 +223,18 @@ class UserController extends Controller
|
|
|
try {
|
|
|
$client = new Client();
|
|
|
$url = env("4sLoginUrl", "https://4s.autosmartcity.com:18443/login/pc");
|
|
|
+ $cacheKey = '4s_token_' . $user->username;
|
|
|
+
|
|
|
+ // 尝试从缓存中获取 token
|
|
|
+ $token = Cache::get($cacheKey);
|
|
|
+
|
|
|
+ if ($token) {
|
|
|
+ return $this->success([
|
|
|
+ 'token' => $token,
|
|
|
+ 'target_url' => env("4sUrl", "https://4s.autosmartcity.com:8080")."?token=".$token
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+
|
|
|
$response = $client->post($url, [
|
|
|
'form_params' => [
|
|
|
'username' => $user->username,
|
|
@@ -232,6 +244,7 @@ class UserController extends Controller
|
|
|
$targetUrl = env("4sUrl", "https://4s.autosmartcity.com:8080");
|
|
|
$result = json_decode($response->getBody()->getContents(), true);
|
|
|
if ($result['code'] == 200 && $result['data']['token']) {
|
|
|
+ Cache::put($cacheKey, $result['data']['token'], 60 * 60 * 23);
|
|
|
return $this->success([
|
|
|
'token' => $result['data']['token'],
|
|
|
'target_url' => $targetUrl."?token=".$result['data']['token']
|