Skip to main content

Authentication backend for Django that works with legacy Drupal 7 accounts.

Project description

This package provides an authentication backend that can be used to facilitate migrating users from a Drupal-based website into a Django-based web application.

Quick start

Install django_drupal_auth_backend:

$ pip install django_drupal_auth_backend

In your settings module you will need to add the new hasher to :

PASSWORD_HASHERS = (
    'django.contrib.auth.hashers.PBKDF2PasswordHasher',
    'django.contrib.auth.hashers.PBKDF2SHA1PasswordHasher',
    'django.contrib.auth.hashers.BCryptPasswordHasher',
    'django.contrib.auth.hashers.SHA1PasswordHasher',
    'django.contrib.auth.hashers.MD5PasswordHasher',
    'django.contrib.auth.hashers.CryptPasswordHasher',
    'django_drupal_auth_backend.hashers.DrupalPasswordHasher',
)

Migrating users

You will need to create a user entry for each user of the old system. While this will vary from application to application (depending on whether you override the default user model provided by Django), the basic step is to copy your user table into Django’s user table. If you are using Postgres, you can copy the users in with something like this:

COPY INTO auth_user (username, password, email, is_active, is_staff) FROM STDIN;
user1   drupal_sha512$FYEWxwlWtUUj8uB5QN2K0X9lNrnRl/hLpN3Qp8GK7v8emyc9eRsf  user1@example.com   t   f
user2   drupal_sha512$CsaltsaltA112iY375iFdNhp.gYEWxwlWtXdhjl.8hY7BufRTJ1u  user2@example.com   t   f
\.

The most important thing to note with migrated accounts is that the hashed password being migrated needs to be modified slightly. Drupal passwords are of the form:

$S$CsaltsaltA112iY375iFdNhp.gYEWxwlWtXdhjl.8hY7BufRTJ1u

… whereas the migrated passwords need to be of the form:

drupal_sha512$CsaltsaltA112iY375iFdNhp.gYEWxwlWtXdhjl.8hY7BufRTJ1u

The important distinction is that the $S$ at the start of the hash needs to be converted to drupal_sha512$ for the Django authentication backend subsystem to be able to recognize it and assign it to the DrupalPasswordHasher. Note that the example table copy command above is using passwords of the right form.

Full documentation

(needs additional documentation)

Contributing

Contributions are welcome.

Licensing

This software is licensed under the GNU 3.0 license to comply with the Drupal license requirements for derivative works. Parts of this code are directly converted to Python from code in the Drupal project.

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

django-drupal-auth-backend-1.0.3.tar.gz (18.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-drupal-auth-backend-1.0.3.tar.gz.

File metadata

File hashes

Hashes for django-drupal-auth-backend-1.0.3.tar.gz
Algorithm Hash digest
SHA256 0860098883cd0f75d081a341e9aec8adaf55c41f32b6f993a49cf607c80fd456
MD5 c946700bacd677538215b19eb2158b16
BLAKE2b-256 42909e73b11650829bf262c4d69e68905600dea4ca7114d40294ed7cf48cb8d6

See more details on using hashes here.

File details

Details for the file django_drupal_auth_backend-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_drupal_auth_backend-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d602b083ec10267af23ba0548b0d8ff0c1e90f45680d86d90ecd60ead2b36183
MD5 eafbb525939f85bea76a9d4cb60e0423
BLAKE2b-256 774a034a1ba5522d47d22a947da2b4f4eb651e4957876050b0a5a565e223c770

See more details on using hashes here.

Supported by

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