@@ -107,7 +107,7 @@ public function isLoggedIn()
107
107
* @param array $data
108
108
* @return AuthSession
109
109
*/
110
- public function login (string $ accountTypeName , array $ data ):AuthSession
110
+ public function login (string $ accountTypeName , array $ data ): AuthSession
111
111
{
112
112
if (!$ account = $ this ->getAccountType ($ accountTypeName )) {
113
113
throw new AuthException (ErrorCode::AUTH_INVALID_ACCOUNT_TYPE );
@@ -121,7 +121,7 @@ public function login(string $accountTypeName, array $data):AuthSession
121
121
if ($ this ->cacheEnable === true ) {
122
122
try {
123
123
$ this ->getCacheClient ()->set (
124
- $ this ->getCacheKey ($ result ->getIdentity ()),
124
+ $ this ->getCacheKey ($ result ->getIdentity (), $ result -> getExtendedData () ),
125
125
$ session ->getToken (),
126
126
$ session ->getExpirationTime ()
127
127
);
@@ -133,9 +133,12 @@ public function login(string $accountTypeName, array $data):AuthSession
133
133
return $ session ;
134
134
}
135
135
136
- protected function getCacheKey ($ identity )
136
+ protected function getCacheKey (string $ identity, array $ extendedData )
137
137
{
138
- return $ this ->prefix . $ identity ;
138
+ if (empty ($ extendedData )) {
139
+ return $ this ->prefix . $ identity ;
140
+ }
141
+ return $ this ->prefix . $ identity . (string )$ extendedData [0 ];
139
142
}
140
143
141
144
/**
@@ -218,7 +221,7 @@ public function getCacheClient()
218
221
* @return bool
219
222
* @throws AuthException
220
223
*/
221
- public function authenticateToken (string $ token ):bool
224
+ public function authenticateToken (string $ token ): bool
222
225
{
223
226
try {
224
227
/** @var AuthSession $session */
@@ -245,7 +248,7 @@ public function authenticateToken(string $token):bool
245
248
246
249
if ($ this ->cacheEnable === true ) {
247
250
try {
248
- $ cache = $ this ->getCacheClient ()->get ($ this ->getCacheKey ($ session ->getIdentity ()));
251
+ $ cache = $ this ->getCacheClient ()->get ($ this ->getCacheKey ($ session ->getIdentity (), $ session -> getExtendedData () ));
249
252
if (!$ cache || $ cache !== $ token ) {
250
253
throw new AuthException (ErrorCode::AUTH_TOKEN_INVALID );
251
254
}
0 commit comments