Wt
3.3.8
|
A default implementation for an authentication user database. More...
#include <Wt/Auth/Dbo/UserDatabase>
Public Member Functions | |
UserDatabase (Wt::Dbo::Session &session, const AuthService *authService=0) | |
Constructor. More... | |
void | setNewUserStatus (User::Status status) |
Sets the initial status for a new user. More... | |
virtual Transaction * | startTransaction () |
Creates a new database transaction. More... | |
Wt::Dbo::ptr< DboType > | find (const User &user) const |
Returns the Dbo user type corresponding to an Auth::User. | |
User | find (const Wt::Dbo::ptr< DboType > user) const |
Returns the Auth::User corresponding to a Dbo user. | |
virtual User | findWithId (const std::string &id) const |
Finds a user with a given id. More... | |
virtual User | findWithIdentity (const std::string &provider, const WString &identity) const |
Finds a user with a given identity. More... | |
virtual WString | identity (const User &user, const std::string &provider) const |
Returns a user identity. More... | |
virtual void | removeIdentity (const User &user, const std::string &provider) |
Removes a user identity. More... | |
virtual User | registerNew () |
Registers a new user. More... | |
virtual void | deleteUser (const User &user) |
Delete a user. More... | |
virtual User::Status | status (const User &user) const |
Returns the status for a user. More... | |
virtual void | setStatus (const User &user, User::Status status) |
Sets the user status. More... | |
virtual void | setPassword (const User &user, const PasswordHash &password) |
Sets a new user password. More... | |
virtual PasswordHash | password (const User &user) const |
Returns a user password. More... | |
virtual void | addIdentity (const User &user, const std::string &provider, const WString &identity) |
Adds an identify for the user. More... | |
virtual void | setIdentity (const User &user, const std::string &provider, const WString &identity) |
Changes an identity for a user. More... | |
virtual bool | setEmail (const User &user, const std::string &address) |
Sets a user's email address. More... | |
virtual std::string | email (const User &user) const |
Returns a user's email address. More... | |
virtual void | setUnverifiedEmail (const User &user, const std::string &address) |
Sets a user's unverified email address. More... | |
virtual std::string | unverifiedEmail (const User &user) const |
Returns a user's unverified email address. More... | |
virtual User | findWithEmail (const std::string &address) const |
Finds a user with a given email address. More... | |
virtual void | setEmailToken (const User &user, const Token &token, User::EmailTokenRole role) |
Sets a new email token for a user. More... | |
virtual Token | emailToken (const User &user) const |
Returns an email token. More... | |
virtual User::EmailTokenRole | emailTokenRole (const User &user) const |
Returns the role of the current email token. More... | |
virtual User | findWithEmailToken (const std::string &hash) const |
Finds a user with a given email token. More... | |
virtual void | addAuthToken (const User &user, const Token &token) |
Adds an authentication token to a user. More... | |
virtual void | removeAuthToken (const User &user, const std::string &hash) |
Deletes an authentication token. More... | |
virtual int | updateAuthToken (const User &user, const std::string &hash, const std::string &newHash) |
Updates the authentication token with a new hash. More... | |
virtual User | findWithAuthToken (const std::string &hash) const |
Finds a user with an authentication token. More... | |
virtual void | setFailedLoginAttempts (const User &user, int count) |
Sets the number of consecutive authentication failures. More... | |
virtual int | failedLoginAttempts (const User &user) const |
Returns the number of consecutive authentication failures. More... | |
virtual void | setLastLoginAttempt (const User &user, const WDateTime &t) |
Sets the time of the last login attempt. More... | |
virtual WDateTime | lastLoginAttempt (const User &user) const |
Returns the time of the last login. More... | |
unsigned | maxAuthTokensPerUser () const |
Returns max number of tokens user can have in the database. More... | |
void | setMaxAuthTokensPerUser (unsigned maxAuthTokensPerUser) |
Sets max number of tokens user can have in the database. | |
Public Member Functions inherited from Wt::Auth::AbstractUserDatabase | |
virtual | ~AbstractUserDatabase () |
Destructor. | |
virtual Json::Value | idpJsonClaim (const User &user, const std::string &claim) const |
Returns the value of a claim for a user. More... | |
virtual Wt::Auth::IssuedToken | idpTokenAdd (const std::string &value, const WDateTime &expirationTime, const std::string &purpose, const std::string &scope, const std::string &redirectUri, const User &user, const OAuthClient &authClient) |
Adds a new Wt::Auth::IssuedToken to the database and returns it. S. | |
virtual void | idpTokenRemove (const IssuedToken &token) |
Removes an issued token from the database. | |
virtual IssuedToken | idpTokenFindWithValue (const std::string &purpose, const std::string &value) const |
Finds a token in the database with a given value. | |
virtual WDateTime | idpTokenExpirationTime (const IssuedToken &token) const |
Gets the expiration time for a token. | |
virtual std::string | idpTokenValue (const IssuedToken &token) const |
Gets the value for a token. | |
virtual std::string | idpTokenPurpose (const IssuedToken &token) const |
Gets the token purpose (authorization_code, access_token, id_token, refresh_token). | |
virtual std::string | idpTokenScope (const IssuedToken &token) const |
Gets the scope associated with the token. | |
virtual std::string | idpTokenRedirectUri (const IssuedToken &token) const |
Returns the redirect URI that was used with the token request. | |
virtual User | idpTokenUser (const IssuedToken &token) const |
Returns the user associated with the token. | |
virtual OAuthClient | idpTokenOAuthClient (const IssuedToken &token) const |
Returns the authorization client (relying party) that is associated with the token. | |
virtual OAuthClient | idpClientFindWithId (const std::string &clientId) const |
Finds the authorization client (relying party) with this identifier. | |
virtual std::string | idpClientSecret (const OAuthClient &client) const |
Returns the secret for this client. | |
virtual bool | idpVerifySecret (const OAuthClient &client, const std::string &secret) const |
Returns true if the given secret is correct for the given client. | |
virtual std::set< std::string > | idpClientRedirectUris (const OAuthClient &client) const |
Returns the redirect URI for this client. | |
virtual std::string | idpClientId (const OAuthClient &client) const |
Returns the identifier for this client. | |
virtual bool | idpClientConfidential (const OAuthClient &client) const |
Returns whether the client is confidential or public. | |
virtual ClientSecretMethod | idpClientAuthMethod (const OAuthClient &client) const |
Returns the client authentication method (see OIDC Core chapter 9) | |
virtual Wt::Auth::OAuthClient | idpClientAdd (const std::string &clientId, bool confidential, const std::set< std::string > &redirectUris, ClientSecretMethod authMethod, const std::string &secret) |
Add a new client to the database and returns it. | |
A default implementation for an authentication user database.
This is a template class, and needs as parameter the Dbo type which models the authentication information. A suitable implementation, which stores authentication information outside the "user" class, is provided by AuthInfo.
Wt::Auth::Dbo::UserDatabase< DboType >::UserDatabase | ( | Wt::Dbo::Session & | session, |
const AuthService * | authService = 0 |
||
) |
Constructor.
The AuthService parameter is optional, and decides some of the UserDatabase's behaviour. Currently, this decides whether findWithIdentity() should be case sensitive or not. If the identity policy of the AuthService is EmailAddressIdentity, then findWithIdentity() will be case insensitive. Otherwise it is case sensitive.
|
virtual |
Adds an authentication token to a user.
Unless you want a user to only have remember-me support from a single computer at a time, you should support multiple authentication tokens per user.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Adds an identify for the user.
This adds an identity to the user.
You are free to support only one identity per user, e.g. if you only use password-based authentication. But you may also want to support more than one if you allow the user to login using multiple methods (e.g. name/password, OAuth from one or more providers, LDAP, ...).
Implements Wt::Auth::AbstractUserDatabase.
|
virtual |
Delete a user.
This deletes a user from the database.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns a user's email address.
This may be an unverified or verified email address, depending on whether email address verification is enabled in the model classes.
This is an optional method, and currently not used by any of the included models or views.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns an email token.
This is only used when email verification is enabled and for lost password functionality. It should return the email token previously set with setEmailToken()
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns the role of the current email token.
This is only used when email verification is enabled or for lost password functionality. It should return the role previously set with setEailToken().
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns the number of consecutive authentication failures.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Finds a user with an authentication token.
Returns a user with an authentication token.
This should find the user associated with a particular token hash, or return an invalid user if no user with that token hash exists.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Finds a user with a given email address.
This is used to verify that a email addresses are unique, and to implement lost password functionality.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Finds a user with a given email token.
This is only used when email verification is enabled or for lost password functionality.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Finds a user with a given id.
The id uniquely identifies a user.
This should find the user with the given id
, or return an invalid user if no user with that id exists.
Implements Wt::Auth::AbstractUserDatabase.
|
virtual |
Finds a user with a given identity.
The identity
uniquely identifies the user by the provider
.
This should find the user with the given identity
, or return an invalid user if no user with that identity exists.
Implements Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns a user identity.
Returns a user identity for the given provider, or an empty string if the user has no identitfy set for this provider.
Implements Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns the time of the last login.
Reimplemented from Wt::Auth::AbstractUserDatabase.
unsigned Wt::Auth::Dbo::UserDatabase< DboType >::maxAuthTokensPerUser | ( | ) | const |
Returns max number of tokens user can have in the database.
Default value is 50.
|
virtual |
Returns a user password.
This returns the stored password for a user, or a default constructed password hash if the user does not yet have password credentials.
This is used only by PasswordService.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Registers a new user.
This adds a new user.
This method is only used by view classes involved with registration (RegistrationWidget).
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Deletes an authentication token.
Deletes an authentication token previously added with addAuthToken()
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Removes a user identity.
This removes all identities of a provider
from the user
.
Implements Wt::Auth::AbstractUserDatabase.
|
virtual |
Sets a user's email address.
This is used only when email verification is enabled, or as a result of a 3rd party Identity Provider based registration process, if the provider also provides email address information with the identiy.
Returns whether the user's email address could be set. This may fail when there is already a user registered that email address.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Sets a new email token for a user.
This is only used when email verification is enabled or for lost password functionality.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Sets the number of consecutive authentication failures.
This sets the number of consecutive authentication failures since the last valid login.
This is used by the throttling logic to determine how much time a user needs to wait before he can do a new login attempt.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Changes an identity for a user.
The base implementation calls removeIdentity() followed by addIdentity().
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Sets the time of the last login attempt.
This sets the time at which the user attempted to login.
Reimplemented from Wt::Auth::AbstractUserDatabase.
void Wt::Auth::Dbo::UserDatabase< DboType >::setNewUserStatus | ( | User::Status | status | ) |
Sets the initial status for a new user.
This status is set on a user that just registered.
The default value is User::Normal.
|
virtual |
Sets a new user password.
This updates the password for a user.
This is used only by PasswordService.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Sets the user status.
This sets the status for a user (if supported).
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Sets a user's unverified email address.
This is only used when email verification is enabled. It holds the currently unverified email address, while a mail is being sent for the user to confirm this email address.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Creates a new database transaction.
If the underlying database does not support transactions, you can return 0
.
Ownership of the transaction is transferred, and the transaction must be deleted after it has been committed or rolled back.
The default implementation returns 0
(no transaction support).
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns the status for a user.
If there is support for suspending accounts, then this method may be implemented to return whether a user account is disabled.
The default implementation always returns User::Normal.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Returns a user's unverified email address.
This is an optional method, and currently not used by any of the included models or views.
Reimplemented from Wt::Auth::AbstractUserDatabase.
|
virtual |
Updates the authentication token with a new hash.
If successful, returns the validity of the updated token in seconds.
Returns 0 if the token could not be updated because it wasn't found or is expired.
Returns -1 if not implemented.
Reimplemented from Wt::Auth::AbstractUserDatabase.