Wt
4.11.1
|
Abstract interface for an authentication user database. More...
#include <Wt/Auth/AbstractUserDatabase.h>
Classes | |
class | Transaction |
An abstract transaction. More... | |
Public Member Functions | |
virtual | ~AbstractUserDatabase () |
Destructor. | |
virtual Transaction * | startTransaction () |
Creates a new database transaction. More... | |
virtual User | findWithId (const std::string &id) const =0 |
Finds a user with a given id. More... | |
virtual User | findWithIdentity (const std::string &provider, const WString &identity) const =0 |
Finds a user with a given identity. More... | |
virtual void | addIdentity (const User &user, const std::string &provider, const WString &id)=0 |
Adds an identify for the user. More... | |
virtual void | setIdentity (const User &user, const std::string &provider, const WString &id) |
Changes an identity for a user. More... | |
virtual WString | identity (const User &user, const std::string &provider) const =0 |
Returns a user identity. More... | |
virtual void | removeIdentity (const User &user, const std::string &provider)=0 |
Removes a user identity. More... | |
virtual User | registerNew () |
Registers a new user. More... | |
virtual void | deleteUser (const User &user) |
Delete a user. More... | |
virtual AccountStatus | status (const User &user) const |
Returns the status for a user. More... | |
virtual void | setStatus (const User &user, AccountStatus status) |
Sets the user status. More... | |
Password authentication | |
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... | |
Email addresses (for verification and lost passwords) | |
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, EmailTokenRole role) |
Sets a new email token for a user. More... | |
virtual Token | emailToken (const User &user) const |
Returns an email token. More... | |
virtual 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... | |
Auth tokens (remember-me support) | |
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 User | findWithAuthToken (const std::string &hash) const |
Finds a user with an authentication token. More... | |
virtual int | updateAuthToken (const User &user, const std::string &oldhash, const std::string &newhash) |
Updates the authentication token with a new hash. More... | |
Authenticaton attempt throttling | |
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... | |
Identity provider support | |
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. | |
Abstract interface for an authentication user database.
This class defines the interface for managing user data related to authentication. You need to implement this interface to allow the authentication service classes (AuthService, PasswordService, OAuthService, and OidcService) to locate and update user credentials. Except for functions which do work on a single user, it is more convenient to use the User API. Obviously, you may have more data associated with a user, including roles for access control, other personal information, address information. This information cannot be accessed through the Auth::User class, but you should make it available through your own User class, which is then als the basis of this user database implementation.
The only assumption made by the authentication system is that an id uniquely defines the user. This is usually an internal identifier, for example an auto-incrementing primary key.
With a user, one or more other identities may be associated. These could be a login name (for password-based authentication), or id's used by third party providers (such as OAuth or LDAP).
The database implements a simple data store and does not contain any logic. The database can store data for different aspects of authentication, but most data fields are only relevant for optional functionality, and thus themeselves optional. The default implementation of these methods will log errors.
The authentication views and model classes assume a private instance of the database for each different session, and will try to wrap database access within a transaction. Transaction support can thus be optionally provided by a database implementation.
This class is also used by OAuthAuthorizationEndpoint, OAuthTokenEndpoint, and OidcUserInfoEndpoint when implementing an OAuth/OpenID Connect provider to retrieve information not only about the User, but also the OAuthClient, and an IssuedToken.
|
virtual |
Adds an authentication token to a user.
An authentication token enables a user to not always type out their full username/password (see AuthWidget) or enter their MFA code (see TotpProcess). An authentication token will remember the user by placing a cookie in their browser and tracking the user's token in a local table in the database (by default called "auth_token").
The token itself is not aware of which use-case it serves. That being either for the regular username/password login, or for MFA. However, in the browser this cookie is given a name, based on the name set by AuthService::setAuthTokensEnabled() or AuthService::setMfaTokenCookieName(). This name can be used to match to the correct type.
Enabling either of these (by calling AuthService::setAuthTokensEnabled) will also enable the other, but their name and validity can be set separately.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
pure 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, ...).
Implemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Delete a user.
This deletes a user from the database.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Returns the number of consecutive authentication failures.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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.
The authentication token can be used for two means:
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Finds a user with a given email token.
This is only used when email verification is enabled or for lost password functionality.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
pure 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.
Implemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
pure 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.
Implemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
pure 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.
Implemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Returns the value of a claim for a user.
Should return a null Json value when the claim is unavailable.
Returns the time of the last login.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Registers a new user.
This adds a new user.
This method is only used by view classes involved with registration (RegistrationWidget).
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Deletes an authentication token.
Deletes an authentication token previously added with addAuthToken().
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
pure virtual |
Removes a user identity.
This removes all identities of a provider
from the user
.
Implemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Sets a new email token for a user.
This is only used when email verification is enabled or for lost password functionality.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Changes an identity for a user.
The base implementation calls removeIdentity() followed by addIdentity().
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Sets the time of the last login attempt.
This sets the time at which the user attempted to login.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Sets a new user password.
This updates the password for a user.
This is used only by PasswordService.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Sets the user status.
This sets the status for a user (if supported).
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
virtual |
Creates a new database transaction.
If the underlying database does not support transactions, you can return nullptr
.
Ownership of the transaction is transferred, and the transaction must be deleted after it has been committed or rolled back.
The default implementation returns nullptr
(no transaction support).
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 AccountStatus::Normal.
Reimplemented in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.
|
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 in Wt::Auth::Dbo::UserDatabase< DboType >.