1.10.2releasedMembers

Define your own frontend membership system using events and XSLT.

Clone URLhttps://github.com/symphonycms/members.git

Add as a submodulegit submodule add https://github.com/symphonycms/members.git extensions/members --recursive

Compatibility

2.x.x2.1.x2.2.x2.3.x2.4.x2.5.x2.6.x2.7.02.7.12.7.22.7.32.7.42.7.52.7.62.7.72.7.82.7.92.7.10
NoNoNo1.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.21.10.2

Readme

Members

Frontend membership extension for Symphony CMS.

Installation and Setup

  1. Upload the 'members' folder to your Symphony 'extensions' folder.

  2. Enable it by selecting the "Members", choose Enable from the with-selected menu, then click Apply.

  3. Create a new Section to hold your Members entries, and add a Member: Password, Member: Role and either a Member: Email or Member: Username field. If you wish to email your members, you can add both.

  4. Go to System > Preferences and select your 'Active Members Section'.

  5. Go to System > Member Roles and setup your Roles as required. There is one default Role, Public that cannot be removed (but can be edited to suit your needs). This role represents an unauthenticated Member.

  6. On the frontend, Members can login using standard forms. Below is an example, where {Member: Username element_name} should be substituted with your field handles, eg. fields[username].

    <form method="post" autocomplete='off'>
        <label>Username
            <input name="fields[{Member: Username element_name}]" type="text" />
        </label>
        <label>Password
            <input name="fields[{Member: Password element_name}]" type="password" />
        </label>
    
        <input name="redirect" type="hidden" value="{$your-redirect-url}" />
        <input name="member-action[login]" type="submit" value="Login" />
    </form>
    

Event information will be returned in the XML similar to the following example:

<events>
    <member-login-info logged-in="yes" id="72" />
</events>

The $member-id and $member-role parameters will be added to the Page Parameters for you to use in your datasources to get information about the logged in member.

Note: All Member information ($member-id and $member-role parameters, member-login-info pseudo event XML) will be added to the page before any real events are executed. So if you change the Member's status via events resp. filters, the new status will not be reflected in these XML nodes. You may work around this rare issue by performing a redirect in your event, e.g. by specifying a redirect location in the corresponding frontend form — all subsequent pages will show the correct Member information, of course.

  1. You can log a Member out using <a href='?member-action=logout'>Logout</a>

Updating to 1.4

When updating to 1.4, there are a couple of changes that you should be aware of. As discussed in #242, when using Role's the default for all new events will be NO_PERMISSIONS. This is different from previous versions where new events were considered to be 'ok' unless otherwise stated.

It may be prudent to check your Member forms as the extension is now throwing additional errors, such as validating email addresses when using the Member Email field, on all Member Events.

Updating to 1.3

When updating from 1.2, you should not have to do anything except re-enable the extension from the Extensions page. This will increase the length of the password fields so that they can updated to the stronger algorithm as member's log in. When you start to use multiple sections, read the section in the README about Multiple Section support.

Fields

This extension provides six additional fields:

  • Member: Username
  • Member: Email
  • Member: Password
  • Member: Role
  • Member: Activation
  • Member: Timezone

Member: Username

The Member: Username field ensures all usernames are unique in the system. You can set a validator to ensure a username follows a particular pattern. Member's can login by providing their username and password (see Member: Password).

Member: Email

The Member: Email field accepts only an email address and ensures that all email's are unique in the system. This field outputs an MD5 hash of the email address in the XML so that it be used as Gravatar hash. Like the Member: Username field, members can login by providing their email address and password (see Member: Password).

Member: Password

The Member: Password field has a couple of additional settings to help improve the security of the member's password. Setting a password Salt can be done only once, and is used to provide some randomness when hashing the member's password. You can also set a minimum length required for a password and then there is three possible options for a minimum password strength, Weak, Good and Strong.

  • Weak: This password is all lowercase, all uppercase, all numbers or all punctuation
  • Good: The password must be a mixture of two of the following: lowercase, uppercase, numbers or punctuation
  • Strong: The password must be a mixture of three or more of the following: lowercase, uppercase, numbers or punctuation

Passwords must be set with two fields, one to capture the password and one to confirm the password. The corresponding field names are:

  • fields[{Member: Password element_name}][password]
  • fields[{Member: Password element_name}][confirm]

The Members: Validate Password filter requires a field with the following name:

  • fields[{Member: Password element_name}][validate]

Events

Filters

  • Members: Validate Password
  • Members: Update Password
  • Members: Login

Member: Role

The Member: Role field allows you to assign members with different Roles to allow them to access pages or execute particular events. The Members extension installs with one default Role that cannot be deleted, Public. This Public Role is the default Role that all members of your website will fall under (ie. all unregistered members). This field allows you to set a default role, which the role that a member will take on when they register.

Filters

  • Members: Lock Role

Member: Activation

The Member: Activation field enforces that all members who register to your site must first activate their account before they are treated as an authenticated member. This field allows you set a code expiry time, which is how long an activation code is valid for until it expires and a Member will have to request a new one (see Members: Regenerate Activation Code event) and an activation role. The activation role is given to a member when they register to your site, but haven't completed activation. Once they complete activation, they will be set to the default role as defined by the Member: Role field.

Events

Filters

  • Members: Lock Activation

Member: Timezone

The Member: Timezone field allows members to have times displayed in their own timezone when on the site. It has one setting, Available Zones which allows you to set up what timezones, grouped by 'Zone', are available for members to pick from.

Events

This extension provides four additional events that can be added to your page:

Go to Blueprints > Components and click on the event name to view documentation for that event.

There are two global events that are available on any page your website:

Members: Login

<form method="post" autocomplete='off'>
    <label>Username
        <input name="fields[{Member: Username element_name}]" type="text" />
    </label>
    <label>Password
        <input name="fields[{Member: Password element_name}]" type="password" />
    </label>

    <input name="redirect" type="hidden" value="{$your-redirect-url}" />
    <input name="member-action[login]" type="submit" value="Login" />
</form>

Members: Logout

<form method="post" autocomplete='off'>
    <input type='hidden' name='redirect' value='{$your-redirect-url}' />
    <input name="member-action[logout]" type="submit" value="Logout" />
</form>

or

<a href='?member-action=logout&redirect={$your-redirect-url}'>Logout</a>

Create a Member

You can create new member records using standard Symphony events on your active members section. The wiki contains information about the response XML to expect from the fields provided by the Members extension.

Multiple Section support

Since Members 1.3, multiple section support is possible allowing you to create complex sites that house different types of Member data. One example of this could be having Customers and Administration sections, each with different field configurations.

For the most part, upgrading your existing Members installation to 1.3 is seamless as the extension will fallback to existing behaviour if only one Members section is detected in your build.

However, once you start to create multiple sections you will need to add a hidden field to your forms to tell Symphony exactly what section you'd like Members to verify this data against:

<input name="members-section-id" type="hidden" value="{$your-section-id}" />

This field will need to be added to your Login form at the very least as it tells Symphony to verify the credentials against the given Section schema (so you cannot have Customers logging into the Administration section etc.)

What's changed

  • A members-section-id parameter is available for logged in users
  • The Member Roles page will now show the member breakdowns per section

Filters

This extension provides five event filters that you can add to your events to make them useful to Members:

  • Members: Lock Activation
  • Members: Lock Role
  • Members: Validate Password
  • Members: Update Password
  • Members: Login

Members: Lock Activation

The Members: Lock Activation filter is to be attached to your own Registration event to force a Member's activated state to be 'no' when a Member is registering for your site. If the Member already exists, using this filter on your event will ensure the Member's activation value cannot be changed. This prevents any DOM hacking to make members activate themselves. If you do not use the Member: Activation field, then you don't this filter on your Registration event.

Members: Lock Role

The Members: Lock Role filter should be used as an additional security measure to ensure that the member cannot DOM hack their own Role. This filter ensures a newly registered member will always be of the Default Role or if updating a Member record, the filter ensures the Role doesn't change from the Member's current role. If you do not use the Member: Role field, you don't need this filter on your Registration event. If you want to elevate a Member between Roles, this can be done in the backend, or don't use this filter. Care will need to be taken that a Member is not able to change their Role to whatever they please.

Members: Validate Password

The Members: Validate Password is a pre-save filter that will check if a posted password is correct for the logged-in Member. If the password is valid the filter will return true and the section event will be executed. Otherwise it will return false, which will terminate the section event before anything is saved.

Members: Update Password

The Members: Update Password filter is useful on Events where the member may update some of their profile information, and updating their password is optional. It essentially tells the extension that if the member hasn't provided their password, yet it's set to required, it's ok, just remember their current password details. Additionally, if a password has been posted, this filter will log the Member in with this new password.

Members: Login

The Members: Login filter is useful if a Member's password has been changed by an event. It will log the Member in with the new (posted) password. If you need the password to be optional, use the Members: Update Password filter instead.

This filter can, for example, be used to directly log a Member in after registration. But since any "magically added" Member information in your page XML is actually added before events are executed, it will not reflect the login (i.e. still tell you that the Member is not logged in). In this case you should enforce a new page request by adding a redirect to your event.

Roles and Permissions

The Members extension comes with a single default Role, Public. This role cannot be deleted, but it can be renamed and modified to suit your requirements. This Role is assumed by any Frontend member who is not authenticated and by default, does not allow users to use any Events. Remember to modify the Public role to open up Events as necessary.

Roles allow you to prevent access to certain pages and/or prevent what users can do with your Events. Read more about Event Permissions on the wiki.

If a member is not allowed to see a particular page, the Members extension will display the page with the 403 type. If you want to have a special page for this case, the type 403-members can also be used.

Email Templates

The Email Template Manager extension can be used to email information specific to the Members extension such as Member Registration, Password Reset and Activation Codes. This extension allows Email Templates to be added as Event Filters to your events.

When using the email address as the member identifier, be sure to encode email addresses with a URL encoding template when emailing password reset confirmation links to allow for characters such as '+'. All bugs relating to this extension should be reported to it, not the Members extension.

Version history

Symphony 2.4.0 to 2.x.x

  * [#309](https://github.com/symphonycms/members/pull/309) Fix Validate Password filter
	

Symphony 2.4.0 to 2.x.x

  * [#307](https://github.com/symphonycms/members/pull/307) Ensure event save works with different admin paths
	

Symphony 2.4.0 to 2.x.x

  * [#304](https://github.com/symphonycms/members/pull/301) Improve event filters (#304)
	    * Fix formatting of code block 0ce3c83
	    * Always show the Members: Login filter 5251968
	    * Add documentation for Members: Login filter 68ef6ff
	    * Add Members: Validate Password (pre-save) filter 972263d
	    * Add documentation for Members: Validate Password 0e376e1
	    * Add MemberEventMessages error codes to all filters 02aac90
	    * Remove needless cleaning of password 3216572
	    * Improve README ec3e30b
	

Symphony 2.4.0 to 2.x.x

  * [#301](https://github.com/symphonycms/members/pull/301) Add MembersLogin delegate, for external log in
	  * [#298](https://github.com/symphonycms/members/pull/298) Fix filter url
	  * [#297](https://github.com/symphonycms/members/pull/297) Replace extract() with proper check
	  * [#299](https://github.com/symphonycms/members/pull/299) Prevent error for still loggued in deleted account
	  * [#300](https://github.com/symphonycms/members/pull/300) Refresh Member object before attempting new login
	  * [#274](https://github.com/symphonycms/members/pull/274) Fix crash if trying to login and no password field exists
	

Symphony 2.4.0 to 2.x.x

  * [#296](https://github.com/symphonycms/members/pull/296) Fix externally defined errors that were not shown.
	

Symphony 2.4.0 to 2.x.x

  * Add driver parameter to some delegates: This allow to get the extension driver easily
	  * Add a new delegate, MembersPreLogin, which can prevent login from external source
	

Symphony 2.4.0 to 2.x.x

  * [#294](https://github.com/symphonycms/members/pull/294) Show a friendlier message on init error
	

Symphony 2.4.0 to 2.x.x

  * [#289](https://github.com/symphonycms/members/pull/289) Escape data before usign them in SQL
	  * [#292](https://github.com/symphonycms/members/pull/292) Remove bottom margin for the password note
	  * [#291](https://github.com/symphonycms/members/pull/291) Restore tags selection
	  * [#293](https://github.com/symphonycms/members/pull/293) Allow the extension to have is own 403 page
	  * [#290](https://github.com/symphonycms/members/pull/290) Prevent XSS vector from section names
	

Symphony 2.4.0 to 2.x.x

  * [#285](https://github.com/symphonycms/members/pull/285) Minor fixes
	  * Pass email field to delegate on login failure
	

Symphony 2.4.0 to 2.x.x

  * [#284](https://github.com/symphonycms/members/issues/284) Bypassing cachelite's cache
	

Symphony 2.4.0 to 2.x.x

  * [#277](https://github.com/symphonycms/members/issues/277) SQL error
	

Symphony 2.4 to 2.6.x

  * [#272](https://github.com/symphonycms/members/issues/272) Role Permissions error
	

Symphony 2.4 to 2.6.x

  * [#267](https://github.com/symphonycms/members/issues/267) Symphony 2.6.x compatibilty
	  * Ensure the Member Email class is always around
	

Symphony 2.4 to 2.5

  * [#254](https://github.com/symphonycms/members/issues/254) Add new delegates, `MembersLoginFailure` and `MembersPasswordResetFailure`.
	  * [#250](https://github.com/symphonycms/members/issues/250) Make better use of `EventMessages` responses to give more accurate error messages for Member Events.
	  * [#246](https://github.com/symphonycms/members/issues/246) Allow events with more than 50 characters to be saved.
	  * [#244](https://github.com/symphonycms/members/issues/244) Ensure `RoleManager` can always be resolved.
	  * [#242](https://github.com/symphonycms/members/issues/242) New events will default to `NO_PERMISSIONS` until explicitly set in each Role.
	  * [#228](https://github.com/symphonycms/members/issues/228) Ensure valid email address before attempting any login logic.
	  * Removed unnecessary SQL queries when checking activation
	  * Update to ensure `Update Password` filter is available
	  * General updates for Symphony 2.4+
	

Symphony 2.3.2 to 2.3.6

  * [#224](https://github.com/symphonycms/members/issues/224) As the Member: Role field is always required, don't show the required setting
	  * [#201](https://github.com/symphonycms/members/issues/201) Use `spl_autoload_register` instead of `__autoload`
	  * [#200](https://github.com/symphonycms/members/issues/200) Implement Cryptography API for more secure passwords
	  * [#193](https://github.com/symphonycms/members/issues/193) When resetting a password, always enforce that the password be required
	  * [#192](https://github.com/symphonycms/members/issues/192) Fix the password recovery process so that it will work if there is no password data for the user
	  * [#175](https://github.com/symphonycms/members/issues/175) Ability to override the default Symphony member
	  * [#173](https://github.com/symphonycms/members/issues/173) Multiple section support
	  * [#165](https://github.com/symphonycms/members/issues/165) Implement `MembersPostRegenerateActivationCode`, `MembersPostActivation`, `MembersPostForgotPassword`, `MembersPostResetPassword` and `InitialiseMember` delegates
	  * [#44](https://github.com/symphonycms/members/issues/44) Add a Login after Registration filter
	  * Support Importable/Exportable field interfaces
	  * Various bug fixes for increased stability and robustness
	

Symphony 2.3 to 2.3.x

  * Update for Symphony 2.3
	  * Lazy load Member fields for better performance
	  * Added Greek translation
	

Symphony 2.2.1 to 2.2.x

  * Fix update script in 1.1
	  * Explicitly set the CHARSET to be UTF8 when creating new tables.
	

Symphony 2.2.1 to 2.2.x

  * Member: Username uniqueness is now done by `handle`, rather than `value`
	  * Member: Activation and Member: Role UI has been updated to better show a Member's role while they are unactivated
	  * Fix sorting and output parameter of the Member: Activation field
	  * The Member: Reset Password event now works correctly with the Member: Email field when no Member: Username field is present
	  * Addition of the Italian localisation
	  * Other minor miscellaneous tweaks and fixes
	

Symphony 2.2.1 to 2.2.x

  * Initial release