Sfoglia il codice sorgente

Merge branch 'refs/heads/dev' into R1

peterguo 2 mesi fa
parent
commit
41fde7458b
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. 13 0
      app/Http/Controllers/API/UserController.php

+ 13 - 0
app/Http/Controllers/API/UserController.php

@@ -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']