User self-registration
Project description
User self-registration
This package provides functionality to implement user self-registration for applications.
The general workflow requires that every user provides at least his email address but additional data may be provided, too. After a user registered, an email is send out asking him to confirm his identity by clicking a link that is embedded in the email. Once a registration is confirmed, the temporarily stored registration data is deleted.
Applications can customize the registration behaviour by subscribing to events for registration and confirmation and providing application-specific views and adapters for registration and email creation.
There is a demo application included in this package/buildout that shows how to use the basic views available to quickly create registration and confirmation views and customized emails for your application. Both the views and the email generation provide a good degree of flexibility so they can be re-used directly, but you can also provide your own.
User self-registration
Registering a user
Registrations are managed by the registrations utility:
>>> from gocept.registration.registrations import Registrations >>> registrations = Registrations()
We can now register a user by passing his email address and some additional data:
>>> peter = registrations.register('peter@example.com', {'name': u'Peter'}) >>> peter <gocept.registration.registrations.Registration object at 0x...>
All registrations have a hash that anonymous identifies them, the email and the data attached:
>>> peter.hash '<SHA-HASH>' >>> peter.email 'peter@example.com' >>> peter.data {'name': u'Peter'}
Peter’s registration is contained in the utility identified by the hash:
>>> registrations[peter.hash] <gocept.registration.registrations.Registration object at 0x...>
Peter can now confirm his registration using the hash that was given to him:
>>> registrations.confirm(peter.hash)
Now that he confirmed his registration, it isn’t stored in the utility anymore:
>>> registrations[peter.hash] Traceback (most recent call last): KeyError: '<SHA-HASH>'
Application hooks
There are two hooks that applications can tap into for customizing the registration process:
the ObjectAddedEvent for the registration object, and
the RegistrationConfirmedEvent when the user confirms his registration
Let’s register a subscriber for both events to demonstrate where each is called:
>>> def registered(event): ... print event, event.object >>> import zope.component >>> from zope.app.container.interfaces import IObjectAddedEvent >>> zope.component.provideHandler(registered, (IObjectAddedEvent,))>>> chuck = registrations.register('chuck@example.com', {'name': u'LeChuck'}) <zope.app.container.contained.ObjectAddedEvent object at 0x...> <gocept.registration.registrations.Registration object at 0x...>>>> def confirmed(event): ... print event, event.registration >>> from gocept.registration.interfaces import IRegistrationConfirmed >>> zope.component.provideHandler(confirmed, (IRegistrationConfirmed,))>>> registrations.confirm(chuck.hash) <gocept.registration.interfaces.RegistrationConfirmedEvent object at 0x...> <gocept.registration.registrations.Registration object at 0x...>
Let’s clean those registrations up again:
>>> from zope.app.testing import placelesssetup >>> placelesssetup.tearDown()
Confirmation emails
Sending out registration emails is divided into two parts: creating the email itself, and sending it.
Creating confirmation mails
To provide some central configuration, registrations can be adapted to IRegistrationEmailConfiguration:
>>> from gocept.registration.interfaces import IEmailConfiguration >>> from gocept.registration.interfaces import IRegistration >>> class TestConfig(object): ... zope.interface.implements(IEmailConfiguration) ... addr_from = "Ad Ministrator <admin@example.com>" ... confirmation_url = "http://example.com/confirm?hash=%s" ... confirmation_template = """From: %(from)s ... To: %(to)s ... Subject: Please confirm your registration ... ... We received your registration. To activate it, please follow this confirmation ... ... link: ... ... %(link)s""" ... def __init__(self, registration): ... pass >>> zope.component.provideAdapter(TestConfig, adapts=(IRegistration,))
The confirmation email is created by adapting the registration object to the IRegistrationEmail interface. We provide a simple implementation to start from.
>>> from gocept.registration.email import ConfirmationEmail >>> mail = ConfirmationEmail(chuck) >>> print mail.message From: Ad Ministrator <admin@example.com> To: chuck@example.com Subject: Please confirm your registration <BLANKLINE> We received your registration. To activate it, please follow this confirmation link: <BLANKLINE> http://example.com/confirm?hash=<SHA-HASH>
Sending confirmation mails
We provide a standard event handler that will send out an email for the registration:
>>> from gocept.registration.email import send_registration_mail >>> zope.component.provideAdapter(ConfirmationEmail, (IRegistration,)) >>> zope.component.provideHandler(send_registration_mail, (IRegistration, IObjectAddedEvent,)) >>> from zope.component.event import objectEventNotify >>> zope.component.provideHandler(objectEventNotify, (IObjectAddedEvent,)) >>> from gocept.registration.tests import DummyMailer >>> zope.component.provideUtility(DummyMailer()) >>> janine = registrations.register('janine@example.com') (Ad Ministrator <admin@example.com> -> ['janine@example.com']) From: Ad Ministrator <admin@example.com> To: janine@example.com Subject: Please confirm your registration <BLANKLINE> We received your registration. To activate it, please follow this confirmation <BLANKLINE> link: <BLANKLINE> http://example.com/confirm?hash=<SHA-HASH>
Changes
0.1.0 (unreleased)
Initial release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for gocept.registration-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc8b034727faf043679f5fefec9732c9072168f24b13350c76439a003298dd3b |
|
MD5 | 60417ba25b1b307f8fff4612572585b8 |
|
BLAKE2b-256 | 7b99e2de639f3fa4c32ead2d7dcfacda75f5f42353c4fb53900940d692aa4fe7 |