Skip to main content

Generic user registration for the Pyramid web framework

Project description

pluserable provides generic user registration for the Pyramid web framework, if your web app uses SQLAlchemy.

It is a pluggable web application that provides user registration, login, logout and change password functionality. pluserable follows a policy of minimal interference, so your app can mostly keep its existing models.

pluserable now requires Python >= 3.4. The last version of pluserable that supported Python 2 was 0.2.0.

The documentation is at http://docs.nando.audio/pluserable/latest/

Minimal integration

  • Create a virtualenv and activate it. Install pyramid and create your Pyramid project.

  • Ensure you have some SQLAlchemy declarative initialization. This is usually created by the Pyramid scaffold.

  • Edit your setup.py to add “pluserable” to the dependencies in the install_requires list.

  • Run python setup.py develop on your project to install all dependencies into your virtualenv.

  • Create models inheriting from pluserable’ abstract models. Find an example in the file pluserable/tests/models.py.

  • In your Pyramid configuration file, create a section called “Kerno utilities” like this:

    [Kerno utilities]
        # Let pluserable know which model classes to use:
        activation class = some.app.models:Activation
        group class = some.app.models:Group
        user class = some.app.models:User
    
        # Give pluserable a SQLAlchemy session factory:
        session factory = some.app.models:get_sqlalchemy_session
  • Above you are also pointing to a session factory. Just write a function that returns a SQLAlchemy session instance, ready for use. Alternatively, it can be a scoped session.

  • You may write a function that returns a configuration for Pyramid routes and views (which is something you probably want to manipulate in code because it won’t change between dev, staging and production environments), and then inform pluserable about it like this:

    registry.settings['pluserable_configurator'] = 'my.package:some_function'
  • Your pluserable_configurator function would look more or less like this:

    from pluserable.settings import get_default_pluserable_settings
    
    def my_pluserable(config):
        """This function is called by pluserable during app startup."""
        adict = get_default_pluserable_settings()
        # Manipulate adict to customize pluserable for your application, then
        return adict
  • Include pluserable into your Pyramid application, just after Pyramid’s Configurator is instantiated:

    config.include('pluserable')

This does almost nothing: it only makes a new config method available. You have to use it next:

config.setup_pluserable(  # Directive that starts pluserable up
    global_settings['__file__'],  # Path to your INI configuration file
)

The above causes pluserable to read certain sections of your INI file – especially the [Kerno utilities] section.

The backend for database access is in a separate class, this way you can substitute the implementation. This is called the “repository” pattern. It is recommended that you use the repository pattern in your app, too. The pluserable repository is instantiated once per request. It is available in the request.repo variable.

  • Configure pluserable.login_redirect and pluserable.logout_redirect (in your .ini configuration file) to set the redirection routes.

  • If you haven’t done so yet, configure an HTTP session factory according to the Sessions chapter of the Pyramid documentation.

  • Create your database and tables. Maybe even an initial user.

  • Be sure to pass an authentication_policy argument in the config = Configurator(...) call. Refer to Pyramid docs for details.

  • By now the login form should appear at /login, but /register shouldn’t.

  • Include the package pyramid_mailer for the validation e-mail and “forgot password” e-mail:

    config.include('pyramid_mailer')
  • The /register form should appear, though ugly. Now you have a choice regarding user activation by email:

    • You may just disable user activation by setting, in your .ini file:

      [pluserable]
          # (other settings, then...)
          require_activation = False
    • Otherwise, configure pyramid_mailer according to its documentation and test the registration page.

  • If you are using pyramid_tm or the ZopeTransactionManager, your minimal integration is done. (The pages are ugly, but working. Keep reading…)

Need to session.commit()?

pluserable does not require pyramid_tm or the ZopeTransactionManager with your session but if you do not use them you do have to take one extra step. We don’t commit transactions for you because that just wouldn’t be nice!

All you have to do is subscribe to the extension events and commit the session yourself. This also gives you the chance to do some extra processing:

from pluserable.events import (
    PasswordResetEvent, NewRegistrationEvent,
    RegistrationActivatedEvent, ProfileUpdatedEvent)

def handle_request(event):
    request = event.request
    session = request.registry.getUtility(IDBSession)
    session.commit()

self.config.add_subscriber(handle_request, PasswordResetEvent)
self.config.add_subscriber(handle_request, NewRegistrationEvent)
self.config.add_subscriber(handle_request, RegistrationActivatedEvent)
self.config.add_subscriber(handle_request, ProfileUpdatedEvent)

Whether or not to have a “username” field

It is important that you analyze the characteristics of your web application and decide whether you need a username field for users to log in with. pluserable provides 2 modes of operation:

  • email + username: The user chooses a username when registering and later she can log in by providing either the username or the email address. Therefore, usernames may NOT contain the @ character. This mode is the default. It is expressed by the configuration setting pluserable.handle = usermail

  • email only: There is no username field and users only provide their email address. You enable this mode by:
    • Making your User model subclass NoUsernameMixin instead of UsernameMixin;

    • Adding this configuration setting: pluserable.handle = email, which will make pluserable default to schemas that contain email fields instead of username fields.

If you make this change and want to keep your data you must deal with the existing (or missing) “username” column yourself.

Changing the forms

If you would like to modify any of the forms, you just need to register the new deform class to be used.

The interfaces you have available to override from pluserable.interfaces are:

  • IPluserableLoginForm

  • IPluserableRegisterForm

  • IPluserableForgotPasswordForm

  • IPluserableResetPasswordForm

  • IPluserableProfileForm

This is how you would do it (MyForm being a custom deform Form class):

config.registry.registerUtility(MyForm, IPluserableLoginForm)

Changing the templates

If you would like to substitute the templates you can use pyramid’s override_asset:

config.override_asset(to_override='pluserable:templates/template.mako',
    override_with='your_package:templates/anothertemplate.mako')

The templates you have available to override are:

  • login.mako

  • register.mako

  • forgot_password.mako

  • reset_password.mako

  • profile.mako

If you would like to override the templates with Jinja2, or any other templating language, just override the view configuration:

config.add_view('pluserable.views.AuthController', attr='login',
    route_name='login', renderer='yourapp:templates/login.jinja2')
config.add_view('pluserable.views.ForgotPasswordController',
    attr='forgot_password', route_name='forgot_password',
    renderer='yourapp:templates/forgot_password.jinja2')
config.add_view('pluserable.views.ForgotPasswordController',
    attr='reset_password', route_name='reset_password',
    renderer='yourapp:templates/reset_password.jinja2')
config.add_view('pluserable.views.RegisterController', attr='register',
    route_name='register', renderer='yourapp:templates/register.jinja2')
config.add_view('pluserable.views.ProfileController', attr='profile',
    route_name='profile', renderer='yourapp:templates/profile.jinja2')

Changing strings

Take a look at this class. This is where we store all the strings in pluserable. If you’d like to change one or two messages, simply create a subclass and configure it:

[Kerno utilities]
    # (...bla bla bla...)

    # Determining the UI strings is as easy as pointing to a class:
    string class = pluserable.strings:UIStringsBase

Here is an example implementation of a strings class:

class AuthStrings(UIStringsBase):
    """Our alterations to the pluserable UI text."""

    login_done = None   # Do not flash a message after the user logs in
    logout_done = None  # Do not flash a message after the user logs out

Changing the primary key column name

If you wish to override the primary key attribute name, you can do so by creating a new mixin class:

class NullPkMixin(Base):
    abstract = True
    _idAttribute = 'pk'

    @declared_attr
    def pk(self):
        return Base.pk

    @declared_attr
    def id(self):
        return None

class User(NullPkMixin, UserMixin):
    pass

Developing your application

Every request object will have a “user” variable containing the User instance of the person who logged in. This is reified – meaning the query to retrieve the user data only happens once per request.

So do use request.user in your code.

pluserable development

See https://github.com/nandoflorestan/pluserable

If you would like to help make any changes to pluserable, you can run its unit tests with py.test:

py.test

To check test coverage:

py.test --cov-report term-missing --cov pluserable

The tests can also be run in parallel:

py.test -n4

We are going to use this build server: http://travis-ci.org/#!/nandoflorestan/pluserable

Origin of the project

pluserable is a fork of horus, a project started by John Anderson: https://github.com/eventray/horus

The differences are:

  • pluserable lets you log in with an email (or a username); horus only lets you log in with a username.

  • pluserable does not have horus’ admin views – they were rarely used.

  • pluserable allows you to pick a subset of the views for your project; horus always registers all of the routes and views.

  • horus had a “/profile/{user_id}/edit” URL; but since a user can only edit her OWN email and password, we have a simpler URL: “/edit_profile”.

  • pluserable does not include an outdated version of bootstrap.

  • pluserable does not have a scaffolding script.

  • pluserable no longer supports Python 2.

  • pluserable uses the bag library for a maintained version of FlashMessage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pluserable-0.5.0.tar.gz (36.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pluserable-0.5.0-py2.py3-none-any.whl (51.6 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pluserable-0.5.0.tar.gz.

File metadata

  • Download URL: pluserable-0.5.0.tar.gz
  • Upload date:
  • Size: 36.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pluserable-0.5.0.tar.gz
Algorithm Hash digest
SHA256 66287fe2aac8840babdab3e7218f1ab8a162233a820c947073045d84466bb5cb
MD5 2e047ce9077c6dee8184e810650c6aed
BLAKE2b-256 71307ce98524f745bf38cb90db8ce2293b82432ae6b55ae8af7004d3b7ec7bcd

See more details on using hashes here.

File details

Details for the file pluserable-0.5.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pluserable-0.5.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 46b812ea751f8798100969f81fcce500d9599d7d81202decd03d132aef15b706
MD5 0ac357ac5e6b829361ce9b63e057f5c7
BLAKE2b-256 bd4ba54eefc2d04bbb5337ac8a4ecc0cbed94092be853da15596bb27da08ba54

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page