mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
Updated PDO associateAuthCode
This commit is contained in:
parent
51138f8738
commit
410ad09b5c
@ -70,17 +70,18 @@ class Session implements SessionInterface
|
|||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function associateAuthCode($sessionId, $authCode, $expireTime, $scopeIds = null)
|
public function associateAuthCode($sessionId, $authCode, $expireTime)
|
||||||
{
|
{
|
||||||
$db = \ezcDbInstance::get();
|
$db = \ezcDbInstance::get();
|
||||||
|
|
||||||
$stmt = $db->prepare('INSERT INTO oauth_session_authcodes (session_id, auth_code, auth_code_expires, scope_ids)
|
$stmt = $db->prepare('INSERT INTO oauth_session_authcodes (session_id, auth_code, auth_code_expires)
|
||||||
VALUE (:sessionId, :authCode, :authCodeExpires, :scopeIds)');
|
VALUE (:sessionId, :authCode, :authCodeExpires)');
|
||||||
$stmt->bindValue(':sessionId', $sessionId);
|
$stmt->bindValue(':sessionId', $sessionId);
|
||||||
$stmt->bindValue(':authCode', $authCode);
|
$stmt->bindValue(':authCode', $authCode);
|
||||||
$stmt->bindValue(':authCodeExpires', $expireTime);
|
$stmt->bindValue(':authCodeExpires', $expireTime);
|
||||||
$stmt->bindValue(':scopeIds', $scopeIds);
|
|
||||||
$stmt->execute();
|
$stmt->execute();
|
||||||
|
|
||||||
|
return $db->lastInsertId();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function removeAuthCode($sessionId)
|
public function removeAuthCode($sessionId)
|
||||||
|
Loading…
Reference in New Issue
Block a user