Class RegistrationModel
This model implements the logic for the registration of a new user. It can deal with traditional username/password registration, or registration of pre-identified users using federated login.
The model exposes four fields:
- LoginNameField: the login name (used as an identity for the
Identity.LoginNameprovider) – this can be an email if theAuthServiceis configured to use email addresses as identity - ChoosePasswordField: the password
- RepeatPasswordField: the password (repeated)
- EmailField: if an email address is to be asked (and is not used as identity).
The largest complexity is in the handling of third party identity providers, which is
initiated with a call to registerIdentified().
When a user is re-identified with the same identity, then the model may require that the
(original) user confirms this new identity. The model indicates that this button should be made
visible with isConfirmUserButtonVisible(),
the action to take is determined by getConfirmIsExistingUser(), and existingUserConfirmed() ends this process by merging the new identity into the existing user.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class eu.webtoolkit.jwt.WObject
WObject.FormData -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringChoose Password field.static final StringEmail field (if login name is not email)static final StringRepeat password field.Fields inherited from class eu.webtoolkit.jwt.auth.FormBaseModel
LoginNameField -
Constructor Summary
ConstructorsConstructorDescriptionRegistrationModel(AuthService baseAuth, AbstractUserDatabase users, Login login) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoidcheckUserExists(String userName) Verifies that a user with that name does not yet exist.Performs the registration process.voidConfirms that the user is indeed an existing user.Returns the method to be used to confirm to be an existing user.Returns the email policy.Returns the existing user that needs to be confirmed.getLogin()Returns the login object.intReturns the minimum length for a login name.booleanReturns whether an existing user needs to be confirmed.booleanReturns whether federated login options can be shown.booleanisReadOnly(String field) Returns whether a field is read only.booleanReturns whether a field is visible.booleanregisterIdentified(Identity identity) Register a user authenticated by an identity provider.voidreset()Resets the model.voidsetEmailPolicy(EmailPolicy policy) Configures whether an email address needs to be entered.voidsetMinLoginNameLength(int chars) Configures a minimum length for a login name.booleanvalidateField(String field) Validates a field.validateLoginName(String userName) Validates the login name.static voidvalidatePasswordsMatchJS(WLineEdit password, WLineEdit password2, WText info2) Methods inherited from class eu.webtoolkit.jwt.auth.FormBaseModel
addOAuth, addOAuth, addPasswordAuth, getBaseAuth, getOAuth, getPasswordAuth, getUsers, label, loginUser, loginUser, setValid, setValidMethods inherited from class eu.webtoolkit.jwt.WFormModel
addField, addField, getFields, getValidation, getValidator, getValue, isValid, isValidated, removeField, setReadOnly, setValidated, setValidation, setValidator, setValue, setVisible, validate, valueTextMethods inherited from class eu.webtoolkit.jwt.WObject
getId, getObjectName, remove, setFormData, setObjectName, tr
-
Field Details
-
ChoosePasswordField
Choose Password field.- See Also:
-
RepeatPasswordField
Repeat password field.- See Also:
-
EmailField
Email field (if login name is not email)- See Also:
-
-
Constructor Details
-
RegistrationModel
Constructor.Creates a new registration model, using a basic authentication service and user database.
The
loginobject is used to indicate that an existing user was re-identified, and thus the registration process may be aborted.
-
-
Method Details
-
reset
public void reset()Resets the model.This resets the model to initial values, clearing any entered information (login name, password, pre-identified identity).
- Overrides:
resetin classWFormModel
-
getLogin
Returns the login object. -
setMinLoginNameLength
public void setMinLoginNameLength(int chars) Configures a minimum length for a login name.The default value is 4.
-
getMinLoginNameLength
public int getMinLoginNameLength()Returns the minimum length for a login name.- See Also:
-
setEmailPolicy
Configures whether an email address needs to be entered.You may specify whether you want the user to enter an email address.
This has no effect when the IdentityPolicy is
IdentityPolicy.EmailAddress.The default policy is:
- EmailOptional when email address verification is enabled
- EmailDisabled otherwise
-
getEmailPolicy
Returns the email policy.- See Also:
-
registerIdentified
Register a user authenticated by an identity provider.Using a 3rd party authentication service such as OAuth, a user may be identified which is not yet registered with the web application.
Then, you may still need to allow the user to complete registration, but because the user already is identified and authenticated, this simplifies the registration form, since fields related to authentication can be dropped.
Returns
trueif the given identity was already registered, and has been logged in. -
getExistingUser
Returns the existing user that needs to be confirmed.When a user wishes to register with an identity that corresponds to an existing user, he may be allowd to confirm that he is in fact this existing user.
- See Also:
-
getConfirmIsExistingUser
Returns the method to be used to confirm to be an existing user.When the ConfirmExisting field is visible, this returns an appropriate method to use to let the user confirm that he is indeed the identified existing user.
The outcome of this method (if it is an online method, like a password prompt), if successful, should be indicated using
existingUserConfirmed().- See Also:
-
existingUserConfirmed
public void existingUserConfirmed()Confirms that the user is indeed an existing user.The new identity is added to this existing user (if applicable), and the user is logged in.
-
validateLoginName
Validates the login name.This verifies that the login name is adequate (see also
setMinLoginNameLength()). -
checkUserExists
Verifies that a user with that name does not yet exist.If a user with that name already exists, it may in fact be the same user that is trying to register again (perhaps using a different identification method). If possible, we allow the user to confirm his identity.
-
doRegister
Performs the registration process. -
isVisible
Description copied from class:WFormModelReturns whether a field is visible.In some cases not all fields of the model need to be shown. This may depend on values input for certain fields, and thus change dynamically. You may specialize this method to indicate that a certain field should be invisible.
The default implementation returns the value set by
setVisible().- Overrides:
isVisiblein classWFormModel
-
isReadOnly
Description copied from class:WFormModelReturns whether a field is read only.The default implementation returns the value set by
setReadOnly()- Overrides:
isReadOnlyin classWFormModel
-
validateField
Description copied from class:WFormModelValidates a field.The default implementation uses the validator configured for the field to validate the field contents, or if no validator has been configured assumes that the field is valid.
You will typically customize this method for more complex validation cases.
- Overrides:
validateFieldin classWFormModel- See Also:
-
isConfirmUserButtonVisible
public boolean isConfirmUserButtonVisible()Returns whether an existing user needs to be confirmed.This returns whether the user is being identified as an existing user and he can confirm that he is in fact the same user.
-
isFederatedLoginVisible
public boolean isFederatedLoginVisible()Returns whether federated login options can be shown.This returns whether fields for federated login (such as OAuth) should be shown. These are typically buttons corresponding to identity providers.
The result of a federated authentication procedure should be indicated to
registerIdentified(). -
validatePasswordsMatchJS
-