Magnolia 5.5 reached end of life on November 15, 2019. This branch is no longer supported, see End-of-life policy.
Magnolia Public User Registration (PUR) module allows users of a public Magnolia site to register and access restricted content. You can use the module to register users for the Commenting module and other custom modules that support personalization and user-specific handling. For example, collect e-mail addresses of subscribers to a newsletter and allow them to manage subscription details after login.
See Setting up PUR on a website for a step-by-step tutorial on using the module.
Note the changes in groupId
and artifactId
since the 2.6 release.
<dependency> <groupId>info.magnolia</groupId> <artifactId>magnolia-module-public-user-registration</artifactId> <version>2.6.2</version> </dependency>
With Magnolia 5.5 we have removed usage of the old old admininterface. If you have custom code which relies on code from the old admininterface, then you must do one of two things:
magnolia-module-public-user-registration-legacy
together with magnolia-module-legacy-admininterface
module.Public users are stored and managed in the Security app on the public instance. The system registers the account automatically when a user registers. Whether the user can use the account immediately or not depends on the configured registration strategy.
The PUR Module uses
HierarchicalUserManager
to create user accounts. In the JCR, the account is stored in a folder hierarchy according to the realmName
and the first two letters of the username.
The user account is only created on the public instance. Make sure to backup this data when using several public instances, the instances or at least the users workspace needs to be clustered in order to share accounts between different instances. Another option is to implement observation based synchronization in order to replicate user accounts across instances.
The PUR module relies on other modules and system settings. Understanding the module requires a working knowledge of:
PUR configuration is in /modules/public-user-registration/config/configurations
.
Example: Provided default
configuration.
Node name | Value |
---|---|
public-user-registration | |
config | |
configurations | |
default | |
defaultRoles | |
defaultGroups | |
registrationStrategy | |
passwordRetrievalStrategy | |
userProfileConfiguration | |
realmName | public |
travel | |
sportstation |
Nodes and properties:
config | required Module configuration folder. |
| required Configurations node. |
| required Configuration name. Must match the site name configured in the site definition or the EE Pro users can create different configurations for each site. Use extends to make site-specific changes to an existing configuration. |
| required Roles managed by the module. |
| required Groups managed by the module. |
| required Strategy for user registration. |
| required Strategy for password retrieval. |
| required User profile configuration. |
| required Realm name. |
| required Configuration resolver node. |
| required Resolves the configuration to use. DefaultConfigurationResolver finds the correct configuration based on the request URI. For example, |
Only users defined in defaultRoles
and defaultGroups
nodes are managed by the module. Default roles and groups are configured in the same way.
Example: travel
default roles and groups configurations.
Node name | Value |
---|---|
configurations | |
default | |
travel | |
defaultRoles | |
anonymous | anonymous |
extends | override |
defaultGroups | |
pur | travel-demo-pur |
Properties
<configuration name> | required Name of PUR configuration. |
| required Default roles/groups node. |
| required Role/Group name. Property name is arbitrary. Value must match role or group set up in the Security app. |
Users in the travel-demo-pur
group as assigned the travel-demo-pur
role (among others) that provides these Web access permissions. protected
is a page that contains content that can only be viewed by registered users, and profile-update
contains the User Profile Update form.
Permission | Path |
Get & Post | /travel/members/protected* |
Get & Post | <travel>/members/protected* |
Get & Post | /travel/members/profile-update* |
Get & Post |
<travel>/members/profile-update*
|
On registration, a new user is automatically assigned the travel-demo-pur
role and can access restricted content. The location of the restricted content can be set in the Login component dialog.
Here's what non-registered and registered users see.
Registration strategies define how users are registered. Magnolia provides three options:
Example: travel
registration strategy.
Node name | Value |
---|---|
configurations | |
default | |
travel | |
registrationStrategy | |
class | info.magnolia.module.publicuserregistration.strategy.Always |
Properties:
<configuration name> | required Name of PUR configuration. |
| required Registration strategy node. |
| required Registration class:
|
| optional Any properties supported by the used registration class. Only |
The mail registration strategy sends the user an email containing a verification link after signing up. The link directs to a page containing the Enable User Form component. When the user submits the form the system enables the user's account.
Example: sportstation
email registration strategy.
Node name | Value |
---|---|
configurations | |
sportstation | |
registrationStrategy | |
class | info.magnolia.module.publicuserregistration.strategy.Mail |
emailTemplate | /public-user-registration/templates/mail/user-confirmation-email.ftl |
fromEmail | your@email.com |
fromName | Site Registration |
i18nBasename | info.magnolia.module.publicuserregistration.messages |
pagePath | /sportstation/members/registration/enable-user.html |
subject | Please verify your registration |
extends | ../travel |
Properties:
registrationStrategy | required Registration strategy node. |
| required Relative path to template used for the email message. |
| required Sender email address. |
| optional Sender name . |
| required Relative path to the page containing the Enable User Form component. |
| optional Message subject. |
user-confirmation-email.ftl
(Git) (referenced in the emailTemplate
property) is a simple script that defines the verification link mailed to the user.
<html> <body> <p>Dear ${user.name!},</p> <p>Please follow <a href="${pagePath!}">this link</a> in order to validate your account.</p> <p>Thank you !</p> </body> </html>
Mail
registration class adds the userid
UUID and regStamp
parameters to the URL to verify identity. The verification link looks something like this:http://localhost:8080/magnoliaPublic/sportstation/members/registration/enable-user.html?userId=7dcf398a-793f-48d0-8dbb-a4be08b1101c&regstamp=1452610248796
Password retrieval strategies define how users retrieve lost or forgotten passwords. Magnolia provides two options:
Example: sportstation
mail password retrieval strategy.
Node name | Value |
---|---|
configurations | |
sportstation | |
passwordRetrievalStrategy | |
class | info.magnolia.module.publicuserregistration.password.MailChangePasswordLinkStrategy |
emailTemplate | /public-user-registration/templates/mail/password-reset-email.ftl |
fromEmail | your@email.com |
fromName | Your Site |
subject | Password change request |
targetPagePath | /sportstation/members/forgotten-password/password-change |
tokenExpirationTime | 60 |
Properties:
passwordRetrievalStrategy
| required Password retrieval strategy node. |
| required Password retrieval strategy class:
|
| required Relative path to the template used for the email message. |
| required Sender's email. |
| optional Sender's name. |
| optional Message subject. |
| required Relative path to the page containing the Password Change component. |
| optional, default in Duration (in minutes) that the password change link remains valid. |
password-reset-email.ftl
(Git) (referenced in the emailTemplate
property) is a simple script that sets the link to the password change form.
<p>Dear ${user.name!},</p> <p>Follow this link where you can set your new password: <a href=${pagePath!}>CLICK HERE</a></p> <p>If you did not ask for password change, ignore this email.</p>
MailChangePasswordLinkStrategy
class adds userid
UUID and token
parameters to the URL to verify identity. The verification link looks something like this:
http://localhost:8080/magnoliaPublic/sportstation/members/forgotten-password/password-change?userId=80fc309e-4250-4203-b8be-33bbe1e7fbd2&token=e4dca890d75ee54559bab07e75e457c562ec3c3e&
You can test the password retrieval strategy on the public instance of the Travel demo. Sign up for an account and follow the link in the email to reset your password.
The user profile configuration defines the properties in a user's profile. By default, these are username
, password
, email
and fullname
.
Example: default
user profile configuration
Node name | Value |
---|---|
configurations | |
default | |
userProfileConfiguration | |
userProfileClass | info.magnolia.module.publicuserregistration.UserProfile |
Properties:
userProfileConfiguration | required User profile configuration node. |
| required User profile class. UserProfile is a basic profile bean that supports the default |
You can extend UserProfile
and register a custom class in configuration if you need to store more information.
Example: Custom user profile class configuration with additional phoneNumber
property.
Node name | Value |
---|---|
configurations | |
default | |
myConfiguration | |
userProfileConfiguration | |
autopopulatedProperties | |
phoneNumber | phoneNumber |
userProfileClass | info.magnolia.module.publicuserregistration.CustomUserProfile |
extends | ../default |
Properties:
userProfileConfiguration
| required User profile configuration node. |
| required UserProfileConfiguration supports adding custom user profile properties under this node |
| optional Your custom user profile properties, for example |
| required Custom user profile class. |
The default properties are always populated, but you need to write a custom class that extends UserProfile to set the custom properties in the user profile.
Example: Custom user profile class for handling a phone number.
public class CustomUserProfile extends UserProfile { private String phoneNumber = ""; public String getPhoneNumber() { return phoneNumber; } public void setPhoneNumber(String phoneNumber) { this.phoneNumber = phoneNumber; } }
To test the new property:
phoneNumber
.users
, Base path=/public
) .The module includes all necessary components to implement user registration and related tasks on your site.
You can view the PUR components in the Members area of the Travel demo .
Components are configured in /modules/public-user-registration/templates/components
.
Node name |
---|
templates |
components |
login |
registration |
userUpdate |
forgottenPassword |
passwordChange |
enableUser |
With the exception of login
, the components are standard Magnolia forms. They extend the form
component and override the standard form processors with custom form processors provided by the module.
login |
| |
registration |
| |
userUpdate |
| |
forgottenPassword |
| |
passwordChange |
| |
enableUser |
|
For PUR functionality to work, the input fields must be named exactly as specified in the table above.
You can add the PUR components to any template.
Example: Template definition with all PUR components in main
area.
templateScript: /my-module/templates/pages/my-script.ftl renderType: freemarker visible: true title: My template areas: main: availableComponents: login: id: public-user-registration:components/login registration: id: public-user-registration:components/registration userUpdate: id: public-user-registration:components/userUpdate forgottenPassword: id: public-user-registration:components/forgottenPassword passwordChange: id: public-user-registration:components/passwordChange enableUser: id: public-user-registration:components/enableUser
Node name | Value |
---|---|
myTemplate | |
areas | |
main | |
availableComponents | |
login | |
id | public-user-registration:components/login |
registration | |
id | public-user-registration:components/registration |
userUpdate | |
id | public-user-registration:components/userUpdate |
forgottenPassword | |
id | public-user-registration:components/forgottenPassword |
passwordChange | |
id | public-user-registration:components/passwordChange |
enableUser | |
id | public-user-registration:components/enableUser |
templateScript | /my-module/templates/pages/my-script.ftl |
renderType | freemarker |
visible | true |
title | My Template |
The module and its configuration includes classes, resources and components that are deprecated in 2.5.1+ / 5.4.4+. These are maintained for backward compatibility and some are still used in configuration for this purpose.
Mail registration strategy
The default
configuration uses the mail registration strategy, but references a deprecated emailTemplate
and pagePath
. If you are implementing PUR for the first time and want to use or extend the default
configuration, update these properties to:
emailTemplate
|
/public-user-registration/templates/mail/user-confirmation-email.ftl
|
pagePath
| Relative path to the page containing the Enable User Form component.* |
*pages are deprecated in 5.4.4
Password retrieval strategy
The default
configuration uses MailChangePasswordLinkStrategy
password retrieval strategy, but references a deprecated emailTemplate
. If you are implementing PUR for the first time and want to use or extend the default
configuration, update this property to:
emailTemplate | /public-user-registration/templates/mail/password-reset-email.ftl |
Default roles
The default
configuration assigns registered public users the public-user-registration-base
and anonymous
roles. The base role provides permissions to /pages
which are deprecated it 5.4.4. If you are implementing PUR for the first time, follow the pattern used in the Travel demo when setting up permissions.
PUR Components
A new set of components was introduced in 2.5.1.
This table shows the 2.5.1 components and their equivalent earlier components.
| < 2.5.1 (old) |
login | userLogin |
registration | userRegistration |
userUpdate | profileUpdate |
forgottenPassword | passwordReminder |
passwordChange | passwordChange |
enableUser | - |