Skip to main content

A Django app for multi-token authentication, and some other stuff.

Project description

Authentication

A Django app for multi-token authentication.

Installation

pip install authentication

Usage

Add authentication to your INSTALLED_APPS in your Django settings.

INSTALLED_APPS = [
   'authentication',
]

Custom User Validation

To add custom validation to the login process, follow these steps:

  1. Define the Custom Validation Function:

    Create a custom validation function in a module. This function should accept a user object and perform the necessary validation.

    # authentication/custom_validations.py
    from django.core.exceptions import PermissionDenied
    from django.utils.translation import gettext as _
    
    def custom_user_validation(user):
        if not user.is_active:
            raise PermissionDenied(_("User is not active."), 'inactive_user')
    
  2. Update the Settings:

    In your settings.py file, add the MORE_USER_VALIDATION setting and set it to the path of your custom validation function.

    # cha_auth/settings.py
    MORE_USER_VALIDATION = 'authentication.custom_validations.custom_user_validation'
    

By following these steps, you can add custom validation to the login process without modifying the URL configuration. Users can specify their custom validation function in the MORE_USER_VALIDATION setting, and it will be called during the login process.

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

cha_authentication-0.2.0.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

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

cha_authentication-0.2.0-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file cha_authentication-0.2.0.tar.gz.

File metadata

  • Download URL: cha_authentication-0.2.0.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for cha_authentication-0.2.0.tar.gz
Algorithm Hash digest
SHA256 fa7eda373487279e9643b6767fdba6545b37b1637e98b44a8c021fb1a5430de9
MD5 bf6d4e805f9525de39d7ae39037fe6c7
BLAKE2b-256 5c296f3d2d47c4e35f7a5ca64cdf9716ef9952a3cbe3949ecd106ab5d334c406

See more details on using hashes here.

File details

Details for the file cha_authentication-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cha_authentication-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1f5fe8bc3bf2ca4b9d362c1bdf4d5ae42a424172c8ed94819890d076e69e7e68
MD5 58708dd7954e21c5179e9601d95f01df
BLAKE2b-256 a6c5f53bbc3ac156c994304255057a2c5569c37f232e5e297f3e04521eab53b1

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