class DoctrineTokenProvider implements TokenProviderInterface
This class provides storage for the tokens that is set in "remember me" cookies. This way no password secrets will be stored in the cookies on the client machine, and thus the security is improved.
This depends only on doctrine in order to get a database connection and to do the conversion of the datetime column.
In order to use this class, you need the following table in your database:
CREATE TABLE `rememberme_token` (
`series` char(88) UNIQUE PRIMARY KEY NOT NULL,
`value` char(88) NOT NULL,
`lastUsed` datetime NOT NULL,
`class` varchar(100) NOT NULL,
`username` varchar(200) NOT NULL
);
__construct(Connection $conn) | ||
PersistentTokenInterface | loadTokenBySeries(string $series) Loads the active token for the given series. | |
deleteTokenBySeries(string $series) Deletes all tokens belonging to series. | ||
updateToken(string $series, string $tokenValue, DateTime $lastUsed) Updates the token according to this data. | ||
createNewToken(PersistentTokenInterface $token) Creates a new token. |
Connection | $conn |
Loads the active token for the given series.
string | $series |
PersistentTokenInterface |
TokenNotFoundException | if the token is not found |
Deletes all tokens belonging to series.
string | $series |
Updates the token according to this data.
string | $series | |
string | $tokenValue | |
DateTime | $lastUsed |
TokenNotFoundException | if the token is not found |
Creates a new token.
PersistentTokenInterface | $token |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Bridge/Doctrine/Security/RememberMe/DoctrineTokenProvider.html